当前位置: 技术问答>linux和unix
linux nfs mount
来源: 互联网 发布时间:2017-04-14
本文导语: [root@localhost 桌面]# showmount -a All mount points on localhost.localdomain: 192.168.1.116:/tmp/nfs [root@localhost 桌面]# showmount -e Export list for localhost.localdomain: /tmp/nfs * [root@localhost 桌面]# 192.168.1.116为我目标板的ip地址,192.168.1.1...
[root@localhost 桌面]# showmount -a
All mount points on localhost.localdomain:
192.168.1.116:/tmp/nfs
[root@localhost 桌面]# showmount -e
Export list for localhost.localdomain:
/tmp/nfs *
[root@localhost 桌面]#
192.168.1.116为我目标板的ip地址,192.168.1.116:/tmp/nfs为我目标板上的挂在点,还是 我主机的挂在点,我的主机的挂在点也是/tmp/nfs请解释一下192.168.1.116:/tmp/nfs/的具体意思,以及的目标板上的挂在的具体位置
All mount points on localhost.localdomain:
192.168.1.116:/tmp/nfs
[root@localhost 桌面]# showmount -e
Export list for localhost.localdomain:
/tmp/nfs *
[root@localhost 桌面]#
192.168.1.116为我目标板的ip地址,192.168.1.116:/tmp/nfs为我目标板上的挂在点,还是 我主机的挂在点,我的主机的挂在点也是/tmp/nfs请解释一下192.168.1.116:/tmp/nfs/的具体意思,以及的目标板上的挂在的具体位置
|
把192.168.1.116服务其上的/tmp/nfs目录挂载到你本地目录/tmp/nfs上
mount 192.168.1.116:/tmp/nfs /tmp/nfs
mount 192.168.1.116:/tmp/nfs /tmp/nfs
|
如果说你116的ip是你的目标板,那么就是说你在你的目标板上搭建了一个NFS服务器。