After I installed everything I needed, Ubuntu became slower and slower. I uninstalled some things and it became little bit faster but still wasn't fast. I did a fresh installed of Ubuntu 13.04 and formatted 12.10 then installed Ubuntu 13.04 since 12.10 was getting slow.
-
When you say faster, to what are you referring? Shorter boot time? Faster shut-down? Faster execution of a particular program? Please edit your answer to describe your problem accurately. – hmayag Oct 29 '13 at 22:01
-
I am referring to everything. I want everything to be fast and not slow – user209278 Oct 29 '13 at 22:47
1 Answers
You should have a look to which programs you installed are running in the background after login, and remove the ones you don't need. The programs would be still installed, but won't run until you need them. In a terminal, type:
gnome-session-properties
You'll see something like this:
Just don't disable any program before knowing is safe (search the names in the web, to see what their function is).
More items you can disable, but this time services. In a terminal:
sudo apt-get install rcconf
sudo rcconf
Again, these are not programs but services (daemons in GNU/Linux) so search the web to see which ones you can disable safely. For instance, I don't have a printer nor a modem so I always disable CUPS and modem-manager.
Another thing, install preload, an utility that loads libraries into memory according to how often you use them:
sudo apt-get install preload
And that's it, the program will run in the background, you don't need to configure it or anything.
Hope it helps!

- 8,354
-
-
-
You should also try some how to's around the web with different ways to lighten up the system, just search for "make ubuntu faster" or so... – animaletdesequia Oct 30 '13 at 23:12