HOW TO LIST INSTALLED SOFTWARES
The apt tool on Ubuntu 14.04 and above makes this very easy.
apt list --installedOlder Versions
To get a list of packages installed locally do this in your terminal:
dpkg --get-selections | grep -v deinstall(The -v tag "inverts" grep to return non-matching lines)
To get a list of a specific package installed:
dpkg --get-selections | grep postgresTo save that list to a text file called packages on your desktop do this in your terminal:
dpkg --get-selections | grep -v deinstall > ~/Desktop/packagesAlternatively, simply use
dpkg -lList installed hardware drivers.
lshw -html > system.html && xdg-open ./system.htmlList modules being used
lsmod-------------------------------------------------------------------------------
Animated flashy graphics effects: http://www.howtogeek.com/167674/how-to-enable-and-tweak-ubuntus-flashy-graphical-effects/
sudo apt-get install compizconfig-settings-manager compiz-plugins-extra#start compiz settings by typing/searching compiz after hitting super key. settings steps are simplePROBLEM: post configuration shortcuts in eclipse and other were affected. tried disabling compiz by unchecking all option in compiz settings screen, and landed in dead system[ui not working. lightdm service non functional. other users were able to login normally and work]
Soln: http://askubuntu.com/questions/435789/how-to-re-enable-opengl
#get into CLI by hitting Ctrl + Alt + F1 and back to UI by Ctrl + Alt + F7.dconf reset /org/compiz/profiles/unity/plugins/core/active-pluginssudo service lightdm restart-------------------------------------------------------------------------------
SKYPE: downloaded .deb file from link:http://www.skype.com/en/download-skype/skype-for-linux/
sudo dpkg -i skype-ubuntu-precise_4.3.0.37-1_i386.deb