Skip to content

Instantly share code, notes, and snippets.

@djleonskennedy
Last active August 29, 2015 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save djleonskennedy/8ec5c7dad95142402328 to your computer and use it in GitHub Desktop.
Save djleonskennedy/8ec5c7dad95142402328 to your computer and use it in GitHub Desktop.
ubuntu start optimizer
Enable ctrl-alt-backspace to kill xserver
sudo apt-get install gnome-tweak-tool
to launch type:
gnome-tweak-tool
Install pipelight so silverlight works
sudo apt-add-repository ppa:pipelight/stable
sudo apt-get update
sudo apt-get install pipelight-multi
Enable silverlight plugin
sudo pipelight-plugin --enable silverlight
Enable widevine plugin
sudo pipelight-plugin --enable widevine
To get flash woking in chromium (chrome pepperflash)
sudo apt-get install pepperflashplugin-nonfree
sudo update-pepperflashplugin-nonfree --install
Install restricted extras
sudo apt-get install ubuntu-restricted-extras
Install unrestricted version of libavcodec for encoding and decoding
sudo apt-get install libavcodec-extra
Install Java runtime env and web plugin
sudo apt-get install icedtea-7-plugin openjdk-7-jre
Java developement kit
sudo apt-get install openjdk-7-jdk
* Show Hidden Startup Apps:
sudo sed -i "s/NoDisplay=true/NoDisplay=false/g­" /etc/xdg/autostart/*.desktop
* Install Preload from Software Center
* Change Swappiness Value
1. Run terminal
2. Enter following line to see current swappiness value
cat /proc/sys/vm/swappiness
(default value in Ubuntu for swappiness is 60)
3. Open file /etc/sysctl.conf in a text editor, I did
gedit /etc/sysctl.conf
4. nter the following parameter
# Decrease swappiness value
vm.swappiness=10
5. Save the file and restart the computer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment