为了方便在不同的电脑能同步文件,所以我一直在寻找服务器与本地同步的软件,国内的云盘同步服务倒了一家又一家,总感觉不靠谱
sshfs就解决了这个问题,他可以使得自己服务器的目录映射到本地,修改文件能够同步更新到服务器,很是方便。
##LINUX:
在Ubuntu中只需要:
sudo apt install sshfs
挂载
sshfs -o IdentityFile=/home/temp.key -o follow_symlinks -o cache=yes -C [user]@[ipaddress]:/home/temp/ /home/temp/ -o allow_other
其中:
-o IdentityFile= 参数是指定ssh密钥文件
-o allow_other 参数是允许非root用户访问挂载目录
解除挂载
sudo fusermount -u /home/temp/
##Windows:
Windows端,安装WinSshFs即可:
https://github.com/Foreveryone-cz/win-sshfs/releases
要注意的是,WinSshFs依赖Dokan,需要另外安装:
https://github.com/dokan-dev/dokany/releases
{% asset_img screenshot.png %}