User Tools

Site Tools


install_package

This is an old revision of the document!


Install new packages

This quick guide lets you find and install new packages via a text console.

Every command has to be run with root privileges su or sudo.

1. Find a package:

 apt-cache search package-name

2. Check is a package installed and find its version:

 apt-cache policy package-name

3. Install a package (packages):

 apt-get install package1 package2 package3

4. Downloaded a “deb” package from the network can be installed using dpkg tool:

 cd /patch-to-download-directory
 dpkg -i package1.deb package2.deb package3.deb

If the package (packages) needs extra dependencies, the installation can be broken. To fix it, run:

 apt-get install -f

List of all packages installed in your system can be generated via the command:

 dpkg -l

or

 dpkg-query -l

install_package.1433509913.txt.gz · Last modified: 2021/05/04 15:25 (external edit)