Note: This article was written when Ubuntu 13.04 was released. But many of the tweaks apply to Ubuntu 14.04 (Trusty Tahr) as well.
Boost the performance of Ubuntu 13.04 and later releases.
Now that you have installed the latest from Canonical: Ubuntu Raring Ringtail, it’s time to make it faster and get the most out of it in terms of performance. Here are a few steps I followed myself to boost the performance and get the most out of Raring.
- Show hidden startup apps.
$ sudo sed -i "s/NoDisplay=true/NoDisplay=false/g" /etc/xdg/autostart/*.desktop
Remove startup apps you do not want. The ones I left enabled are:
GNOME Settings Daemon
GSettings Data Conversion
Network
PolicyKit Authentication Agent
Screensaver - Remove/disable overlay scrollbars if you do not like them. To remove completely:
$ sudo apt-get remove overlay-scrollbar overlay-scrollbar-gtk2 overlay-scrollbar-gtk3
To disable temporarily:
//disable $ gsettings set com.canonical.desktop.interface scrollbar-mode normal //re-enable $ gsettings reset com.canonical.desktop.interface scrollbar-mode
- Install CompizConfig Settings Manager and customize things. The plugins I left enabled are:
Composite
Copy to texure
OpenGL [Option Tuxture filter – Fast]
Expo
Window Decoration
Compiz Library Toolbox
Mouse position polling
Regex Matching
Workarounds
Move Window
Place Windows
Resize Window
Scale - Remove window shadows (HowTo).
- Install sysv-rc-conf and configure services you want to keep enabled in runlevel 5. I have following enabled:
acpi-support
dns-clean
grub-common
rc.local
sudo - Blacklist modules which you don’t need or want the kernel to load at boot (HowTo). You can always insert them using
$ sudo modprobe modulename
- Disable extra ttys. (HowTo)
- Remove software you might never need and install those you want. In my case I removed the following:
Software Center (I still use synaptic)
Ubuntu One (web interface is enough and I use Dropbox regularly)
webapps (things just a few clicks away)
empathy and telepathy (I use Pidgin for IM)
gstreamer and respective media players (I use SMPlayer)
gedit and gnome-calculator (I use leafpad and galculator)
some Unity lens and scopes
Check out the Diet Ubuntu page for more removable and replaceable packages.
Tip: Use utilities like Gtkorphan and localepurge to make the procedure simpler. To install on Ubuntu, run:$ sudo apt-get install gtkorphan localepurge
- Get rid of translation files
By default apt downloads translation files. If all you need is English, run the following command:$ echo "Acquire::Languages “none”;" | sudo tee -a /etc/apt/apt.conf.d/00aptitude
The above tweaks should also work on Ubuntu Saucy (13.10). If you find something that’s not working please feel free to comment so that I can change accordingly.
2 thoughts on “Streamline Ubuntu 13.04 & later”