| https:///weradocs/Linux_NFS.shtml |
/home/wera/data 192.168.0.1(rw) /home/wera/vxworks 192.168.0.1(rw) /home/wera/etc 192.168.0.1(rw) /home/wera/weralogs 192.168.0.1(rw) |
In /etc/sysconfig/nfs edit USE_KERNEL_NFSD_NUMBER from 4 to 8:
# the kernel nfs-server supports multiple server threads # USE_KERNEL_NFSD_NUMBER="8" |
The NFS server can be started from the Run_level Editor
(SuSE 8.1 Professional).
Activate NFS for Run_levels 2,3,5
You should not use Reiser FS for the NFS monted directories, as a
significant increase in data transfer times
from the CL7 to the Linux host
will be observed (a factor greater than 10!).
The extended file system XFS is a good choice.
To initialize the data disk(s) with XFS, log in as root and enter the following commands:
$ umount /data |
$ mkfs -t xfs -l size=32768b -f /dev/sdb1 |
$ mount -t xfs -o logbufs=8,logbsize=32768 /dev/sdb1 /data |
| BACK |