Debian package management: Difference between revisions
Jump to navigation
Jump to search
imported>Johayek (...) |
imported>Johayek m (...) |
||
Line 31: | Line 31: | ||
: # ... | : # ... | ||
: $ ... | : $ ... | ||
== rpm2deb == | |||
-> http://Jochen.Hayek.name/wp/blog-en/2018/04/13/rpm2deb/ | |||
[[Category:ToBeExported]] | [[Category:ToBeExported]] |
Revision as of 15:04, 13 April 2018
- # the Debian APT = Advanced Packaging Tool
- # update and upgrade
- $ sudo apt-get update # update is used to resynchronize the package index files from their sources
- $ sudo apt-get upgrade # upgrade is used to install the newest versions of all packages currently installed on the system from the sources enumerated in /etc/apt/sources.list
dealing with packages files (.deb)
- # which files are included? will be created from this package file?
- $ ...
- # what's the official package name?
- $ ...
- # what's the content of this package file?
- $ ...
- # ...
- $ ...
dealing with installed packages
- # which packages are installed (together with details)?
- $ ... --list
- # details of an installed package
- $ ... --list PACKAGE
- # what's the content of an installed package?
- $ ... --listfiles ...
- # ...
- $ ...