A vanilla Arch Linux installation gives you your base operating system with no utilities, allowing you to choose what you want your Operating System to behave like. This allows the user to have complete access over their operating system.
A vanilla installation leaves you with nothing more than just a black screen which is for you to customize. In this module, we’ll be walking through the essential things to do after installing Arch Linux.
First things first, update the system with the pacman command:
Now we can go ahead and install packages and other application on our system!
To get a GUI environment, first we need to install a Display Server. The go-to option is to install xorg, which is one of the oldest and the most popular display servers out there.
Next up, we would need a Desktop Environment for our distro. Popular choices include:
To install Xfce4:
To install KDE Plasma:
To install Gnome:
To install Cinnamon:
To install MATE:
Next up, we would need a Display Manager which would enable us to login to our Desktop Environments. The popular choices are :
To install LightDM:
Enable lightdm with:
To install LXDM:
Enable LXDM with:
To install SDDM:
Enable SDDM with:
One of the main reasons is the Arch User Repository (AUR) which has a vast array of packages and application. However, we cannot fetch these packages directly using pacman. To fetch packages from AUR we need special programs called AUR Helpers. There are many such helpers available but the one we recommend is paru.
To install Paru:
Now we can fetch packages from AUR with:
It is considered good practice to have multiple kernels at your disposal, just in case the main kernel runs into any issues.
The popular kernels apart from the mainline Linux Kernel are :
To install the LTS kernel:
To install the Hardened kernel:
To install the Zen kernel:
Processor manufacturers release stability and security updates to the processor microcode. These updates provide bug fixes that can be critical to the stability of your system. Without them, you may experience spurious crashes or unexpected system halts that can be difficult to track down. It is recommended to install it after Arch install just for the sake of stability.
For Intel Processors:
For AMD Processors:
In order to have faster updates, you can rank your mirrors according to their speed. To do so, first backup your current mirrorlist.
Next up, to rank all mirrors based on their speed with:
Thus in this module we covered the essential things to be done after an Arch install. There’s still a lot to do, especially regarding the installation of essentials but we would leave that to the reader as to what applications they want to work with !
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.
Thank you for a very helpful guide into the world of Arch :)
- Kartikey Chauhan