Installing deb package with dependencies
Often, the command
$ sudo dpkg -i package_file.deb
fails with messages like dependency not satisfied.
There are two ways to fix this:
sudo dpkg -i package_file.deb && sudo apt-get -f installsudo dpkg -i --force-depends package_file.deb
Obviously, the second one is better because it is shorter 😁