2016-08-04 12:30:21 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
function header () {
|
|
|
|
tput setaf 1
|
2020-06-15 17:14:56 -05:00
|
|
|
tput bold echo $@
|
2016-08-04 12:30:21 -05:00
|
|
|
tput sgr0
|
|
|
|
return
|
|
|
|
}
|
|
|
|
function help() {
|
2016-11-16 16:23:52 -06:00
|
|
|
echo Usage: ${0} '[OPTIONS]'
|
2017-10-26 01:11:53 -05:00
|
|
|
echo '\-A -- Audio optimizations from the Arch Wiki'
|
2017-03-29 17:45:16 -05:00
|
|
|
echo '\-d DISK -- Use the disk.'
|
|
|
|
echo '\-e -- Encrypt the root partition'
|
|
|
|
echo '\-g -- GUI packages and setup'
|
|
|
|
echo '\-h -- This helptext'
|
|
|
|
echo '\-k -- Kali Linux-like package additions'
|
2018-02-14 03:20:12 -06:00
|
|
|
echo '\-l FILE -- Log to a file'
|
2017-03-29 17:45:16 -05:00
|
|
|
echo '\-p -- Productivity package additions'
|
2017-10-26 01:11:53 -05:00
|
|
|
echo '\-P -- Power saving for laptops'
|
2020-06-15 17:14:56 -05:00
|
|
|
echo '\-s -- Create a layout for an AniNIX/Spartacus'
|
2017-03-29 17:45:16 -05:00
|
|
|
echo '\-m -- Skip disk operations and assume storage is mounted on /mnt'
|
2018-02-14 03:20:12 -06:00
|
|
|
echo '\-v -- Verbose output.'
|
2020-06-15 17:14:56 -05:00
|
|
|
echo '\-z -- Try to add all the packages on AniNIX/Core'
|
2016-08-04 12:30:21 -05:00
|
|
|
exit 1;
|
|
|
|
}
|
|
|
|
|
2018-02-14 03:20:12 -06:00
|
|
|
# Partition controls
|
|
|
|
efipart=2;
|
|
|
|
bootpart=3;
|
|
|
|
rootpart=4;
|
|
|
|
partpoint=1;
|
|
|
|
partedcmd='mklabel gpt\nmkpart primary ext2 0 1MiB\nset 1 bios_grub on\n';
|
|
|
|
function addNextPartition() {
|
|
|
|
partsize="$1"
|
|
|
|
parttype="$2"
|
|
|
|
partfs="$3"
|
|
|
|
nextpartpoint=$(( $partpoint + $partsize ))
|
|
|
|
partedcmd="${partedcmd}mkpart $parttype $partfs ${partpoint}MiB ${nextpartpoint}MiB"'\n'
|
|
|
|
partpoint=$nextpartpoint
|
|
|
|
}
|
|
|
|
|
2016-08-04 12:30:21 -05:00
|
|
|
disk="/dev/sda"
|
2018-02-14 03:20:12 -06:00
|
|
|
bootsize=500; # Size in MB for /boot
|
2016-08-30 14:20:55 -05:00
|
|
|
# TODO Add LVM as an argument
|
2018-02-14 03:20:12 -06:00
|
|
|
while getopts "d:egkl:pmsvz" OPTION
|
2016-08-04 12:30:21 -05:00
|
|
|
do
|
|
|
|
case $OPTION in
|
2017-10-26 01:11:53 -05:00
|
|
|
A) audio=1 ;;
|
2016-08-04 12:30:21 -05:00
|
|
|
d) disk=${OPTARG} ;;
|
2016-11-16 16:23:52 -06:00
|
|
|
e) encrypt=1 ;;
|
2016-08-30 14:20:55 -05:00
|
|
|
g) gui=1 ;;
|
2016-11-16 16:23:52 -06:00
|
|
|
k) kali=1 ;;
|
2018-02-14 03:20:12 -06:00
|
|
|
l) exec script -e -f -c "/bin/bash $0 $(echo $@ | sed "s#-l ${OPTARG}##")" "${OPTARG}" ;;
|
2016-11-29 15:00:15 -06:00
|
|
|
p) productivity=1; gui=1 ;;
|
2017-10-26 01:11:53 -05:00
|
|
|
P) powersave=1 ;;
|
2017-03-29 17:45:16 -05:00
|
|
|
m) nodiskbuild=1 ;;
|
2016-08-30 14:20:55 -05:00
|
|
|
s) spartacus=1 ;;
|
2018-02-14 03:20:12 -06:00
|
|
|
v) set -x ;;
|
2016-11-16 16:23:52 -06:00
|
|
|
z) kitchensink=1 ;;
|
2016-08-04 12:30:21 -05:00
|
|
|
*) help
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
header Confirm options:
|
|
|
|
echo Spartacus set to: $spartacus
|
|
|
|
echo Encryption set to: $encrypt
|
2016-08-30 14:20:55 -05:00
|
|
|
echo GUI: $gui
|
|
|
|
echo Productivity: $productivity
|
2016-11-16 16:23:52 -06:00
|
|
|
echo Kali tools: $kali
|
|
|
|
echo All Core packages: $kitchensink
|
|
|
|
echo Disk to use: $disk \(Skip disk building? $nodiskbuild \)
|
2016-08-04 12:30:21 -05:00
|
|
|
printf "Is this OK? Type YES to continue: "
|
|
|
|
read answer
|
|
|
|
if [ "$answer" != "YES" ]; then
|
|
|
|
echo User did not confirm.
|
|
|
|
exit 1;
|
|
|
|
fi
|
2020-06-15 17:14:56 -05:00
|
|
|
echo >> /etc/pacman.conf <EOM
|
|
|
|
[AniNIX]
|
|
|
|
SigLevel = Optional TrustAll
|
|
|
|
Server = https://aninix.net/maat/
|
|
|
|
EOM
|
|
|
|
|
2016-08-30 14:20:55 -05:00
|
|
|
pacman -Syy
|
2018-02-14 03:20:12 -06:00
|
|
|
if [ -z "$nodiskbuild" ]; then
|
2016-11-29 15:00:15 -06:00
|
|
|
header Allocating space
|
2018-02-14 03:20:12 -06:00
|
|
|
dd if=/dev/zero of="$disk" bs=1M count=1000
|
|
|
|
|
|
|
|
if [ ! -z "$spartacus" ]; then
|
2016-11-29 15:00:15 -06:00
|
|
|
# Insert an ExFAT data partition ahead of the rest.
|
2018-02-14 03:20:12 -06:00
|
|
|
export datapart=$efipart;
|
|
|
|
export efipart=$((efipart+1))
|
2016-11-29 15:00:15 -06:00
|
|
|
export bootpart=$((bootpart+1))
|
|
|
|
export rootpart=$(($rootpart+1))
|
|
|
|
# Break the disk up into 4ths -- 2/4 go to data, 1/4 go to boot, and 1/4 to root
|
|
|
|
export disksize=$(($(fdisk -l $disk | head -n 1 | cut -f 5 -d ' ') / 1048576)) # Return disk size in MB
|
|
|
|
if [ "$disksize" == "" ]; then echo "Can't identify disk size"; exit 1; fi
|
|
|
|
if [ "$disksize" -lt 7788 ]; then echo "This drive is too small to be a Spartacus."; exit 1; fi # Must be 8GB or more to have 2GB root.
|
|
|
|
export bootsize=$(($disksize / 4))
|
|
|
|
export datasize=$(($disksize / 2))
|
2018-02-14 03:20:12 -06:00
|
|
|
addNextPartition $datasize primary ext4
|
|
|
|
fi
|
|
|
|
# 550MiB for EFI with boot toggle
|
|
|
|
addNextPartition 550 primary fat32
|
|
|
|
partedcmd="${partedcmd}toggle $efipart boot"'\n'
|
|
|
|
|
|
|
|
# /boot
|
|
|
|
addNextPartition $bootsize primary fat32
|
|
|
|
|
|
|
|
# / (root)
|
|
|
|
partedcmd="${partedcmd}mkpart primary ext4 ${partpoint}MiB 100%%FREE"'\nquit\n\n'
|
|
|
|
printf "$partedcmd" | parted "$disk"
|
|
|
|
if [ ! -z "$spartacus" ]; then
|
2016-11-29 15:00:15 -06:00
|
|
|
#create data partition
|
|
|
|
pacman -S exfat-utils --noconfirm
|
|
|
|
mkfs.exfat "$disk""$datapart"
|
|
|
|
exfatlabel "$disk""$datapart" "AS-XPLATFRM"
|
2018-02-14 03:20:12 -06:00
|
|
|
fi
|
|
|
|
|
|
|
|
header Making fat esp partition on "$disk""$efipart"
|
|
|
|
mkfs.fat -F32 "$disk""$efipart"
|
|
|
|
|
|
|
|
header Making boot partition on "$disk""$bootpart"
|
|
|
|
mkfs.vfat "$disk""$bootpart"
|
2016-08-04 12:30:21 -05:00
|
|
|
|
2016-11-29 15:00:15 -06:00
|
|
|
header Making root and mountpoints
|
2018-02-14 03:20:12 -06:00
|
|
|
if [ ! -z "$encrypt" ]; then
|
2016-11-29 15:00:15 -06:00
|
|
|
header Making encrypted root on "$disk""$rootpart"
|
|
|
|
modprobe dm-crypt
|
|
|
|
modprobe serpent_generic
|
|
|
|
header Formatting root -- make sure to enter YES followed by a strong passphrase.
|
|
|
|
cryptsetup luksFormat -c serpent-xts-plain64 -h sha512 --key-size 512 "$disk""$rootpart"
|
|
|
|
header Unlocking root
|
|
|
|
cryptsetup luksOpen "$disk""$rootpart" cryptroot
|
|
|
|
mkfs.xfs -f /dev/mapper/cryptroot
|
|
|
|
xfs_admin -L ROOT /dev/mapper/cryptroot
|
|
|
|
mount /dev/mapper/cryptroot /mnt
|
|
|
|
if [ $? -ne 0 ]; then header ERROR: Cannot continue; exit 1; fi
|
|
|
|
else
|
|
|
|
header Making root on "$disk""$rootpart"
|
|
|
|
mkfs.xfs -f "$disk""$rootpart"
|
|
|
|
xfs_admin -L ROOT "$disk""$rootpart"
|
|
|
|
mount "$disk""$rootpart" /mnt
|
|
|
|
if [ $? -ne 0 ]; then header ERROR: Cannot continue; exit 1; fi
|
|
|
|
fi
|
2016-08-04 12:30:21 -05:00
|
|
|
|
2016-11-29 15:00:15 -06:00
|
|
|
mkdir /mnt/boot
|
|
|
|
mount "$disk""$bootpart" /mnt/boot
|
|
|
|
if [ "$?" -ne 0 ]; then header ERROR: Cannot continue; exit 1; fi
|
2018-02-14 03:20:12 -06:00
|
|
|
mkdir /mnt/boot/efi
|
|
|
|
mount "$disk""$efipart" /mnt/boot/efi
|
|
|
|
if [ "$?" -ne 0 ]; then header ERROR: Cannot continue; exit 1; fi
|
2016-11-29 15:00:15 -06:00
|
|
|
fi
|
2016-11-16 16:23:52 -06:00
|
|
|
|
2016-08-04 12:30:21 -05:00
|
|
|
|
|
|
|
# Install ArchLinux with basic clients for the AniNIX Services.
|
2016-08-30 14:20:55 -05:00
|
|
|
# * git for Foundation
|
2019-05-06 02:04:19 -05:00
|
|
|
# * elinks for WebServer and Wiki
|
2016-08-04 12:30:21 -05:00
|
|
|
# * openssh for SSH/SFTP
|
2019-05-06 02:04:19 -05:00
|
|
|
# * weechat for IRC
|
2016-08-04 12:30:21 -05:00
|
|
|
# * make for source packages
|
|
|
|
# * tor for anonymity
|
2016-11-16 16:23:52 -06:00
|
|
|
header Installing ArchLinux to device\(s\) on /mnt
|
2020-06-15 17:14:56 -05:00
|
|
|
export pkglist="base base-devel parted net-tools bind-tools git openssh make elinks weechat vim wget tor torsocks grub os-prober rsync openntpd tmux efibootmgr shadowarch"
|
2018-02-14 03:20:12 -06:00
|
|
|
if [ ! -z "$gui" ]; then
|
2020-11-22 13:42:46 -06:00
|
|
|
export pkglist="$pkglist"" xorg-server xfce4 hunspell hunspell-en_US thunar-archive-plugin thunar-media-tags-plugin thunar-volman chromium conky tigervnc xscreensaver"
|
2016-08-30 14:20:55 -05:00
|
|
|
fi
|
2018-02-14 03:20:12 -06:00
|
|
|
if [ ! -z "$spartacus" ]; then
|
2016-08-30 14:20:55 -05:00
|
|
|
export pkglist="$pkglist"" exfat-utils"
|
|
|
|
fi
|
2018-02-14 03:20:12 -06:00
|
|
|
if [ ! -z "$productivity" ]; then
|
2019-05-06 02:04:19 -05:00
|
|
|
export pkglist="$pkglist"" libreoffice-still gimp feh vlc evince openshot"
|
2016-08-30 14:20:55 -05:00
|
|
|
fi
|
2018-02-14 03:20:12 -06:00
|
|
|
if [ ! -z "$kali" ]; then
|
2016-11-16 16:23:52 -06:00
|
|
|
export pkglist="$pkglist"" extundelete testdisk nmap tcpdump hexedit dcfldd"
|
2018-02-14 03:20:12 -06:00
|
|
|
if [ ! -z "$gui" ]; then
|
2017-07-27 15:30:48 -05:00
|
|
|
export pkglist="$pkglist"" wireshark-gtk"
|
2016-11-16 16:23:52 -06:00
|
|
|
else
|
2017-07-27 15:30:48 -05:00
|
|
|
export pkglist="$pkglist"" wireshark-cli"
|
2016-11-16 16:23:52 -06:00
|
|
|
fi
|
|
|
|
fi
|
2018-02-14 03:20:12 -06:00
|
|
|
if [ ! -z "$kitchensink" ]; then
|
2016-11-16 16:23:52 -06:00
|
|
|
export pkglist="base base-devel $(wget -q -O - 'https://aninix.net/installed-packages.txt' | cut -f 1 -d ' ' | tr '\n' ' ')"
|
|
|
|
fi
|
2016-08-04 12:30:21 -05:00
|
|
|
|
2016-08-30 14:20:55 -05:00
|
|
|
yes "" | pacstrap -i /mnt $pkglist
|
2016-11-16 16:23:52 -06:00
|
|
|
if [ $? -ne 0 ]; then header ERROR: Cannot continue -- pacstrap failed; exit 1; fi
|
2016-11-29 15:00:15 -06:00
|
|
|
|
2016-08-04 12:30:21 -05:00
|
|
|
header Create FSTAB
|
|
|
|
genfstab -U /mnt >> /mnt/etc/fstab
|
|
|
|
|
|
|
|
header Set time
|
|
|
|
sed -i 's/#en_US.UTF-8/en_US.UTF-8/' /mnt/etc/locale.gen
|
|
|
|
arch-chroot /mnt locale-gen
|
2017-07-27 15:30:48 -05:00
|
|
|
ln -sf /usr/share/zoneinfo/America/Chicago /mnt/etc/localtime
|
2016-08-04 12:30:21 -05:00
|
|
|
arch-chroot /mnt hwclock --systohc --utc
|
|
|
|
|
|
|
|
header Setup bootloader
|
2018-02-14 03:20:12 -06:00
|
|
|
if [ -z "$nodiskbuild" ]; then
|
2016-11-29 15:00:15 -06:00
|
|
|
export rootuuid="$(blkid "$disk""$rootpart" | cut -f 2 -d '"')"
|
2018-02-14 03:20:12 -06:00
|
|
|
if [ ! -z "$encrypt" ]; then
|
2016-11-29 15:00:15 -06:00
|
|
|
export hookstring="$(grep 'HOOKS=' /mnt/etc/mkinitcpio.conf | grep -v '#')"
|
|
|
|
sed -i 's#'"$hookstring"'#HOOKS="base udev autodetect modconf block encrypt filesystems keyboard fsck"#' /mnt/etc/mkinitcpio.conf
|
|
|
|
sed -i 's#GRUB_CMDLINE_LINUX=""#GRUB_CMDLINE_LINUX="cryptdevice=UUID='$rootuuid':cryptroot"#' /mnt/etc/default/grub
|
|
|
|
sed -i 's/GRUB_CMDLINE_LINUX_DEFAULT="/GRUB_CMDLINE_LINUX_DEFAULT="panic=5 /' /etc/default/grub # Fix for CVE-2016-4484
|
|
|
|
fi
|
2016-11-16 16:23:52 -06:00
|
|
|
fi
|
|
|
|
|
2016-08-04 12:30:21 -05:00
|
|
|
arch-chroot /mnt mkinitcpio -p linux
|
2016-08-30 14:20:55 -05:00
|
|
|
if [ $? -ne 0 ]; then header ERROR: Cannot continue; exit 1; fi
|
2018-02-14 03:20:12 -06:00
|
|
|
if [ -z "$nodiskbuild" ]; then
|
|
|
|
arch-chroot /mnt grub-install --target=x86_64-efi --removable --bootloader-id=grub --efi-directory /boot "$disk"
|
|
|
|
if [ $? -ne 0 ]; then header ERROR: Cannot continue; exit 1; fi
|
|
|
|
arch-chroot /mnt grub-install --target=i386-pc "$disk"
|
2016-11-16 16:23:52 -06:00
|
|
|
if [ $? -ne 0 ]; then header ERROR: Cannot continue; exit 1; fi
|
|
|
|
fi
|
2016-08-30 14:20:55 -05:00
|
|
|
arch-chroot /mnt grub-mkconfig -o /boot/grub/grub.cfg
|
|
|
|
if [ $? -ne 0 ]; then header ERROR: Cannot continue; exit 1; fi
|
2016-08-04 12:30:21 -05:00
|
|
|
|
|
|
|
header Set networking
|
2016-11-16 16:23:52 -06:00
|
|
|
arch-chroot /mnt systemctl enable openntpd
|
2016-08-04 12:30:21 -05:00
|
|
|
arch-chroot /mnt systemctl enable netctl
|
|
|
|
export interface=$(ip link list | grep "state" | cut -f 2 -d ":" | cut -f 2 -d " " | grep -v lo)
|
|
|
|
cp /mnt/etc/netctl/examples/ethernet-dhcp /mnt/etc/netctl/$interface
|
|
|
|
sed -i 's/eth0/'$interface'/' /mnt/etc/netctl/$interface
|
|
|
|
echo 'DNSSearch="aninix.net"' >> /mnt/etc/netctl/$interface
|
|
|
|
arch-chroot /mnt systemctl enable netctl
|
|
|
|
arch-chroot /mnt netctl enable $interface
|
|
|
|
|
2017-03-29 17:45:16 -05:00
|
|
|
# Vim cleanup for SSH
|
2017-07-27 15:30:48 -05:00
|
|
|
arch-chroot /mnt mkdir -p /usr/share/vim/vimfiles/plugin
|
|
|
|
arch-chroot /mnt printf 'set mouse-=a\n' > /usr/share/vim/vimfiles/plugin/shadowarch.vim
|
2017-06-23 13:56:31 -05:00
|
|
|
|
|
|
|
ln -sf /etc/skel/.bashrc /mnt/root/.bashrc
|
2016-08-30 14:20:55 -05:00
|
|
|
|
2016-11-16 16:23:52 -06:00
|
|
|
# Clone ConfigPackags from AniNIX::Foundation
|
|
|
|
arch-chroot /mnt git -C /usr/local/src/ clone https://aninix.net/foundation/ConfigPackages
|
|
|
|
arch-chroot /mnt git -C /usr/local/src/ clone https://aninix.net/foundation/MiscScripts
|
2017-03-29 17:45:16 -05:00
|
|
|
|
2016-11-16 16:23:52 -06:00
|
|
|
arch-chroot /mnt make -C /usr/local/src/MiscScripts/Shared install
|
|
|
|
arch-chroot /mnt make -C /usr/local/src/MiscScripts/Admin install
|
2017-03-29 17:45:16 -05:00
|
|
|
arch-chroot /mnt make -C /usr/local/src/MiscScripts/ShadowArch install
|
2016-11-16 16:23:52 -06:00
|
|
|
arch-chroot /mnt git -C /usr/local/src/ clone https://aur.archlinux.org/cower.git
|
2018-02-14 03:20:12 -06:00
|
|
|
arch-chroot /mnt groupadd tty-allow
|
|
|
|
arch-chroot /mnt useradd -u 1001 -G tty-allow -m depriv
|
|
|
|
arch-chroot /mnt usermod -G "$(getent group | grep root | cut -f 1 -d ':' | tr '\n' ',')""tty-allow" root
|
|
|
|
arch-chroot /mnt /bin/bash -c 'line="$(grep -E root"[[:space:]]"ALL /etc/sudoers)"; sed -i "s/$line/$line\ndepriv ALL=(ALL) ALL/" /etc/sudoers'
|
2017-03-29 17:45:16 -05:00
|
|
|
|
2016-11-16 16:23:52 -06:00
|
|
|
# Handle AUR Packages
|
|
|
|
|
2018-02-14 03:20:12 -06:00
|
|
|
if [ ! -z "$kali" ]; then
|
2016-11-16 16:23:52 -06:00
|
|
|
arch-chroot /mnt git -C /usr/local/src/ clone https://aur.archlinux.org/autopsy.git
|
|
|
|
fi
|
|
|
|
|
2017-10-26 01:11:53 -05:00
|
|
|
# Optimizations from https://wiki.archlinux.org/index.php/Power_management
|
2018-02-14 03:20:12 -06:00
|
|
|
if [ ! -z "$powersave" ]; then
|
2017-10-26 01:11:53 -05:00
|
|
|
if [ `lspci | grep -i intel | grep -ic audio` -eq 1 ]; then
|
|
|
|
echo 'options snd_hda_intel power_save=1' > /mnt/etc/modprobe.d/audio_powersave.conf
|
|
|
|
else
|
|
|
|
echo 'options snd_ac97_codec power_save=1' > /mnt/etc/modprobe.d/audio_powersave.conf
|
|
|
|
fi
|
|
|
|
arch-chroot /mnt pacman -S rfkill cpupower --noconfirm
|
|
|
|
arch-chroot /mnt systemctl enable rfkill-block@.service
|
|
|
|
echo 'kernel.nmi_watchdog = 0' > /mnt/etc/sysctl.d/disable_watchdog.conf
|
|
|
|
echo 'vm.dirty_writeback_centisecs = 6000' > /mnt/etc/sysctl.d/dirty_writes.conf
|
|
|
|
echo 'vm.laptop_mode = 5' > /mnt/etc/sysctl.d/laptop.conf
|
|
|
|
echo 'ACTION=="add", SUBSYSTEM=="net", KERNEL=="wlan*", RUN+="/usr/bin/iw dev %k set power_save on"' > /mnt/etc/udev/rules.d/70-wifi-powersave.rules
|
|
|
|
echo 'blacklist uvcvideo' > /mnt/etc/modprobe.d/no-camera.conf
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Thanks to https://wiki.archlinux.org/index.php/Professional_audio
|
2018-02-14 03:20:12 -06:00
|
|
|
if [ ! -z "$audio" ]; then
|
2017-10-26 01:11:53 -05:00
|
|
|
sed -i 's#GRUB_CMDLINE_LINUX_DEFAULT="#GRUB_CMDLINE_LINUX_DEFAULT="threadirqs #' /mnt/etc/default/grub
|
|
|
|
arch-chroot /mnt grub-mkconfig -o /boot/grub/grub.cfg
|
|
|
|
printf 'vm.swappiness = 10\nfs.inotify.max_user_watches = 524288\n' > /mnt/etc/sysctl.d/99-audio-tuning.conf
|
|
|
|
setpci -v -d *:* latency_timer=b0
|
|
|
|
for SOUND_CARD_PCI_ID in `lspci | grep -i audio | cut -f 1 -d ' '`; do
|
|
|
|
setpci -v -s $SOUND_CARD_PCI_ID latency_timer=ff;
|
|
|
|
done
|
|
|
|
printf 'echo 2048 > /sys/class/rtc/rtc0/max_user_freq\necho 2048 > /proc/sys/dev/hpet/max-user-freq\n' >> /mnt/etc/rc.local
|
|
|
|
fi
|
|
|
|
|
2016-08-04 12:30:21 -05:00
|
|
|
# Set password
|
2016-11-16 16:23:52 -06:00
|
|
|
header Set new root passphrase and depriviledged user '(depriv)' password.
|
2016-08-04 12:30:21 -05:00
|
|
|
arch-chroot /mnt passwd
|
2016-11-16 16:23:52 -06:00
|
|
|
arch-chroot /mnt passwd depriv
|
|
|
|
arch-chroot /mnt chown -R depriv:depriv /usr/local/src/
|
2016-08-04 12:30:21 -05:00
|
|
|
|
2017-03-29 17:45:16 -05:00
|
|
|
# Set SSH host keys
|
|
|
|
arch-chroot /mnt ssh-keygen -A
|
|
|
|
|
2017-07-27 15:30:48 -05:00
|
|
|
cp /root/shadowarch /mnt/root/shadowarch.installer."$(date +%F-%R)"
|
2016-08-30 14:20:55 -05:00
|
|
|
|
2018-02-14 03:20:12 -06:00
|
|
|
if [ ! -z "$gui" ]; then
|
2016-08-30 14:20:55 -05:00
|
|
|
echo "Remember to install your graphics drivers!
|
|
|
|
For NVidia, look at xf86-video-nouveau
|
|
|
|
For AMD, look at xf86-video-amdgpu
|
|
|
|
For Hyper-V, look at xf86-video-fbdev
|
|
|
|
For Virtual Box, look at virtualbox-guest-utils
|
|
|
|
For VMware, look at open-vm-tools"
|
|
|
|
fi
|
|
|
|
|
2017-03-29 17:45:16 -05:00
|
|
|
# Set hostname
|
|
|
|
header Set hostname
|
2020-06-15 17:14:56 -05:00
|
|
|
printf "What is your fully-qualified hostname? (i.e. host.site.example.com) "
|
2017-03-29 17:45:16 -05:00
|
|
|
read hostname
|
|
|
|
echo "$hostname" > /mnt/etc/hostname
|
2019-05-17 17:53:31 -05:00
|
|
|
hostname "$hostname"
|
2017-03-29 17:45:16 -05:00
|
|
|
|
2020-06-15 17:14:56 -05:00
|
|
|
header "Installed ShadowArch on $HOSTNAME!"
|
2018-02-14 03:20:12 -06:00
|
|
|
if [ ! -z "$nodiskbuild" ]; then
|
2016-11-16 16:23:52 -06:00
|
|
|
header Remember to run grub-install and set up your bootloader.
|
|
|
|
echo 'https://wiki.archlinux.org/index.php/Installation_guide#Boot_loader'
|
|
|
|
else
|
2016-11-29 15:00:15 -06:00
|
|
|
header Press enter to reboot.
|
|
|
|
read
|
2016-08-04 12:30:21 -05:00
|
|
|
|
2016-11-29 15:00:15 -06:00
|
|
|
# Reboot
|
|
|
|
shutdown -r now
|
2016-11-16 16:23:52 -06:00
|
|
|
fi
|