Last active
January 10, 2022 08:55
-
-
Save mw866/993bf5e1e5598b9ed3af068a42bbb6fe to your computer and use it in GitHub Desktop.
#linux #debian #ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://www.debian.org/doc/manuals/debian-faq/pkgtools.en.html#whatpackages | |
#install .deb | |
sudo dpkg -i file.deb | |
sudo apt-get install file.deb | |
#view content of a package | |
dpkg -c file.deb | |
# extract pacakge | |
dpkg -x somefile.deb somefolder | |
# show package | |
apt-cache show debtags | |
# check information of the package including depedencies | |
dpkg -I file.deb | |
# Get the contorl files | |
dpkg --control file.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment