52 lines
816 B
Plaintext
52 lines
816 B
Plaintext
[Verify Boot mode]
|
|
cat /sys/firmware/efi/fw_platform_size
|
|
|
|
[Set Wi-Fi]
|
|
iwctl
|
|
device "name" list
|
|
device "name" scan
|
|
station "name"
|
|
|
|
[Make Partitions]
|
|
lsblk
|
|
fdisk
|
|
|
|
[Format partitions]
|
|
mkfs.ext4 /dev/root_partition
|
|
mkfs.fat -F 32 /dev/efi_system_partition
|
|
|
|
[Mount points]
|
|
mount /dev/root_partition /mnt
|
|
mount --mkdir /dev/efi_system_partition /mnt/boot
|
|
|
|
[Set timezone / location]
|
|
arch-chroot /mnt
|
|
ln -sf /usr/share/zoneinfo/Region/City /etc/localtime
|
|
hwclock --systohc
|
|
nano /etc/locale-gen
|
|
nano /etc/locale.conf
|
|
LANG=en_US.UTF=8
|
|
|
|
[Change hostname]
|
|
nano /etc/hostname
|
|
hostname
|
|
|
|
[Initramfs]
|
|
mkinitcpio -P
|
|
|
|
[Set language]
|
|
|
|
[Set user]
|
|
#Root paassword
|
|
paasswd
|
|
|
|
[Boatloader]
|
|
https://wiki.archlinux.org/title/GRUB
|
|
|
|
[Packages]
|
|
|
|
[Nvidia]
|
|
Install nvidia-open-dkms nvidia-utils
|
|
nano /etc/mkinitcpio.conf # Remove kms
|
|
[Hyprland]
|