List of packages included in Aserdev-OS .
To install a package, use the following command:
install package_name
or use the normal way
sudo pacman -S package_name
To remove a package, use the following command:
sudo pacman -R package_name
to update your os, use the following command:
update
or use the normal way
sudo pacman -Syu
to use aur, you can use yay.
yay -S package_name
To remove a package, use the following command:
yay -R package_name
to update your aur packages, use the following command:
yay -Syu
you can also use git and makepkg to install aur packages manually.
this method is useful if you need to customize the package before installation.
git clone https://aur.archlinux.org/package_name.git && cd package_name && makepkg -si
if you don't like yay, you can install paru
git clone https://aur.archlinux.org/paru.git && cd paru && makepkg -si