Recently I bought laptop of ASUS with configuration
- AMD Quad Core A4 - 5000 1.5Ghz
- Memory 4Gb
- HDD 500Gb
Even after installing LUbuntu, I didn't see much increase in speed.
Currently installed softwares - LAMP stack - Eclipse IDE
Is there anything I am missing out to perform configuration to achieve maximum performance out of a Quad Core Processor
21 Answer
In order to make your system faster, you could try the following:
Install the proprietary AMD driver, so the APU speed can be regulated.
Open Software & Updates, go to Additional drivers and select fglrx.
Install the packages preload and prelink. These take certain actions to make the system faster.
Execute
sudo apt-get install prelink preloadin a terminal.Reduce Swap usage. The default swappiness value is 60, which may be too high.
Open the file
/etc/sysctl.confand set the swappiness parameter:sudo nano /etc/sysctl.confin a terminal. New line at the end:vm.swappiness = 10, then another linebreak, save with Ctrl+O.Enable boot profiling. The next reboot may take a bit longer, but the following should be faster.
Open
/etc/default/gruband appendprofileto the line that saysquiet splash:GRUB_CMDLINE_LINUX_DEFAULT="quiet splash profile"If you don't want your boot menu to appear (if it even does), set
GRUB_TIMEOUT=0Save, exit and run
sudo update-grub.
If you apply these changes, your computer should get faster after a reboot.
1