This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
install_package [2015/06/05 13:11] – pavroo | install_package [2021/05/04 13:24] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 4: | Line 4: | ||
This quick guide lets you find and install new packages via a text console. | This quick guide lets you find and install new packages via a text console. | ||
- | Every command has to be run with root privileges | + | Every command has to be run with super user privileges **sudo**. |
- | 1. Find a package: | + | **1**. Find a package: |
- | | + | sudo apt-cache search package-name |
- | 2. Check is a package installed and find its version: | + | **2**. Check if a package |
- | | + | sudo apt-cache policy package-name |
- | 3. Install a package (packages): | + | **3**. Install a package (packages): |
- | | + | sudo apt-get install package1 package2 package3 |
- | 4. Downloaded a "deb" package from the network can be installed using **dpkg** tool: | + | **4**. "Deb" package |
- | cd /patch-to-download-directory | + | cd /path/to/download/directory |
- | dpkg -i package1.deb package2.deb package3.deb | + | sudo dpkg -i package1.deb package2.deb package3.deb |
- | If the package (packages) needs extra dependencies, | + | If the package(s) need extra dependencies, |
- | | + | sudo apt-get update |
+ | | ||
- | List of all packages installed | + | List of all packages installed |
- | dpkg -l | + | sudo dpkg -l |
or | or | ||
- | | + | sudo dpkg-query -l |
---- | ---- | ||
- | <WRAP center box 52%> | + | <WRAP center box 75%> |
- | [[upgrade|< | + | |[[upgrade|< |
</ | </ |