From 83966e163f08e287e10867f79c2f7722d60028c5 Mon Sep 17 00:00:00 2001 From: Thomas Glanzmann Date: Sat, 12 Mar 2022 21:20:57 +0100 Subject: [PATCH] add instructions to repack live --- files/quickstart.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/files/quickstart.txt b/files/quickstart.txt index e57b515..661a9b6 100644 --- a/files/quickstart.txt +++ b/files/quickstart.txt @@ -107,3 +107,19 @@ sudo systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.ta - Install grub - reboot + +Repack live +=========== +You might want to save the state of your live system to the usb stick. In order +to do so, run the following commands: + +apt update +apt-get install -y cpio pigz +rm /etc/rc.local +# remove '#' before allow-hotplug +vi /etc/network/interfaces +mount /dev/sda1 /mnt +mv /mnt/initrd.gz /mnt/initrd.old +cd / +find . -xdev | cpio --quiet -H newc -o | pigz -9 > /mnt/initrd.gz +umount /mnt -- 2.39.2