-
Notifications
You must be signed in to change notification settings - Fork 1
Arch Linux post installation
We need to start by downloading some basic utility programs ( git and VS-Code ).
sudo pacman -S git code
We will use yay
git clone https://aur.archlinux.org/yay.git
cd yay
makepkg -si
To install a package using yay use:
yay -S <package_name>
Note: Yay uses similar syntax as that of pacman.
yay -S nvm
and follow the docs to activate the nvm command from terminal.
Note: The package itself is installed in root directory, while the modules and nodejs are install in home.
sudo pacman -S python2-pip python-pip
sudo pacman -S gdb
This will be used by VS Code while debugging C++ code
sudo pacman -S aria2 wget
sudo pacman -S xdg-user-dirs
and then run
xdg-user-dirs-update
This wiki contains all the steps to install a basic arch (no UI) installation. Steps to install a WM and setup appropriate drivers follow.