Article
article
Reads:
4440
Score:
I often need to copy things from my NetWare servers to my Linux machines. I have found it useful to NFS mount an NSS volume on a NetWare machine onto one of my Linux Servers or Desktops.
- Prepare the NetWare server by exporting the NSS volume or volumes on the NetWare server.
Edit the SYS:ETC/EXPORTS file by adding the following:/volumeName/ -nwmode -rw -root
where /volumeName/ is the name of the NetWare volume.
Example: /VOL1/ -nwmode -rw -root
- Edit the NFSSTART.NCF file
Change the line load xnfs to load xnfs -nodnscheck. - Restart NFS.
At the file server console type nfsstop.ncf.
Then type nfsstart.ncf - Make a directory on your Linux Server to mount the NetWare volume on.
Example: md /mnt/NetWareVol1/
- Mount the NetWare volume onto your SLES server or SLED client.
From a terminal type:mount -t nfs NetWareServerIPAddress:/VOLUMENAME/ /pathToMountTo/
Example: mount -t nfs 151.155.194.44:/VOL1/ /mnt/NetWareVol1/





0