Installing deb package with dependencies
Oftenly,
sudo dpkg -i package_file.deb
fails with messages like dependency not satisfied.
To fix this, there are two ways:
sudo dpkg -i package_file.deb && sudo apt-get -f install
sudo dpkg -i --force-depends package_file.deb
Obviously, the second one is shorter =)