Linux之间nfs挂载实现-文件共享
2018-07-17 本文已影响0人
花间提壶机智一比
服务器端
apt-get install nfs*
vi /etc/exports
#
#
#/home/god/sharedoc 10.0.1.*(rw,sync,no_root_squash,no_subtree_check)
vi /etc/idmapd.conf
[General]
Verbosity = 0
Pipefs-Directory = /run/rpc_pipefs
# set your own domain here, if id differs from FQDN minus hostname
# Domain = localdomain
[Mapping]
#Nobody-User = nobody
#Nobody-Group = nogroup
Nobody-User = nfsnobody
Nobody-Group = nfsnobody
serviec nfs-server restart
serviec nfs-server status
service portmap restart
service portmap status
客户端
apt-get install nfs*
sudo mount -v -t nfs 10.0.1.199:/home/god/sharedoc /home/sunsj/sharedoct1
尊重原创,转载请注明出处:https://www.jianshu.com/p/396c85c41f06