sshfs远程访问服务器文件系统
安装
sudo dnf install sshfs挂载
$ sshfs [user@]host:[dir] mountpoint [options]sshfs admin@192.168.1.12:/home/share-data /home/share-data -Cfusermount -u /home/huatai/Documents/devstack/share-datasync
sync
sync
ps aux | grep "sshfs admin@192.168.1.12:/home/share-data /home/share-data -C" | awk '{print $2}' | xargs kill异常错误排查
能够保存文件,但是git时提示fatal: could not set 'core.filemode' to 'true'
fatal: could not set 'core.filemode' to 'true'sshfs挂载时报错Transport endpoint is not connected
Transport endpoint is not connected参考
Last updated