LVM¶
By default, Raspberry Pi OS does not come with LVM. However, LVM is useful for taking snapshots in Proxmox.
Setup¶
The main setup concept is as follows:
- Create an SD card with a stock Raspberry Pi OS on a host system.
- Install necessary packages on SD card.
- Generate new
initramfs
on the Pi. - Backup the OS to a
tar
file from the host system. - Create file system on new NVMe drive.
- Mount new file system drive.
- Extract
tar
to new drive. - Modify boot on new drive.
- Boot new drive.
Equipment¶
The following equipment was used:
- Raspberry Pi 5 with SD card and an NVMe hat.
- Host computer with Ubuntu server installed that can read an SD card.
- SD card.
- 500GB NVMe.
Note
My setup can only read NVMe drives from my Pi and so all of my interfacing with the NVMe is done while booted into the SD card on the Pi.
Note
I have an NVMe drive on my Pi, therefore my commnds below are with respect to /dev/nvme0n1
when working with it.
Note
When working with my SD card mounted on my host system, the drive location is /dev/mmcblk0
Note
Most of the mounting of file systems is being done in the /mnt
directory of both the Pi and host system.
Host System¶
Install Raspberry Pi OS on an SD card.
SD Card¶
Insert SD card into Pi and boot from SD card.
Note
Updating initramfs may not be needed because it may update itself during the lvm2
installation.
Host System¶
Remove the SD card from the Pi and insert it back into the host system.
Get the /dev
drive location
Note
The p
needs to be added to the end of the drive if using an SD card or NVMe drive.
Mount the SD card partitions and archive the contents to a tar
file
The SD card is not archived into the /mnt/rpi.tar.gz
file on the host system.
SD Card¶
Insert SD card into Pi and boot from SD card.
Using parted
, remove all partitions from the NVMe.
Warning
THIS DESTROYS ALL EXISTING DATA ON THE NVMe
Note
The p
needs to be added to the end of the drive if using an SD card or NVMe drive.
Identify the partition number: Once inside the parted interactive shell (you'll see a (parted) prompt), use the print command to list the partitions on the selected disk and find the number of the one you want to delete.
Look at the output to identify the correct partition number (the first column).
Check that the partitions were deleted
Create a 500MB FAT32 partition and the remainder of the disk as an LVM partition
Check that the partitions were created successfully
Setup LVM on the NVMe drive, create and format the root volume
Check that the volumes were created successfully
Mount the USB partitions and restore the contents
Check that the contents transferred successfully
Note
Don't seem to need to change config.txt
with initramfs
.
./rpi/etc/fstab
./rpi/boot/firmware/cmdline.txt
Unmount the partitions
Reboot and hold the spacebar
to get to the boot menu. Choose 6
for NVMe.
Verify that it's booting from the NVMe
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
mmcblk0 179:0 0 119.1G 0 disk
├─mmcblk0p1 179:1 0 512M 0 part
└─mmcblk0p2 179:2 0 118.6G 0 part
nvme0n1 259:0 0 465.8G 0 disk
├─nvme0n1p1 259:1 0 511M 0 part /boot/firmware
└─nvme0n1p2 259:2 0 465.3G 0 part
├─pve-swap 254:0 0 8G 0 lvm
└─pve-root 254:1 0 70G 0 lvm /
If successful, use raspi-config
to set the boot order to be NVMe drive first.
Swap¶
This sets up a logical volume for swap instead of using the default Raspberry Pi OS file swap.
Disable dphys-swapfile
file swap.
Check that the volume was created
--- Logical volume ---
LV Path /dev/pve/swap
LV Name swap
VG Name pve
LV UUID Gb7n93-OBv9-YtPu-vz7K-GeXK-G5fY-W2QQ3T
LV Write Access read/write
LV Creation host, time raspberrypi, 2025-03-30 05:11:22 +0100
LV Status available
# open 0
LV Size 8.00 GiB
Current LE 2048
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Block device 254:0
Test that the swap has been extended properly
LVM Thin¶
Create an LVM thin pool which allocates blocks when they are written, thereby saving disk space.
Troubleshooting¶
Code
foo@pi23:/wrk $ cat sdlvm
#!/bin/false
#umount /mnt/dev/p2
#umount /mnt/dev/p1
#vgremove $(hostname)
#pvremove "$1""2"
which pvs || exit 1
[ -z "$1" ] && exit 1
E=echo
#chk and umount /dev/media/*
$E vgchange -an -y $(hostname)
$E vgremove -y $(hostname)
$E pvremove "$1""2"
$E parted -s "$1" mklabel gpt || exit 1
$E parted -s "$1" mkpart primary 4M 516M || exit 1
$E parted -s "$1" mkpart primary 516M 64G || exit 1
$E parted -s "$1" name 1 bootfs || exit 1
$E parted -s "$1" name 2 rootfs || exit 1
$E parted -s "$1" set 1 boot on || exit 1
$E parted -s "$1" set 2 lvm on || exit 1
$E pvcreate "$1""2" || exit 1
$E vgcreate $(hostname) "$1""2" || exit 1
$E lvcreate -y -n rootfs -l 100%FREE $(hostname) || exit 1
$E mkfs.vfat "$1""1" || exit 1
$E mkfs.ext4 "/dev/"$(hostname)"/rootfs" || exit 1
$E mkdir -p /mnt/dev/p{1,2} || exit 1
$E mount "$1""1" /mnt/dev/p1 || exit 1
$E mount "/dev/"$(hostname)"/rootfs" /mnt/dev/p2 || exit 1
$E update-initramfs -u -k all
$E DRY=" " sys-rbackup /boot/firmware/ /mnt/dev/p1/ || exit 1
$E DRY=" " sys-rbackup / /mnt/dev/p2/ || exit 1
$E sed -i -e "s,root=[^[:space:]]*,root=/dev/mapper/$(hostname)-rootfs," /mnt/dev/p1/cmdline.txt || exit 1
$E sed -i -e "s,PART.*=.*-01[^[:space:]]*,PARTLABEL=bootfs," /mnt/dev/p2/etc/fstab || exit 1
$E sed -i -e "s,PART.*=.*-02[^[:space:]]*,/dev/mapper/$(hostname)-rootfs," /mnt/dev/p2/etc/fstab || exit 1
$E cat /mnt/dev/p2/etc/fstab
$E umount /mnt/dev/p2 || exit 1
$E cat /mnt/dev/p1/cmdline.txt
$E umount /mnt/dev/p1 || exit 1