Every little bit of speed helps every little single seconds to improve your Linux speed and tweaking the boot speed. You can add the following to your GRUB menu (usually on the second line). The way that you can edit the boot parameters in the GRUB boot menu varies by distribution. The GRUB menu will usually tell you what to press to edit the boot parameter when you boot. Don’t worry about messing up on the GRUB menu when you booting, it is not permanent.
Some BIOS hacks are important to speed up the boot process. Enter your BIOS and do the following:
Inside the Linux system. Disable unneeded services. This depends on a lot of things. Are you running a server? Are you running a laptop? Look through your services with the chkconfig –list command to see what is enabled. Note that different distributions might not using this, this chkconfig command is a common way any Red Hat based Distributions. See here on how to use chkconfig to disable services. Here are some suggestions:
Did you know that on most distributions you can use the Alt+F1 to F7 to switch to virtual consoles? You can disable this by editing /etc/inittab. Be careful editing this file back it up if you are unsure. Look for lines like this:
1:2345:respawn:/sbin/mingetty tty1
2:2345:respawn:/sbin/mingetty tty2
3:2345:respawn:/sbin/mingetty tty3
4:2345:respawn:/sbin/mingetty tty4
5:2345:respawn:/sbin/mingetty tty5
6:2345:respawn:/sbin/mingetty tty6
Erase them all!! Hehe, JUST JOKING, lol. Comment 3-6 with a # sign at the beginning of each line. For example
#3:2345:respawn:/sbin/mingetty tty3
#4:2345:respawn:/sbin/mingetty tty4
#5:2345:respawn:/sbin/mingetty tty5
#6:2345:respawn:/sbin/mingetty tty6
Again, on another distribution it might be not in /etc/inittab
Recompile your kernel it’s the best way to tweak up your system. This is a whole other topic, that I have to talk about it next time !!
No comments yet.