sshfs命令可以将远程文件系统挂载到本地文件系统,使得远程文件可以像本地文件一样访问。
[root@web ~]# yum install -y fuse-sshfs # ubuntu安装:apt install sshfs # 将远程主机的/mnt目录挂载到本地的/mnt目录 [root@web ~]# sshfs root@192.168.12.220:/mnt /mnt 提示输入密码 [root@web ~]# df -h| grep mnt root@192.168.12.220:/mnt 49G 2.1G 47G 5% /mnt # 卸载 [root@web ~]# fusermount -u /mnt/
原创文章,转载请注明。本文链接地址: https://www.rootop.org/pages/5471.html