10 Things to Do After Installing Arch Linux (2023)

I assume you have installed Arch Linux with a bare minimum graphical desktop environment as I showed in my previous post. This post describes 10 essential things to do after minimal installation of Arch Linux with a graphical desktop

1. Configure pacman

We will start with the heart of Arch Linux – pacman – the package manager. By default, pacman displays everything in black and white. We gonna change that there is some color in the pacman’s output.

pacman in color

Open the pacman configuration file:

sudo nano /etc/pacman.conf

Uncomment Color to make the output colorful. If you want more fun, you can also add IloveCandy in the config file right after the color option.

If you have a good Internet connection, you can also uncomment ParallelDownloads, so pacman will download several packages simultaneously (5 by default). This will save you time when you update your system and with Arch Linux you gonna do it very often.

pacman configuration

After you have done all the changes in the /etc/pacman.conf press Ctrl+O then Enter to save and Ctrl+X to exit.

2. Make bash colorful

Since we started adding some color, let’s make everything colorful in the terminal and thus more appealing. I have a dedicated post where I share how I configured my BASH colors.

BASH in color

I will skip the details on how you can customize the color scheme of your BASH. To copy my color scheme, just download my configuration files.

Download BASH color configs

Unzip them. You may need to install unzip command before.

sudo pacman -S unzip
unzip Linux_terminal_color.zip

There are three files in the archive. Move them to your system folders as follows:

sudo mv bash.bashrc /etc/bash.bashrc
sudo mv DIR_COLORS /etc/
mv .bashrc ~/.bashrc

Close and open the terminal. Now, bash looks much better, doesn’t it?

3. Automatic cleaning the package cache

As I said earlier, you gonna download updates very often and quite soon you will discover that your package cache directory is unacceptably large. For example, my package cache folder exceeded 1G after 2 weeks already.

Check the size of your package cache:

du -sh /var/cache/pacman/pkg/

You can clean it manually from time to time, but it is better to automate such a thing. That is possible with the paccache script that will clean it weekly by removing old packages and keeping 3 the most recent version of each package in case you need to downgrade some packages.

paccache is a part of pacman contributed scripts, so install them:

sudo pacman -S pacman-contrib

And activate the paccache timer:

sudo systemctl enable paccache.timer

Now, paccache will check your package cache directory and clean it if necessary every week.

There are also other more efficient ways to run it. For example, you can run paccache automatically after every system update, but it requires setting up a hook. I think weekly cleaning is fine for a new Arch Linux user.

4. Install AUR helper

The Arch User Repository (AUR) is a community-driven repository of Arch Linux. Right now it contains more than 80 000 packages. If a package exists for Linux but it is not present in the official Arch repository, you will always find it in the AUR.

To install an AUR package, you need to compile it. I explained how to compile and install a program from the AUR. However, most Arch users prefer to use AUR helpers that automate the compilation process and make it easier to interact with the AUR repository.

I prefer to use yay helper. Let’s install it.

sudo pacman -S --needed base-devel git
mkdir Programs
cd Programs
git clone https://aur.archlinux.org/yay.git
cd yay
makepkg -si

After you have got yay, you can install any package from the AUR. For example, if you need Zoom for video conferencing. Run:

yay zoom

You can see that it is listed under the number 2. Press 2 and follow the instructions and install it.

yay install zoom

In a moment, you will have Zoom installed on your Arch Linux.

5. Create user directory folders

After the Arch Linux installation, you have no familiar user directories such as Documents, Pictures, Videos etc. You can create them manually, but there is an easier way.

Just install xdg-user-dirs:

sudo pacman -S xdg-user-dirs

Then run:

xdg-user-dirs-update

Now, all the user directory folders are created.

6. Install essential programs

Install desktop-independent essential packages such as fonts, spell-checking dictionaries, java, and others.

sudo pacman -S enchant mythes-en ttf-liberation hunspell-en_US ttf-bitstream-vera pkgstats adobe-source-sans-pro-fonts gst-plugins-good ttf-droid ttf-dejavu aspell-en icedtea-web gst-libav ttf-ubuntu-font-family ttf-anonymous-pro jre8-openjdk languagetool libmythes 

If you need an office suite, I recommend LibreOffice:

sudo pacman -S libreoffice-fresh

You can also install VLC as a video and audio player.

sudo pacman -S vlc

7. Install Microcode

Microcode is an essential part of your processor functionality. So, it must be secure and up-to-date. To acquire microcode updated you need to install microcode package.

Depending on the processor, install microcode

for AMD:

sudo pacman -S amd-ucode # for AMD processors, 

for Intel:

sudo pacman -Sintel-ucode

8. Disable GRUB delay

To speed up your boot process, you can disable the GRUB screen that shows GRUB menu with 5-sec countdown and start booting right away. If you ever need the GRUB menu, you can call it by holding the Esc key during boot.

To enable this functionality, first open the GRUB config:

sudo nano /etc/default/grub

Add set GRUB_TIMEOUT_STYLE=hidden.

To remind you use Ctrl+O to save and Ctrl+X to exit the nano editor.

Update the GRUB config:

sudo grub-mkconfig -o /boot/grub/grub.cfg

Reboot and your system will boot 5 second faster.

9. Set up firewall

I have a dedicated post on the Linux firewall where you can learn why and how to use the Linux firewall.

I usually recommend UFW uncomplicated firewall. Install it:

sudo pacman -S ufw

Enable:

sudo ufw enable

Check its status.

sudo ufw status verbose

It should be active and the default settings are fine for most users.

Enable its autostart with the system:

sudo systemctl enable ufw.service

And you have firewall protection.

10. Back up your system

Maybe it should have been the first thing to do after installing Arch Linux 😄. It is always good to have a backup of your system and files.

You can use some graphical programs to do a backup but since you are an Arch Linux user, I recommend learning rsync – that is a command line tool but it is super powerful.

Install rsync:

sudo pacman -S rsync

You can use this command to backup everything except for some not necessary files:

sudo rsync -aAXv --delete --dry-run --exclude=/dev/* --exclude=/proc/* --exclude=/sys/* --exclude=/tmp/* --exclude=/run/* --exclude=/mnt/* --exclude=/media/* --exclude="swapfile" --exclude="lost+found" --exclude=".cache" --exclude="Downloads" --exclude=".VirtualBoxVMs"--exclude=".ecryptfs" / /mnt/backup_destination/

I explained it in my previous post where I back up and restore the whole system with rsync. If you not only want to have a backup but also want to test it, follow that post. I also explain how to configure automatic backups in Linux

Bonus

If you do not like the default look of your Arch Linux desktop, you can customize it with different themes. I showed some of my favorite GNOME, Plasma, XFCE, Mate and Cinnamon themes previously. It will be your 11th thing to do after installing Arch Linux.

Brilliant

As you see knowing some programming can greatly improve your Linux experience.

Want to learn programming or better understand how computers work, Brilliant.org – the sponsor of this post – can help you get started.

You can start by learning Python - one of the most in-demand programming languages. I also highly recommend the course Algorithm Fundamentals that I am taking right now. It helps me to better understand how to make a computer do what I want. The hand-on approach makes learning fun and efficient.

Brilliant courses install zoom

Brilliant.org is the best way to learn math, science, and computer science interactively. There are thousands of courses and new courses are added every month.

Keep exploring at http://brilliant.org/AverageLinuxUser/. Get started for FREE, and hurry — the first 200 people get 20% off an annual premium subscription.

Average Linux User
Average Linux User I am the founder of the Average Linux User project, which is a hobby I work on at night. During the day I am a scientist who uses computers to analyze genetic data.
Learn how to write in Markdown with this Quick Reference.
Notify me of new comments on this post.
* E-mail is used to display Gravatar.