NFS Server

install:

'sudo apt-get install nfs-kernel-server'

setup:

        add '/home/duanbb/nfs *(rw,no_root_squash,insecure,sync)' to /etc/exports, ('/home/duanbb/nfs' is your nfs share directory)
        sudo /etc/init.d/nfs-kernel-server restart


client:

      mount -t nfs -o nolock 192.168.1.100:/home/duanbb/nfs /nfs

你可能感兴趣的:(NFS Server)