After I installed Gutsy, I noticed that my the boot-time was considerably longer than other with Gutsy. We were talking a couple of minutes of waiting after I turned it on. So I checked around for a solution, and found one. Here is what you need to do:
- First we take backup of one of the files with this command in the terminal:
# sudo cp /boot/grub/menu.lst /boot/grub/menu.lst.original - Now in the terminal, run the following command:
# sudo gedit /etc/usplash.conf - Edit the file's content to:
# Usplash configuration file
xres=1024
yres=768 - Save it, exit the text editor, and run the following command:
# sudo gedit /boot/grub/menu.lst - Find this section in the text file:
## additional options to use with the default boot option, but not with the
## alternatives
## e.g. defoptions=vga=791 resume=/dev/hda5
# defoptions=quiet splash - Add defoptions=vga=791 at the end, making the section look like this:
## additional options to use with the default boot option, but not with the
## alternatives
## e.g. defoptions=vga=791 resume=/dev/hda5
# defoptions=quiet splash
defoptions=vga=791 - Save the file and exit the text editor.
- Now run the following command in the terminal(notice the ` are grave accents):
# sudo update-initramfs -u -k `uname -r`
Credits to malcam for his post on ubuntuforums explaining this.