Skip to content

Instantly share code, notes, and snippets.

@shiveshabhishek
Last active July 14, 2018 05:26
Show Gist options
  • Save shiveshabhishek/80b39367f43e514059a1bef5c2ce9efa to your computer and use it in GitHub Desktop.
Save shiveshabhishek/80b39367f43e514059a1bef5c2ce9efa to your computer and use it in GitHub Desktop.
DEB file install

If you have a .deb file and you want to install it in your Ubuntu Machine, just run the commands:

sudo dpkg -i /path/to/file/

After this, if you get any error like : Errors were encountered while processing: FILE just do

sudo apt-get install -f

The above command tries to fix this broken package by installing the missing dependency.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment