ubuntu16.04中卸載nfs的方法:1、打開ubuntu16.04終端;2、輸入“umount /mnt/nfs/”命令卸載ubuntu16.04系統中nfs掛載文件夾即可。
具體操作步驟:
1、在ubuntu16.04系統桌面中使用快捷鍵【Ctrl+Alt+T】打開終端命令行模式。
2、在ubuntu16.04終端命令行中輸入以下命令卸載nfs掛載文件夾即可。
umount /mnt/nfs/
相關操作命令:
mount -t nfs -o ro,bg,soft,nolock 192.168.1.100:/tmp /nfs/tmp #以只讀的方式掛載nfs
mount -t nfs -o rw,bg,soft,nolock 192.168.1.100:/tmp /nfs/tmp #以寫的方式掛載nfs