HOW TO LIST INSTALLED SOFTWARES
The apt tool on Ubuntu 14.04 and above makes this very easy.
apt list --installed
Older 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 postgres
To save that list to a text file called packages on your desktop do this in your terminal:
dpkg --get-selections | grep -v deinstall > ~/Desktop/packages
Alternatively, simply use
dpkg -l
List installed hardware drivers.
lshw -html > system.html && xdg-open ./system.html
List 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 simple
PROBLEM: 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-plugins
sudo 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