You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- `iwctl`
- `device list`
- ` station wlan0 scan`
- ` station wlan0 get-networks`
- ` station wlan0 connect WIFI_NAME`
- `exit`
- `ip addr`
- `ping archlinux.org`
Partition disk
- `lsblk`
- Here, `DISK` stands for the main disk
- `cfdisk /dev/DISK`
- Delete everything and make three partitions:
- 300M for boot
- 512M for swap
- Rest for /
- Write, then type yes
- `mkfs.ext4 /dev/DISKp3`
- `mkfs.fat -F 32 /dev/DISKp1`
- `mkswap /dev/DISKp2`
- `mount /dev/DISKp3 /mnt`
- `mkdir -p /mnt/boot/efi`
- `mount /dev/DISKp1 /mnt/boot/efi`
- `swapon /dev/DISKp2`
Base packages
- `pacstrap /mnt linux linux-firmware base base-devel grub efibootmgr networkmanager xterm neovim git`
- If pgp error, run `pacman -Sy archlinux-keyring` and retry