Hi gang!
Having discovered that setting up an NFS server inside a jail is quite the hassle I quickly decided against pursuing this (this is work related, thus I need to cut my time a bit short) and instead rely on Samba (smbfs) to provide filesystem access across the network. Ran into a little hiccup here as well (nmbd being initially unable to utilize the broadcast address) but right now all is solved and I can easily access my jail from another server using smbclient.
So far, so good.
Now I'm building smbfs.ko and initially noticed that it didn't got loaded during boot.
For the record; I did remember to add this to /boot/loader.conf:
A quick study, and my first steps inside the loader prompt, learned me that it required a support module called libiconv.ko. So I rebuild the kernel, now including this module, and tried again. Now it turned out to require libmchain.ko as well.
I'm still at it, but in the mean time I also wonder how I could be able to determine these dependencies up front?
Edit: null edit
Having discovered that setting up an NFS server inside a jail is quite the hassle I quickly decided against pursuing this (this is work related, thus I need to cut my time a bit short) and instead rely on Samba (smbfs) to provide filesystem access across the network. Ran into a little hiccup here as well (nmbd being initially unable to utilize the broadcast address) but right now all is solved and I can easily access my jail from another server using smbclient.
So far, so good.
Now I'm building smbfs.ko and initially noticed that it didn't got loaded during boot.
For the record; I did remember to add this to /boot/loader.conf:
Code:
smbfs_load="YES"
A quick study, and my first steps inside the loader prompt, learned me that it required a support module called libiconv.ko. So I rebuild the kernel, now including this module, and tried again. Now it turned out to require libmchain.ko as well.
I'm still at it, but in the mean time I also wonder how I could be able to determine these dependencies up front?
Edit: null edit