From 5bceea4e8382e4848041e64ec540f3add29f8338 Mon Sep 17 00:00:00 2001 From: Kyle K Date: Sat, 1 Feb 2020 21:17:53 -0600 Subject: add dobtrfs to the kernel boot line --- install.sh | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'install.sh') diff --git a/install.sh b/install.sh index 3f5c23c..e84eb63 100755 --- a/install.sh +++ b/install.sh @@ -12,11 +12,13 @@ echo -e 'Welcome to the GentooX setup, the installation script mainly consists o \tGentooX uses openSUSE-style BTRFS root partition & subvolumes for snapshotting with snapper \tGentooX requires minimum of 16GB of space, and use of BTRFS is hardcoded -mounting target partition to /mnt/install -unsquashfs -f -i -d /mnt/install/ /mnt/cdrom/image.squashfs -/usr/local/sbin/genfstab -U >> /mnt/install/etc/fstab -/usr/local/sbin/arch-chroot /mnt/install/ -grub-install --target=x86_64-efi for UEFI mode or grub-install --target=i386-pc (BIOS only)' +Manual installation can be done via: + mounting target partition to /mnt/install + unsquashfs -f -i -d /mnt/install/ /mnt/cdrom/image.squashfs + /usr/local/sbin/genfstab -U >> /mnt/install/etc/fstab + /usr/local/sbin/arch-chroot /mnt/install/ + grub-install --target=x86_64-efi for UEFI mode or grub-install --target=i386-pc (BIOS only) + grub-mkconfig -o /boot/grub/grub.cfg' declare -A PART_SCHEME @@ -88,6 +90,7 @@ setup_btrfs () { } +echo -e "\nDetected drives:\n$(lsblk | grep disk)" while :; do echo read -erp "Automatic partitioning (a) or manual partitioning (will launch gparted)? [a/m] " -n 1 partitioning_mode @@ -141,6 +144,8 @@ mount --rbind /sys /mnt/install/sys cd /mnt/install/ cat <