mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-18 09:50:44 +01:00
7 lines
198 B
Text
7 lines
198 B
Text
# Extract contents of a .deb file
|
|
$ ar vx foo.deb # -> data.tar.gz
|
|
$ tar xf data.tar.gz
|
|
|
|
# Install .deb file to a debian like system, e.g. ubuntu
|
|
$ sudo dpkg -i foo.deb
|
|
$ sudo apt-get install -f
|