aptitudeでsshfsパッケージをインストール。
# aptitude install sshfs
マウントポイントを作る
$ mkdir -p /mnt/hoge
sshfsでマウントする
$ sshfs hoge@example.com:/home/hoge/ /mnt/hoge Enter passphrase for key '********/.ssh/id_rsa':
このままではsambaでは参照できないので、アンマウント。
$ fusermount -u /mnt/hoge
rootで/etc/fuse.confを編集。allow_rootオプションを使うために必要な設定を書き込む。
# echo user_allow_other >> /etc/fuse.conf
再度一般ユーザでマウント。ただしallow_rootオプションを使う。
$ sshfs -o allow_root hoge@example.com:/home/hoge/ /mnt/hoge Enter passphrase for key '********/.ssh/id_rsa':
これでsamba経由でsshfsの内容を参照できる。