Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- NFS Server Configuration (Exporting)
- $ sudo apt-get install nfs-kernel-server nfs-common portmap
- $ sudo gedit /etc/exports
- /export *(rw,sync,no_subtree_check)
- $ sudo /etc/init.d/nfs-kernel-server start
- NFS Client Configuration (Mounting)
- $ sudo apt-get install nfs-common portmap
- $ sudo gedit /etc/fstab
- 192.168.1.1:/export /export nfs defaults 0 0
- $ sudo mount 192.168.1.1:/export /export/
Advertisement
Add Comment
Please, Sign In to add comment