回答:
HomeBrewを使用してfuse4xとsshfsをインストールする
インストールするコマンドは次のとおりです。
brew install sshfs
それを実行すると、fuse4xカーネル拡張機能をインストールするために実行する必要がある他の2つのコマンドが表示されます。それらを実行します。
次に、sshファイルシステムをマウントします
mkdir ~/mymountdir
sshfs username@hostname:/home/thedir ~/mymountdir
パスワードの入力を求められます。
私は試したことはありませんが、その価値のman
ために、Unix mount
コマンドのページにはリモートシステムに接続できることがリストされています。
The mount command calls the mount(2) system call to prepare and graft a
special device or the remote node (rhost:path) on to the file system tree
at the point node. If either special or node are not provided, the
appropriate information is obtained via the getfsent(3) library routines.