Encrypting your Linux system with LUKS and ZFS
Universal Kernel to Start
At the first attempt, a kernel with many features is recommended to ensure an operational system. (Having a generic kernel is also worthwhile to be able to boot with other hardware in case of defects.) If the first tests of your future production system are positive, you can remove unused drivers from the kernel.
The code shown in this article was created on a virtual machine. To make it as versatile as possible, lines 8 to 10 (Listing 4) use the kernel config
from the Live DVD.
Now it's time to configure the kernel (e.g., with make menuconfig
). Here it is important to enable SPL and ZFS (Figure 1).
Compiling and linking can take some time. Experienced Gentoo users can reduce the time by setting the MAKEOPTS
variable in /etc/genkernel.conf
to reflect the number of CPU cores:
MAKEOPTS="-j3" # for two cores
The genkernel all
command now triggers the compiler run. It is equally essential to build the initramfs:
genkernel --luks --zfs --disklabel initramfs
With its help, the kernel can open the LUKS device at boot time and subsequently access the ZFS pool and the filesystems it houses, such as /
, /usr
, /var
, and so on.
The following command installs the sys-fs/zfs
package:
emerge sys-fs/zfs
Because of the defined dependencies, the Gentoo Portage system knows that ZFS needs sys-kernel/spl
and automatically installs the dependency. The next lines ensure that the zfs
service is active in the relevant runlevels – the first one tells it to start at boot time, the second exports the pool at shutdown:
rc-update add zfs boot rc-update add zfs-shutdown shutdown
Do not forget to set the root password using passwd
.
Completing the System Setup
The rest of the installation follows the path of a classic Gentoo setup; in other words, it sets system parameters and installs basic services such as cron and syslog-ng.
The bootloader can be the modern GRUB version 2.00 or the legacy GRUB. For simplicity's sake, I will use GRUB 0.97 here:
emerge grub mount /dev/sda1 /boot grub-install /dev/sda
The configuration file, /boot/grub/grub.conf
in Listing 5, contains the kernel options that open the encrypted ZoL pool correctly.
Listing 5
grub.conf
To prepare the system for the first standalone boot, you need to edit the /etc/fstab
. Contrary to usual conventions, you'll be commenting out the lines for BOOT
, ROOT
, and SWAP
here, because the ZFS pool will handle these assignments. The following commands
exit cd zfs umount-a
exit the chroot environment and unmount the filesystems.
Mountpoint Preparation
The final step of this fairly extensive guide adapts the property of the pool mountpoint. In the installation environment, the pool was mounted at /mnt/gentoo
; on the production system, you will naturally want to use /
:
zfs set mountpoint=/ rpool
Finally, unmount the other filesystems and export the ZFS pool:
umount -l /mnt/gentoo/dev{/shm,/pts} umount -l /mnt/gentoo{/boot,/proc} zpool export rpool
A reboot of the PC or laptop without the Live DVD shows that everything was successful. If you followed all of these steps correctly, the booted Gentoo will prompt you for the passphrase for the LUKS device. And, if you provide this, the computer will then boot from the decrypted ZFS pool. You can now check out the new environment with zfs list
.
« Previous 1 2 3 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
AlmaLinux OS Kitten 10 Gives Power Users a Sneak Preview
If you're looking to kick the tires of AlmaLinux's upstream version, the developers have a purrfect solution.
-
Gnome 47.1 Released with a Few Fixes
The latest release of the Gnome desktop is all about fixing a few nagging issues and not about bringing new features into the mix.
-
System76 Unveils an Ampere-Powered Thelio Desktop
If you're looking for a new desktop system for developing autonomous driving and software-defined vehicle solutions. System76 has you covered.
-
VirtualBox 7.1.4 Includes Initial Support for Linux kernel 6.12
The latest version of VirtualBox has arrived and it not only adds initial support for kernel 6.12 but another feature that will make using the virtual machine tool much easier.
-
New Slimbook EVO with Raw AMD Ryzen Power
If you're looking for serious power in a 14" ultrabook that is powered by Linux, Slimbook has just the thing for you.
-
The Gnome Foundation Struggling to Stay Afloat
The foundation behind the Gnome desktop environment is having to go through some serious belt-tightening due to continued financial problems.
-
Thousands of Linux Servers Infected with Stealth Malware Since 2021
Perfctl is capable of remaining undetected, which makes it dangerous and hard to mitigate.
-
Halcyon Creates Anti-Ransomware Protection for Linux
As more Linux systems are targeted by ransomware, Halcyon is stepping up its protection.
-
Valve and Arch Linux Announce Collaboration
Valve and Arch have come together for two projects that will have a serious impact on the Linux distribution.
-
Hacker Successfully Runs Linux on a CPU from the Early ‘70s
From the office of "Look what I can do," Dmitry Grinberg was able to get Linux running on a processor that was created in 1971.