Character-Encoding

帶有 veracrypt 容器的 cryptsetup:設置編碼?

  • July 6, 2021

我正在嘗試解鎖(然後安裝)這樣的 veracrypt 容器:

sudo cryptsetup --type tcrypt --veracrypt open /home/me/my_container.vc my_container
sudo mount /dev/mapper/my_container /media/my_container

但是當我查看容器中的文件時,由於使用了非英文字元,其中一些文件的編碼不正確。在 VeraCrypt 中,我曾經iocharset=utf8Preferences > Mount options 中設置來解決這個問題。我該怎麼做cryptsetup

請注意:我們討論的是容器內的編碼,而不是鍵盤輸入的編碼。

iocharset是一個掛載選項,不是 VeraCrypt 特定的,只需將其添加到您的mount命令中:

sudo mount -o iocharset=utf8 /dev/mapper/my_container /media/my_container

引用自:https://unix.stackexchange.com/questions/657156