11-25-2015, 12:00 AM
Disclaimer: Only perform this tweak if you are competent on the command line. This guide is not meant for newbies.
If you have an SSD, I'm not sure how much of a difference this will make.
GRUB:
replace GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash” with GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash profile”
save and exit
Reboot
Grub does a search for all the necessary drivers to load. Instead of making Grub search for required drivers, the profiling actually makes Grub remember every necessary driver to work. This action will cutting down all of the driver load times. First reboot may be a little slower than normal, but consequent boots should be much faster.
CPU:
If you have a multi-core CPU/Processor, this following steps may be able to speed up your boot time besides of using the step above, follow these instructions:
find this line : CONCURRENCY=none or CONCURRENCY=makefile
replace with : CONCURRENCY=shell
save and exit
Source: http://www.ubuntubuzz.com/2012/01/how-to...oting.html
USE WITH EXTREME CAUTION
Blacklisting unnecessary kernel modules. Open the terminal and type command lsmod to see what are the modules that are loaded.
Check the value in section "used by", if the value is "0" it means that the this kernel module is not been used by any of the application/process and it's unnecessary occupying the space in the memory, the best way to know about such module to use google/bing search engine and if you feel that this module is not required you can simply unload it, for example if you don't have the floppy drive then why to load floppy module.
go to the bottom of the file and start adding your blacklisted kernel modules, eg.
reboot.
You MUST research each module you want to prevent loading before you disable it. Don't blacklist everything with a 0.
Source: http://linuxpoison.blogspot.co.nz/2009/0...ssary.html
If you have an SSD, I'm not sure how much of a difference this will make.
GRUB:
Code:
sudo leafpad /etc/default/grub
replace GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash” with GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash profile”
save and exit
Code:
sudo update-grub2
Reboot
Grub does a search for all the necessary drivers to load. Instead of making Grub search for required drivers, the profiling actually makes Grub remember every necessary driver to work. This action will cutting down all of the driver load times. First reboot may be a little slower than normal, but consequent boots should be much faster.
CPU:
If you have a multi-core CPU/Processor, this following steps may be able to speed up your boot time besides of using the step above, follow these instructions:
Code:
sudo leafpad /etc/init.d/rc
find this line : CONCURRENCY=none or CONCURRENCY=makefile
replace with : CONCURRENCY=shell
save and exit
Source: http://www.ubuntubuzz.com/2012/01/how-to...oting.html
USE WITH EXTREME CAUTION
Blacklisting unnecessary kernel modules. Open the terminal and type command lsmod to see what are the modules that are loaded.
Check the value in section "used by", if the value is "0" it means that the this kernel module is not been used by any of the application/process and it's unnecessary occupying the space in the memory, the best way to know about such module to use google/bing search engine and if you feel that this module is not required you can simply unload it, for example if you don't have the floppy drive then why to load floppy module.
Code:
sudo leafpad /etc/modprobe.d/blacklist.conf
go to the bottom of the file and start adding your blacklisted kernel modules, eg.
Code:
blacklist floppy
Code:
sudo update-initramfs -u
reboot.
You MUST research each module you want to prevent loading before you disable it. Don't blacklist everything with a 0.
Source: http://linuxpoison.blogspot.co.nz/2009/0...ssary.html