diff options
| author | root <root@gocchin.haxx.dafuq> | 2021-11-19 13:24:49 -0600 | 
|---|---|---|
| committer | root <root@gocchin.haxx.dafuq> | 2021-11-19 13:24:49 -0600 | 
| commit | 599f53169c6b497658a1b5c399f22a1295e380a1 (patch) | |
| tree | 142d1d8fd5bd6d9f3b585755c485897e5c9b6a76 /install.sh | |
| parent | b3b0359dadcec2e89d15ec98752b9b88e683f251 (diff) | |
| download | gentoox-599f53169c6b497658a1b5c399f22a1295e380a1.tar.gz gentoox-599f53169c6b497658a1b5c399f22a1295e380a1.tar.bz2 gentoox-599f53169c6b497658a1b5c399f22a1295e380a1.zip | |
re-arrange theme related things in gentoox_build.sh
Diffstat (limited to 'install.sh')
| -rwxr-xr-x | install.sh | 8 | 
1 files changed, 4 insertions, 4 deletions
| @@ -5,10 +5,10 @@ if [ $(id -u) != "0" ]; then  fi  set -e -echo -e 'Welcome to the GentooX setup, the installation script mainly consists of: +echo -e 'Welcome to the GentooX setup, the installation mainly consists of:  \t- providing this script with a target partition where system will be installed  \t- extracting precompiled squashfs system image into the specified partition -\t- setting up GRUB, BIOS or UEFI mode will be used depending how system was booted +\t- setting up GRUB. BIOS or UEFI mode will be used depending how system was booted  \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 @@ -17,7 +17,7 @@ Manual installation can be done via:    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-install --target=x86_64-efi for UEFI mode, or grub-install --target=i386-pc (BIOS only)    grub-mkconfig -o /boot/grub/grub.cfg' @@ -94,7 +94,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 +	read -erp "Automatic partitioning (a), or manual partitioning ((m), will launch gparted)? [a/m] " -n 1 partitioning_mode  	if [[ $partitioning_mode = "a" ]]; then          if [[ ! -z $UEFI_MODE ]]; then echo "EFI boot detected"; fi  		read -erp "Enter drive to be formatted for GentooX installation: " -i "/dev/sda" drive | 
