linux卸载Nfs文件系统

以只读的方式挂载

mount -t nfs  -o ro,bg,soft,nolock 192.168.1.100:/tmp /nfs/tmp

以写的方式挂载

mount -t nfs  -o rw,bg,soft,nolock 192.168.1.100:/tmp /nfs/tmp

卸载

umount /nfs/tmp


版权声明:本文为ouzili原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。