X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/m1-debian/blobdiff_plain/5fe4d91274cb4d5dc841fea66804f553a256fa0b..814f760bfaf1c92f6ccb30a89bbe9505dd106a02:/files/quickstart.txt diff --git a/files/quickstart.txt b/files/quickstart.txt index e57b515..93b1d76 100644 --- a/files/quickstart.txt +++ b/files/quickstart.txt @@ -1,3 +1,6 @@ +# grow the root partition +sgdisk -n 0:0 + # grow root filesystem lsblk resize2fs /dev/nvme0n1pX @@ -107,3 +110,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