服務器_sshfs的安裝、掛載、取消掛載
阿新 • • 發佈:2018-08-19
訪問拒絕 warning ide ati ron 可能 9.1 key 安裝
系統:
mac
原因:從阿裏雲領了一個月的免費服務器,想要在本地遠程連接,可以使用ssh root@ip的方法,但上傳麻煩,網上查到這種方法 -> sshfs 可以讓我們在本地掛載服務器的文件夾, 從而可以使用本地的IDE工具編輯, 非常方便
安裝:
1、已經裝了homebrew,
2、安裝sshf的依賴fuse
brew install Caskroom/cask/osxfuse
問題:
1、Warning: Bottle installation failed: building from source.被墻,換brew的源(自行百度)
掛載:
sshfs root@ip:/遠程文件夾 /本地文件夾 # ip:/ 之間無空格 遠程與本地文件夾間有空格
取消掛載:
sudo diskutil umount force /Users/***/Sites/PaChong/aliyun/
參考:
https://blog.csdn.net/lwplwf/article/details/79097565
https://stackoverflow.com/questions/14057830/unmount-the-directory-which-is-mounted-by-sshfs-in-mac#
自動掛載:ssh key
需要使用iterm2作為自動掛載終端,再編寫腳本執行,其他參考下方的鏈接
唯一與原文不同的地方,就是註意腳本文件的權限,如果訪問拒絕,可能是權限不夠,使用chmod 777 file可更改為最高權限 ,
參考:https://blog.csdn.net/fangxiaoji/article/details/50710220
服務器_sshfs的安裝、掛載、取消掛載