Linux挂载NFS共享目录
在linux上挂载NFS目录
·
安装nfsclient
#ubantu、uos、kylin等 U系
sudo apt-get update
sudo apt-get install nfs-common
#centOS等 R系
sudo yum install nfs-utils
1.查看nfs server上共享的目录:showmount -e nfs服务ip
例:如下,有4个目录可供挂载。
[root@localhost common]# showmount -e 192.168.1.100
Export list for 192.168.1.100:
/nfs/test/files *
/nfs/test/common *
/nfs/test/tools *
/nfs/test/daily *
[root@localhost common]#
2.挂载nfs目录到本地
例如:把nfs服务器上的“/nfs/test/common”挂载到本地 “/mnt”下(本地目录可自定义:如/home/uos/common,但需要先创建奥)
#1
sudo mount -t nfs 192.168.1.100:/nfs/test/common /mnt
#2
#本地目录需要先创建奥
#sudo mount -t nfs 192.168.1.100:/nfs/test/common /home/uos/common
[root@localhost ~]# sudo mount -t nfs 192.168.1.100:/nfs/test/common /mnt
[root@localhost ~]# cd /mnt/
[root@localhost mnt]# ll
total 328
drwxr-xr-x 2 nobody nobody 4096 Sep 29 2021 用户手册
-rwxr-xr-x 1 nobody nobody 268 Dec 17 09:17 check_uos_zwww.sh
-rw-r--r-- 1 nobody nobody 506 Dec 17 09:16 mkdir2.py
-rw-r--r-- 1 nobody nobody 1073 Dec 17 09:17 mkdir.py
drwxr-xr-x 8 nobody nobody 4096 Jan 29 17:25 shell
-rwxr-xr-x 1 nobody nobody 82 Sep 22 2021 test.sh
drwxr-xr-x 8 nobody nobody 4096 Mar 17 15:58 临时存储_gc
[root@localhost mnt]#
如果带图形化显示,则可在此处看到被挂载目录(如,UOS系统):
3.卸载
umount 本地挂载目录
umount /mnt
注意,不能在本地挂载目录内卸载,否则卸不掉
更多推荐
已为社区贡献1条内容
所有评论(0)