Unable to mount (linprocfs)

D

dns

Guest
Linux v.(linux_base-f10-10_4)

/boot/loader.conf
Code:
linux_load="YES"
Linux loaded = YES (Below)
Code:
Id Refs Address            Size     Name
 1    1 0xffffffff81424000 45090    linux.ko

# cat /etc/fstab
Code:
linproc        /compat/linux/proc linprocfs rw 0       0
Can't boot OS with above line in fstab.

# mount -t linprocfs linproc /compat/linux/proc
Code:
mount: linproc : Operation not supported by device
 
I'm using FreeBSD 9 and this module is not loaded. How can I load this module? In later versions of FreeBSD, I mount linprocfs (/compat/linux/proc) without the linprocfs module. Only install linux emulator and mount linproc.
 
Well here, when I mount /compat/linux/proc, it loads the kernel module automatically. Try running kldload linprocfs and see if you get any errors.

Adam
 
Code:
kldload linprocfs
I don't know since when one needs that module, but I started using FreeBSD when 8.0-RELEASE was released and I had to load it.
 
Yes it's same reason.
# kldload linprocfs
Code:
kldload: can't load linprocfs: Operation not permitted
Module exists in the modules folder.
 
Back
Top