background
loading scroll to btns
Back To Home
listicle
2 min readAugust 15, 2023

🐚 todos after installing arch

arch
linux
operating systems
  1. Update the System
sudo pacman -Syu
  1. install your necessary packages

install the necessary packages based on your usage

sudo pacman -S git vim
sudo pacman -S p7zip unrar tar rsync git neofetch htop exfat-utils fuse-exfat ntfs-3g flac jasper aria2
  1. Configure PacMan and mirrors
# uncomment the following
  # - Color
  # - ParallelDownloads
  # - ILoveCandy
sudo vim /etc/pacman.conf
# sudo pacman -Sy
sudo pacman -Sy
# update the mirror list
# install reflector
sudo pacman -S reflector
# create a backup file of the default mirror list.
sudo cp /etc/pacman.d/mirrorlist /etc/pacman.d/mirrorlist.bak
# fetch the top 10 fastest servers and add them to the mirror list.
sudo reflector --verbose --latest 10 --protocol https --sort rate --save /etc/pacman.d/mirrorlist
# update the pacman
sudo pacman -Sy
  1. updating cpu
# install the microcode updates to ensure system stability.
sudo pacman -S intel-ucode # for intel
sudo pacman -S amd-ucode # for amd
# update grub
sudo grub-mkconfig -o /boot/grub/grub.cfg
  1. Install Aur Helper and flatbak

Yay is a popular aur helper, which simplifies the process of installing and managing packages from AUR.

# install yay aur helper's dependencies
sudo pacman -S --needed base-devel git
# clone the github repo
git clone https://aur.archlinux.org/yay.git
# navigate to the yay directory
cd yay
# install yay
makepkg -si

flatbak

sudo pacman -S flatpak # install faltbak
  1. Get additional kernels it’s a good idea to have multiple kernels installed as a safety precaution. If one kernel fails to boot, you can use another one to start the operating system.
sudo pacman -S linux-lts linux-lts-headers
  1. manage backups

Use Timeshift

yay -Sy timeshift

Resources

10 Things To Do After Installing Arch Linux 2023 ‣ KSKRoyal

Comments