]> git.zerfleddert.de Git - m1-debian/blobdiff - files/quickstart.txt
tell an easy way to grow the root partition
[m1-debian] / files / quickstart.txt
index a3f0c18d6ca9c76347e6d71adff2b2762dcff247..93b1d76818a45b3774eeb18c4bc36f79a0b938a1 100644 (file)
@@ -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
Impressum, Datenschutz