你先要在192.168.1.100上開啟NFS服務並編輯/etc/exports文件: chkconfig --level 35 nfs on service nfs start vi /etc/exports,加入: /tmp 192.168.1.200(rw,sync,no_root_squas ...
你先要在192.168.1.100上開啟NFS服務並編輯/etc/exports文件: chkconfig --level 35 nfs on service nfs start vi /etc/exports,加入: /tmp 192.168.1.200(rw,sync,no_root_squash) 然後,在192.168.1.200(如果你現在登錄在192.168.1.100,當然要ssh登錄到192.168.1.200,並su成root)運行: mkdir /tmp chmod 777 -R /tmp mount 192.168.1.100:/tmp /tmp 就可以了。 把mount這行加入到/etc/rc.local,開機就會自動掛載了。