Try of frugal install of Qurky Void (=Quantumvis)
After installation on a stick, I have formated a partition of the internal drive in btfrs, copied the files from the second partition of the stick (the directory quantumvis) to the internal partition. I also copied the files vmlinuz and initrd in a directory in an ext4 partition, added a stanza in the grub.cfg that manages the boot. After the reboot, test of the QV on the internal drive. It starts but after switch_root, kernel panic.
So I searched some documentation and found https://forum.manjaro.org/t/how-to-clone-btrfs/134143.
Used method to copy the files (from the second partition of the usb stick with QV to the btrfs internal partition):
Creation of directories to the transfer:
Mounting of the btrfs partitions (the stick is /dev/sdb and "btrfs partition" is the btrfs partition (like sda5 or nvme0n4))
Code: Select all
mount -t btrfs /dev/sdb2 /mnt/stick
mount -t btfrs /dev/"btrfs partition" /mnt/btrfs
The copy of the files :
Code: Select all
btrfs subvolume snapshot -r /mnt/stick/quantumvis/1/@qv /mnt/stick/folder_0
btrfs send /mnt/stick/folder_0/ | btrfs receive /mnt/btrfs
btrfs subvolume snapshot /mnt/btrfs/folder_0/ /mnt/btrfs/quantumvis/1/@qv
btrfs subvolume delete /mnt/stick/folder_0/
btrfs subvolume delete /mnt/btrfs/folder_0/
btrfs subvolume snapshot -r /mnt/stick/quantumvis/1/@home /mnt/stick/folder_0
btrfs send /mnt/stick/folder_0/ | btrfs receive /mnt/btrfs
btrfs subvolume snapshot /mnt/btrfs/folder_0/ /mnt/btrfs/quantumvis/1/@home
btrfs subvolume delete /mnt/stick/folder_0/
btrfs subvolume delete /mnt/btrfs/folder_0/
btrfs subvolume snapshot -r /mnt/stick/quantumvis/@files /mnt/stick/folder_0
btrfs send /mnt/stick/folder_0/ | btrfs receive /mnt/btrfs
btrfs subvolume snapshot /mnt/btrfs/folder_0/ /mnt/btrfs/quantumvis/@files
btrfs subvolume delete /mnt/stick/folder_0/
btrfs subvolume delete /mnt/btrfs/folder_0/
cp /mnt/stick/quantumvis/snapshot-default /mnt/btrfs/
cp /mnt/stick/quantumvis/snapshot-record /mnt/btrfs/
This time after reboot, no kernel panic.
Edit : fixed a typo in the copy code
Not yet tested further than boot