linux nfs共享文件
时间:2016-06-09 17:52 来源:linux.it.net.cn 作者:IT
linux文件共享可以有多种方式:samba,nfs,ftp等等
nfs在linux之间效率高些:
function nfs(){
share_folder="/data1 192.168.0.239(rw,sync,no_root_squash)"
yum install nfs-utils rpcbind
echo $share_folder >> /etc/exports
exportfs -rv
showmount -e 127.0.0.1
# 客户端使用
# mount -t nfs 192.168.122.31:/data1 /data1
}
(责任编辑:IT)
linux文件共享可以有多种方式:samba,nfs,ftp等等 nfs在linux之间效率高些: function nfs(){ share_folder="/data1 192.168.0.239(rw,sync,no_root_squash)" yum install nfs-utils rpcbind echo $share_folder >> /etc/exports exportfs -rv showmount -e 127.0.0.1 # 客户端使用 # mount -t nfs 192.168.122.31:/data1 /data1 } |