Skip to content

Instantly share code, notes, and snippets.

@mw866
Last active January 10, 2022 08:55
Show Gist options
  • Save mw866/993bf5e1e5598b9ed3af068a42bbb6fe to your computer and use it in GitHub Desktop.
Save mw866/993bf5e1e5598b9ed3af068a42bbb6fe to your computer and use it in GitHub Desktop.
#linux #debian #ubuntu
# 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