Home Linux DistributionsArch Linux Arch Linux Post Installation Steps

Arch Linux Post Installation Steps

By sk
Published: Last Updated on 8.2K views

In our previous tutorial, we discussed about Arch Linux 2016 installation. Today, In this tutorial, we will be discussing about what should one to do after Arch Linux fresh installation. You might want to install a Desktop environment, or you might want to install additional software which will help for your day-to-day activities, or you might, simply, want to explore the Arch Linux. Whatever it is, I tried my best to give you a basic post installation instructions for Arch Linux 2016. Read on.

1. Update your system

First things first. Whenever you install a new distribution, you must update it first. To do that, run the following command from the Terminal:

Note: In this tutorial, I will be running all commands as root user.

pacman -Syu

Arch Linux 2016 [Running] - Oracle VM VirtualBox_001

2. Configure Package manager

As you probably know, Arch Linux uses a package manager called Pacman. It is a official package manager for Arch Linux and Arch Linux based systems such as Archbang. Pacman's default settings should work just fine, however you need to enable [multilib] repository to install both 32 bit and 64 bit packages on your 64 bit bit Arch Linux.

To do so, edit pacman.conf file,

nano /etc/pacman.conf

Find and uncomment the following lines:

[...]
[multilib]
Include = /etc/pacman.d/mirrorlist

root@server:~_002

Save the file by pressing CTRL+O and exit by pressing CTRL+X.

It is always a good idea to keep an updated mirrorlist. This might be useful if you installed Arch Linux using a old installation media.

To do so, go to Pacman Mirrorlist Generator page and select your nearest mirror, for example India, and press Generate list. You must select your nearest mirror location.

Arch Linux - Pacman Mirrorlist Generator - Google Chrome_003

The new mirrorlist will be generated.

https:--www.archlinux.org-mirrorlist-?country=IN&protocol=http&ip_version=4 - Google Chrome_004

Then, copy the mirrorlist location and save it to /etc/pacman.d/mirrorlist file.

nano /etc/pacman.d/mirrorlist

Paste the lines at the top.

Server = http://mirror.cse.iitk.ac.in/archlinux/$repo/os/$arch
Server = http://ftp.iitm.ac.in/archlinux/$repo/os/$arch

root@server:~_006

Save and close the file by pressing CTRL+O followed by CTRL+X.

Then, update the update the package repositories list with command:

pacman -Syy

root@server:~_007

Here, --yy flag forces pacman to refresh all package lists even if they are already up to date. You must perform this command whenever you add a new mirror.

3. Create a normal user account

We have built-in root user to perform all administrative related tasks. It is pretty bad idea to use the root user for normal computing tasks.. So, let us create a normal user, for example sk.

To do so, run:

useradd -m -g users -G wheel,storage,power -s /bin/bash sk

Set the password to the new user:

passwd sk

Then, install sudo package to perform administrative tasks with normal user.

To install sudo package, run:

pacman -S sudo

Next, add the new user 'sk' to the sudoers group to perform administrative tasks.

To do so, run:

visudo

Find and uncomment the following line:

 %wheel ALL=(ALL) ALL

root@server:~_008

This means the new users that are belongs to Wheel group can perform administrative tasks using sudo command. Remember we have added the new user 'sk' to the Wheel group while we create him. So that the user 'sk' can perform administrative commands with prefix 'sudo'.

Save and close the file.

At this stage, your Arch Linux server is ready to use.

In our upcoming articles, we will see,

Thanks for stopping by!

Help us to help you:

Have a Good day!!

You May Also Like

Leave a Comment

* By using this form you agree with the storage and handling of your data by this website.

This site uses Akismet to reduce spam. Learn how your comment data is processed.

This website uses cookies to improve your experience. By using this site, we will assume that you're OK with it. Accept Read More