15

I use pacman in Arch Linux for installing packages.

  • The command for installing is pacman -S,

  • The command for a full system upgrade is pacman -Syu and

  • The command for repository update is pacman -Syy.

I want to know what is the equivalent for pacman in Ubuntu and its corresponding command.

Melebius
  • 11,750

2 Answers2

29

I have to refer you to this link from Arch Wiki which compares pacman commands with other package managers:

Arch            Debian/Ubuntu
pacman -[S|Q]i  apt show / apt-cache policy
pacman -Qi      dpkg -s / aptitude show
pacman -Si      apt-cache show / aptitude show
pacman -Ql      dpkg -L
pacman -Fl      apt-file list $pattern
pacman -Qo      dpkg -S / dlocate
pacman -Ql      dpkg-query -L
pacman -Fo      apt-file search
pacman -Fs      apt-file search
pacman -Qc      apt-get changelog

pacman -Ss      apt search
pacman -Qu      apt-get upgrade -> n
pacman -Sl      apt-cache dumpavail
...
...

A shot from page:

enter image description here

Ravexina
  • 57,256
5

Ubuntu is Debian based Linux distro. It uses the APT for package management.

Command for updating the repositories

sudo apt update

Command for updating the system packages

sudo apt upgrade

Command for installation of package

sudo apt install <package_name>
AmeyaVS
  • 596
  • 5
  • 15