web-dev-qa-db-ja.com

ecryptfsは読み取り専用としてマウントします

私は次のことを行いました( http://haridas.in/how-to-put-encrypted-contents-on-cloud-storages.html )、マウント後、マウントされたディレクトリは読み取り専用ですファイルシステム:

2つのディレクトリを作成しました:1つは/ home/user/dir1と/ home/user/Dropbox/dir2に。次に:

mount -t ecryptfs /home/user/Dropbox/dir2 /home/user/dir1

選択:aes/16 bytes/plaintext passthrough yes/filename encryption no

次の内容で/root/.ecryptfsrcファイルを作成しました:

key=passphrase:passphrase_passwd_file=/home/user/.ecryptfs/passphrase.txt
ecryptfs_sig=mysighere
ecryptfs_cipher=aes
ecryptfs_key_bytes=16
ecryptfs_passthrough=y
ecryptfs_enable_filename_crypto=n

コンテンツを含むファイル/home/user/.ecryptfs/passphrase.txtを作成しました:

passphrase_passwd=mypassphrase

/ etc/fstabに次の行を追加しました。

/home/user/Dropbox/dir2 /home/user/dir1 ecryptfs defaults 0 0

そして今、dir2とdir1は読み取り専用ファイルシステムです。読み取り/書き込みファイルシステムとしてマウントするように変更するにはどうすればよいですか?行をfstabに追加すると、ファイルシステムは本来のようにマウントされますが、システムのブート時には、読み取り専用ファイルシステムとしてマウントされます。

2
user3188653

マウントの書き込み許可を確認します。

  • タイプcat /etc/mtabそして、暗号化デバイスを見つけます
  • 読み取り/書き込み権限でパーティションを再マウントします:Sudo mount -i -o remount,rw /path/to/your/Device/or/.Private
2
yilmi