Install Arch Linux with Openbox + Luks Disk Encryption + UEFI
Disk cfdisk /dev/sda Create 3 disk partitions: EFI System - 100M boot - 512M root - rest of the disk space LUKS encryption modprobe dm-crypt modprobe dm-mod cryptsetup luksFormat -v -s 512 -h sha512 /dev/sda3 cryptsetup open /dev/sda3 sda3_crypt Disks formatting mkfs.vfat /dev/sda1 mkfs.ext4 /dev/sda2 mkfs.ext4 /dev/mapper/sda3_crypt Disks mounting mount /dev/mapper/sda3_crypt /mnt mkdir /mnt/boot mount /dev/sda2 /mnt/boot mkdir /mnt/boot/efi mount /dev/sda1 /mnt/boot/efi Install Arch pacstrap -K /mnt base linux linux-firmware genfstab -U /mnt >> /mnt/etc/fstab arch-chroot /mnt Timezone ln -sf /usr/share/zoneinfo/Region/City /etc/localtime Set locale pacman -S vim Uncomment en_US.UTF-8 UTF-8 in the file /etc/locale.gen ...