Optimize Ubuntu’s performance
![]() |
Ubuntu Linux |
To enable prelinking, start by using Synaptic to search for and install the prelink package. Once installed, open a terminal window and open the prelink configuration file in Gedit:
$ gksu gedit /etc/default/prelink
Look for the line that reads PRELINKING=unknown and change it to read
PRELINKING=yes. Then save the file and close Gedit.
Prelinking is now activated and a prelinking pass of your system’s executable files will run in the background periodically, but it’s a good idea to create an initial prelinking pass of the system.
To do this, type the following into a terminal window:
$ sudo prelink -a
It will take some time to complete, and you’ll see a lot of output, but don’t worry about it. Once complete, try starting some of the larger applications on your system—OpenOffice.org Writer, for example, or Firefox—to see if there’s any improvement in start times.
If prelinking cause problems, type the following to remove it from your executable files:
$ sudo prelink -ua
Then uninstall the prelink package using Synaptic.
Comments
Post a Comment