我正在尝试使用单独的/boot分区设置完整的加密磁盘,但遇到了一些麻烦。
我将写下我在 Ubuntu 15.04 Live DVD 会话中一直遵循的过程。
用“随机数据”填充磁盘
sudo dd if=/dev/urandom of=/dev/sda1 bs=4096 #ok
Run Code Online (Sandbox Code Playgroud)创建分区(使用 gparted)
加密卷
cryptsetup luksFormat --cipher twofish-xts-plain64 --key-size 512
--hash sha512 --iter-time 3000 /dev/sda1
cryptsetup luksFormat --cipher twofish-xts-plain64 --key-size 512
--hash sha512 --iter-time 3000 /dev/sda2
cryptsetup luksFormat --cipher twofish-xts-plain64 --key-size 512
--hash sha512 --iter-time 3000 /dev/sda3
cryptsetup luksFormat --cipher twofish-xts-plain64 --key-size 512
--hash sha512 …Run Code Online (Sandbox Code Playgroud)我要安装 Linux 并进行全盘加密,我做了一些研究并想确认以下信息是正确的:
我对么?这是一个可能的程序吗?