Install Packages
đĻ How to Install a Package on Snigdha OSâ
Installing packages on Snigdha OS primarily involves using the Pacman package manager or an AUR helper for community-contributed software. Here's a step-by-step guide:
đ ī¸ Step 1: Update Your Systemâ
Before installing a package, ensure your system is up-to-date to avoid dependency issues:
sudo pacman -Syu
đ Step 2: Search for a Packageâ
To find the package you want to install, use the following command:
pacman -Ss package-name
Example:â
Search for the Firefox browser:
pacman -Ss firefox
This command displays available packages with "firefox" in their name or description.
â Step 3: Install the Packageâ
Once you know the exact package name, install it using:
sudo pacman -S package-name
Example:â
Install Firefox:
sudo pacman -S firefox
đĻ Step 4: Verify Installationâ
To check if a package is installed:
pacman -Q package-name
Example:â
Verify Firefox installation:
pacman -Q firefox
đ Step 5: Explore Package Detailsâ
View information about an installed package:
pacman -Qi package-name
Example:â
pacman -Qi firefox
đ Installing AUR Packagesâ
If the package you want is not in the official repositories but is available in the Arch User Repository (AUR), use an AUR helper like yay or paru.
Install a Package from AURâ
yay -S package-name
Example:â
Install Google Chrome from AUR:
yay -S google-chrome