mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-01 05:21:06 +01:00
8 lines
198 B
Plaintext
8 lines
198 B
Plaintext
# 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
|