1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| 127.0.0.1 localhost
::1 localhost
127.0.1.1 myhostname.localdomain myhostname
pacman -S linux-firmware intel-ucode grub efibootmgr os-prober
# pacman -S dialog
# pacman -S linux-lts
mkinitcpio -p linux
passwd
grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=archlinux
grub-mkconfig -o /boot/grub/grub.cfg
# pacman -S gdm gnome gnome-extra
pacman -S kde-applications plasma plasma-wayland-session sddm
systemctl enable sddm
systemctl enable NetworkManager
useradd -U maghsk -m
sudo gpasswd -a maghsk input
sudo gpasswd -a maghsk wheel
sudo gpasswd -a maghsk bumblebee
exit
umount /mnt/boot
umount /mnt
reboot
|