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
-
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.
-
OSI and LPI Form Strategic Alliance
With a goal of strengthening Linux and open source communities, this new alliance aims to nurture the growth of more highly skilled professionals.
-
Fedora 41 Beta Available with Some Interesting Additions
If you're a Fedora fan, you'll be excited to hear the beta version of the latest release is now available for testing and includes plenty of updates.
-
AlmaLinux Unveils New Hardware Certification Process
The AlmaLinux Hardware Certification Program run by the Certification Special Interest Group (SIG) aims to ensure seamless compatibility between AlmaLinux and a wide range of hardware configurations.
-
Wind River Introduces eLxr Pro Linux Solution
eLxr Pro offers an end-to-end Linux solution backed by expert commercial support.
-
Juno Tab 3 Launches with Ubuntu 24.04
Anyone looking for a full-blown Linux tablet need look no further. Juno has released the Tab 3.
-
New KDE Slimbook Plasma Available for Preorder
Powered by an AMD Ryzen CPU, the latest KDE Slimbook laptop is powerful enough for local AI tasks.