--------------------------------------
-----------------------------------------
-----------------------------------------
-----------------------------------------
-----------------------------------------
-----------------------------------------
-----------------------------------------
-----------------------------------------
-----------------------------------------
-------------------
-----------------------
To install Arch Linux, use the following code. This will include installation of a GUI, which, by default, is not enabled in Arch.
Before installing, make sure that you can access your BIOS and that you have an Arch installer drive.
All of the bolded text is the code required to install Arch Linux.
fdisk -l
fdisk /dev/-name of disk (which will be called mmcblk with a number at the end.)-
d
)
w
t
to change it.
1
to change it to an "EFI system" partition."
w
to write the changes.
q
.
mmcblk
for your memory. Enter the command:
mkfs.fat -F32 /dev/mmcblk#p1
mkfs.ext4 /dev/mmcblk#p2
The command that you enter next will enter the Arch Linux IWD (iNet Wireless Daemon) menu
iwctl
device list
WLAN0
station wlan0 connect name-of-your-network
q
ping google.com
ctrl+c
to cancel ping, and go back to the installation process.
pacman -Syy
pacman -S reflector
mount /dev/mmcblk#p2 /mnt
pacstrap /mnt base linux linux-firmware vim nsno
genfstab -U /mnt >> /mnt/etc/fstab
arch-chroot /mny
timedatectl list-timezones
timedatectl set-timezone America/Denver
locale-gen
echo user > /etc/hostname
touch /etc/hosts
touch /etc/host
passwd
pacman -S grub efibootmgr
mkdir /boot/efi
mount /dev/mmcblk#p1 /boot/efi
grub-install --target=x86_64-efi --bootloader-id=GRUB --efi-directory=/boot/efi
grub-mkconfig -o /boot/grub/grub.cfg
The following processes are not necessary. You could reboot now and you could run Arch Linux as a server. To install Arch Linux as a server, follow the next set of instructions. To install it as a graphical system, scroll down to the instructions below the server installation instructions.
useradd -m -g users -G wheel,storage,power -s /bin/bash USER_NAME
passwd USER_NAME
pacman -S sudo bash-completion
nano /etc/sudoers
%wheel ALL=(ALL) ALL
pacman -S openssh
systemctl enable sshd.service
pacman -S grub os-prober
exit
umount -R /mnt
reboot
ssh user-name@ip-of-server
Replace user-name with your username and ip-of-server with an IP address (ex 192.168.1.14)
pacman -S xorg gdm gnome cinnamon networkmanager systemd-networkd
systemctl enable gdm.service
systemctl enable networkmanager.service
systemctl enable systemd-networkd