Answers for "arch linux fresh install"

1

arch linux pacman cannot install

# You may have to update the package database.
sudo pacman -Syu
Posted by: Guest on September-16-2021
0

how to install linux headers on arch

# For latest kernel
sudo pacman -S linux-headers

# For linux lts
sudo pacman -S linux-lts-headers
Posted by: Guest on September-21-2021
0

how to install any software in arch linux with packman

sudo pacman -Syu (equivalent to apt update and upgrade)
sudo pacman -Syu (equivalent to apt update)
sudo pacman -S package-name (equivalent to sudo apt install)
sudo pacman -R package-name ( equivalent to sudo apt remove)
sudo pacman -Rnsc package-name ( equivalent to remove but it also removes the dependencies that are no longer required)
Posted by: Guest on August-27-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language