X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/m1-debian/blobdiff_plain/34ce98d9e145acb8161f6d6d1de52e175b9ffb29..2726c310bf41a97245abcfb1e8cea91cc2a51e4e:/files/quickstart.txt diff --git a/files/quickstart.txt b/files/quickstart.txt index a3f0c18..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 @@ -90,6 +93,9 @@ apt-get install gnome wget https://tg.st/u/k.deb dpkg -i k.deb +# asahi does not handle sleep well at the moment +sudo systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target + - You can also use the live system to install Debian on the m1, the rough outline is: - Create two paritions: @@ -104,3 +110,19 @@ dpkg -i k.deb - 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