How to install .deb file in Ubuntu?
sudo dpkg -i package_file.deb
To uninstall a .deb file
sudo apt-get remove package_name
Sometime if there is some dependncy error then you have to use the following command
sudo apt --fix-broken install
sudo dpkg -i package_file.deb
To uninstall a .deb file
sudo apt-get remove package_name
Sometime if there is some dependncy error then you have to use the following command
sudo apt --fix-broken install