You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
citrine/crystinstall.sh

163 lines
4.3 KiB
Bash

#!/bin/bash
if [[ "$EUID" != "0" ]]; then
echo "Run as root"
exit 1
fi
printf "Do you need a keyboard layout other than standard US? (y/N): "
read KBD
if [[ "$KBD" == "y" || "$KBD" == "Y" ]]; then
echo "We're going to show the list of keymaps in less. Do you know how to exit less? (Y/n): "
read UL
if [[ "$UL" == "n" ]]; then
echo "Once we enter less, use arrows to scroll, and q to quit once you've found the right file."
echo "Press enter to go"
read
fi
ls /usr/share/kbd/keymaps/**/*.map.gz | less
printf "Correct keymap (omit /usr/share/kbd/keymaps and the file extension): "
read KMP
loadkeys ${KMP}
fi
fdisk -l | grep Disk | grep sectors --color=never
printf "Would you like to partition manually? (y/N): "
read PMODE
MANUAL="no"
DISK=""
if [[ "$PMODE" == "y" ]]; then
MANUAL="yes"
else
printf "Install target (will be WIPED COMPLETELY): "
read DISK
fi
if [[ $DISK == *"nvme"* ]]; then
echo "Seems like this is an NVME disk. Noting"
NVME="yes"
else
NVME="no"
fi
if ls /sys/firmware/efi/efivars > /dev/null; then
echo "Seems like this machine was booted with EFI. Noting"
EFI="yes"
else
EFI="no"
fi
echo "Setting system clock via network"
timedatectl set-ntp true
if [[ "$MANUAL" == "no" ]]; then
echo "Partitioning disk"
if [[ "$EFI" == "yes" ]]; then
(
echo "g"
echo "n"
echo
echo
echo "+200M"
echo "t"
echo "1"
echo "n"
echo
echo
echo
echo "w"
) | fdisk $DISK
echo "Partitioned ${DISK} as an EFI volume"
else
(
echo "o"
echo "n"
echo
echo
echo
echo "w"
) | fdisk $DISK
echo "Partitioned ${DISK} as an MBR volume"
fi
if [[ "$NVME" == "yes" ]]; then
if [[ "$EFI" == "yes" ]]; then
echo "Initializing ${DISK} as NVME EFI"
mkfs.vfat ${DISK}p1
mkfs.ext4 ${DISK}p2
mount ${DISK}p2 /mnt
mkdir -p /mnt/efi
mount ${DISK}p1 /mnt/efi
else
echo "Initializing ${DISK} as NVME MBR"
mkfs.ext4 ${DISK}p1
mount ${DISK}p1 /mnt
fi
else
if [[ "$EFI" == "yes" ]]; then
echo "Initializing ${DISK} as EFI"
mkfs.vfat ${DISK}1
mkfs.ext4 ${DISK}2
mount ${DISK}2 /mnt
mkdir -p /mnt/efi
mount ${DISK}1 /mnt/efi
else
echo "Initializing ${DISK} as MBR"
mkfs.ext4 ${DISK}1
mount ${DISK}1 /mnt
fi
fi
else
echo "You have chosen manual partitioning."
echo "We're going to drop to a shell for you to partition, but first, PLEASE READ these notes."
echo "Before you exit the shell, make sure to format and mount a partition for / at /mnt"
if [[ "$EFI" == "yes" ]]; then
mkdir -p /mnt/efi
echo "Additionally, since this machine was booted with UEFI, please make sure to make a 200MB or greater partition"
echo "of type VFAT and mount it at /mnt/efi"
else
echo "Please give me the full path of the device you're planning to partition (needed for bootloader installation later)"
echo "Example: /dev/sda"
printf ": "
read DISK
fi
echo "Press enter to go to a shell."
read
bash
fi
echo "Setting up base CrystalUX System"
3 years ago
pacstrap /mnt base linux linux-firmware networkmanager grub crystal-grub-theme man-db man-pages texinfo nano sudo curl archlinux-keyring neofetch
if [[ "$EFI" == "yes" ]]; then
echo "Installing EFI support package"
pacstrap /mnt efibootmgr
fi
# Grub theme
sed -i 's/\/path\/to\/gfxtheme/\/usr\/share\/grub\/themes\/crystalux\/theme.txt/g' /mnt/etc/default/grub
sed -i 's/#GRUB_THEME/GRUB_THEME/g' /mnt/etc/default/grub
cp /usr/bin/continue.sh /mnt/.
chmod +x /mnt/continue.sh
genfstab -U /mnt >> /mnt/etc/fstab
if [[ "$KBD" == "y" || "$KBD" == "Y" ]]; then
echo ${KMP} >> /mnt/keymap
fi
if [[ "$EFI" == "yes" ]]; then
touch /mnt/efimode
else
echo ${DISK} > /mnt/diskn
fi
arch-chroot /mnt /continue.sh
rm /mnt/continue.sh
echo "Installation should now be complete. Please press enter to reboot :)"
read
reboot