Update install.sh, install.md, arch.conf

This commit is contained in:
proledatarian 2022-02-13 00:56:04 +00:00
parent 695b833d13
commit 78bdc8e635
3 changed files with 30 additions and 3 deletions

View File

@ -12,7 +12,7 @@ linux /vmlinuz-linux
initrd /initramfs-linux.img initrd /initramfs-linux.img
# Change to the correct device like /dev/sda2. # Change to the correct device like /dev/sda2.
options cryptdevice=/dev/nvme0n1p2:main:allow-discards options cryptdevice=/dev/vda2:lvm:allow-discards
# Change to correct LVM device. # Change to correct LVM device.
options root=/dev/mapper/main-root rw options root=/dev/mapper/main-root rw

View File

@ -126,7 +126,7 @@ $ passwd
$ bootctl install $ bootctl install
**Create the bootloader config.** **Create the bootloader config.**
$ nano /bootloader/entries/arch.conf $ nano /boot/loader/entries/arch.conf
**Add the following:** **Add the following:**
``` ```

View File

@ -11,7 +11,6 @@ echo "Done."
# Installing base system. # Installing base system.
echo "Installing basic packages.." echo "Installing basic packages.."
echo -e echo -e
pacstrap /mnt base base-devel firefox konsole linux linux-firmware linux-zen lvm2 networkmanager nano plasma-desktop sddm sddm-kcm &&
echo -e echo -e
echo "Base system installed." echo "Base system installed."
echo -e echo -e
@ -64,3 +63,31 @@ echo "Done."
echo "Setting root password:" echo "Setting root password:"
arch-chroot /mnt passwd arch-chroot /mnt passwd
arch-chroot /mnt bootctl install
cp ./arch.conf /mnt/boot/loader/entries
cp ./arch-fallback.conf /mnt/boot/loader/entries
echo "timeout 1" >> /mnt/boot/loader/loader.conf
echo "default arch.conf" >> /mnt/boot/loader/loader.conf
localectl --no-convert set-keymap de-latin1-nodeadkeys
echo "Username?"
read user
useradd -m $user &&
passwd $user &&
gpasswd -a $user wheel
sed -i '82s/.*/%wheel ALL=(ALL) ALL/' /mnt/etc/sudoers
mkdir /mnt/etc/sddm.conf.d
echo "[Autologin]" >> /mnt/etc/sddm.conf.d/autologin.conf
echo "User=hans" >> /mnt/etc/sddm.conf.d/autologin.conf
echo "Session=plasma" >> /mnt/etc/sddm.conf.d/autologin.conf
umount /mnt/boot
umount /mnt/home
reboot