- Connect to wifi:
wifi-menu
- Partition the disk:
- list all disks:
fdisk -l
- partition the disk:
gdisk /dev/disk_name
:
o
: clear all partitions,n
: create new partition,p
: list partitions,w
: save partitions,q
: quit- create 4 partitions each with their equivalent code for partition type,
boot
: EF00,system
: 8300,home
: 8300, andswap
: 8200
- list all disks:
- Format the partitions:
- boot partition:
mkfs.vfat /dev/boot_partition_name
- system and home partitions:
mkfs.ext4 /dev/system_partition_name && mkfs.ext4 /dev/home_partition_name
- boot partition:
- swap partition:
mkswap /dev/swap_partition_name && swapon /dev/swap_partition_name