cannot set up thread-local storage

Hi,

im trying to use linux emulation in freebsd, i installed linux_base-fc6, (before im getting an elf error). Now im stucked on this error.

cannot set up thread-local storage: set_thread_area failed when setting up thread-local storage


thanks,
Rey
 
I use fc9 but here is what did to get it working;

Code:
$echo 'linux_enable="YES"' >> /etc/rc.conf
$echo 'compat.linux.osrelease=2.6.16' >> /etc/sysctl.conf
$sysctl compat.linux.osrelease=2.6.16
$echo 'OVERRIDE_LINUX_BASE_PORT=f9' >> /etc/make.conf
$echo 'OVERRIDE_LINUX_NONBASE_PORTS=f8' >> /etc/make.conf
$echo 'linproc /usr/compat/linux/proc linprocfs rw 0 0' >> /etc/fstab
$mkdir -p /usr/compat/linux/proc
$mount /usr/compat/linux/proc
$/etc/rc.d/abi start
$/etc/rc.d/sysctl start
$cd `whereis -sq linux_base-f9` && make install clean

Be sure to uninstall f6 if you run into issues with the install of f9
 
Back
Top