sshfs 远程挂载

原创
2020/11/18 16:03
阅读数 430

sshfs 远程挂载

好处

  • 命令行
  • 全平台支持
  • 挂载远程文件系统
  • 永久挂载远程文件系统

切记

家目录,根目录,/Volumes, 下是禁止挂载的, 否则即使挂载上了也有一堆问题.

可以直接在/var或者/opt下新建目录做挂载即可

如果想知道为啥不能挂载, 挂载时加-v命令即可

常用命令

# 将远程目录挂载到本地
sshfs -C -v  -o reconnect -o sync_readdir -o no_readahead -o sshfs_sync -o cache=no liuhao@192.168.1.111:/remotePath/ /opt/mnt/log
sshfs -C -v -o  reconnect liuhao@192.168.1.111:/remotePath/ /opt/mnt/log/

# 卸载
umount /opt/mnt/log/

展开阅读全文
加载中
点击引领话题📣 发布并加入讨论🔥
0 评论
0 收藏
0
分享
返回顶部
顶部