How to install/uninstall .deb file using dpkg a close look
1. Howto install a .deb file $ sudo dpkg -i package_file.deb 2. Hoto uninstall a .deb file $ sudo dpkg -r package_name 3. Howto find version of a package installed $ dpkg -l packagename 4. Howto List all installed files with version $ dpkg -l 5. Howto convert .rpm files to .deb files $ sudo
How to uninstall or remove old kernels in Ubuntu
Ubuntu always keeps the old kernel even after installing a new kernel. This is done just in case the new one doesn’t work well for you. Now if you don’t want the old kernels anymore then use the command below to remove the old kernel which you wish to remove. $ sudo apt-get remove –purge
Read More