Post-Installation
Configure your Arch Linux system after installation: enable services, update mirrors, upgrade packages, and install essential tools.
Reboot and Post Installation
Exit Chroot and Unmount Filesystems
exit # exits chroot
umount -R /mnt # not mandatory but
Reboot the System
Run: reboot
and remove the installation media when prompted.
Then, Log in as your regular user.
Post Installation Tasks
After rebooting and logging in, it’s time to fine-tune your system configurations by enabling and starting essential services.
-
Enable Services
First, ensure that the network connection remains stable by enabling the NetworkManager service you configured earlier:
systemctl enable NetworkManager
-
Update the System
Once your connection is confirmed, update your package mirrors and upgrade the system by executing:
sudo pacman -Syyu
-
Install Utilities
Next, install some useful packages for further customization:
sudo pacman -S git base-devel python bat htop neofetch bluez
git
: A distributed version control system to track changes in your projects.base-devel
: A group of essential build tools (like gcc, make, etc.) for compiling software.python
: A versatile high-level programming language for scripting and development.bat
: A modern replacement for cat with syntax highlighting and Git integration.htop
: An interactive process viewer to monitor system performance in real time.neofetch
: A tool that displays system information in a visually appealing way.bluez
: The official Bluetooth protocol stack for Linux, enabling Bluetooth functionality.
-
Enable Command History Search
Enhance your terminal experience by enabling command history search.
Create a file named
.inputrc
in your home directory and open it with an editor:nano ~/.inputrc
Insert the following content:
"\e[A": history-search-backward "\e[B": history-search-forward
To apply the changes immediately, run:
bind -f ~/.inputrc
This configuration allows you to search through your command history using the up and down arrow keys.
Last updated 22 Feb 2025, 17:33 +0100 .