sshfsを使ってリモートLinuxディレクトリをローカルノートブックにマウントしたいと思います。私はautofsを使ってこれを行います。 in/etc/autofs/
だから私はauto.ssh
ファイルにいます(私はアーチスウィキ使用する必要があるオプションの指示):
cluster -fstype=fuse,rw,allow_other,IdentityFile=/home/mia/.ssh/id_rsa :sshfs\#mia@host\:
auto.master
ファイルに次の行を追加しました。
/home/mia/remote /etc/autofs/auto.ssh uid=1000,gid=1000,--ghost,--timeout=60
フォルダが正常にマウントされ、日付が正しいです。
drwxr-xr-x 4 root root 0 Jan 5 19:51 remote
ただし、リモートフォルダに新しいファイルを作成すると、そのファイルの日付はEpoch(01-01-1970)です。
$ cd remote/cluster
$ touch test
$ ls -l test
-rw-r--r-- 1 mia mia 0 Jan 1 1970 test
mount、mount.fuse、sshfs、autofsのマニュアルページを検索しましたが、結果はありません。これがバグなのか機能なのかわかりません。新しく作成されたファイルに現在の日付を表示する方法はありますか?
remote
そして、親ディレクトリ()を私(mia)所有にする方法を知りたいです。