确定远程服务器开启sshfs,
在环境变量(.bashrc)中加入以下行
alias mountgsi="sshfs username@serverip:/pathto/mountfolder/ -C -o nonempty,reconnect,auto_cache,follow_symlinks"
alias unmountgsi="fusermount -u /home/sheng/GSIfolder/"
其中:
“username@serverip:/pathto/mountfolder/”
换成自己的“用户名”,"服务器IP地址"以及需要映射的文件夹目录。
运行
mountgsi即加载映射
unmountgsi即取消加载映射