Improve Linpux Linux SSD Performance
Improve Linpus Linux SSD Performance Linux has a number of optimisations for reading and writing data from a hard drive, and these are in place even on AA1s with solid-state drives. However, you can adjust the OS to ignore these optimisations, which should lead to faster SSD performance.
Open a Terminal window and type sudo mousepad /boot/grub/grub.conf.
Once again, be very careful editing this file - mistakes can prevent Linux starting properly. So double-check your typing, make sure your data's backed up and have the USB recovery drive you made earlier to hand.
Looking through the file, you should see the line:
kernel /boot/bzImage ro root=LABEL=linpus vga=0x311 splash=silent loglevel=1 console=tty1 quiet nolapic_timer
Edit this to add elevator=noop at the end, making sure there's a space between the end of the old line and the new code.
Save the file and restart your AA1. If you've done it right, you probably won't notice anything specific, but Linux will now be better tuned for SSD usage. | It should look like the code below: kernel /boot/bzImage ro root=LABEL=linpus vga=0x311 splash=silent loglevel=1 console=tty1 quiet nolapic_timer elevator=noop
|


