Editing GRUB configuration, suggestions?

Booting, installing, newbie
Post Reply
Message
Author
User avatar
flamesage
Posts: 214
Joined: Sat 02 Jul 2005, 00:39

Editing GRUB configuration, suggestions?

#1 Post by flamesage »

It works, great.
But I want to fancy it up a bit.
Does anyone know any useful GRUB options?

Here is my GRUB menu.lst right now.

Code: Select all

# GRUB configuration file '/boot/grub/menu.lst'.
# generated by 'grubconfig'.  Fri Nov  4 21:19:38 2005
#
# The backup copy of the MBR for drive '/dev/hda' is
# here '/boot/grub/mbr.hda.666'.  You can restore it like this.
# dd if=/boot/grub/mbr.hda.666 of=/dev/hda bs=512 count=1
#
# Start GRUB global section
#timeout 30
color light-gray/blue black/light-gray
# End GRUB global section
# Other bootable partition config begins
  title System Recovery Option (on /dev/hda1)
  rootnoverify (hd0,0)
  makeactive
  chainloader +1
# Other bootable partition config ends
# Other bootable partition config begins
  title WindowsXP (on /dev/hda2)
  map (hd0,0) (hd0,1)
  map (hd0,1) (hd0,0)
  rootnoverify (hd0,1)
  makeactive
  chainloader +1
# Other bootable partition config ends
# Linux bootable partition config begins
  title Puppy Linux (on /dev/hda3)
  root (hd0,2)
  kernel /boot/vmlinuz root=/dev/hda3 ro vga=normal
# Linux bootable partition config ends
title Install GRUB to floppy disk (on /dev/fd0)
pause Insert a formatted floppy disk and press enter.
root (hd0,2)
setup (fd0)
pause Press enter to continue.
title Install GRUB to Linux partition (on /dev/hda3)
root (hd0,2)
setup (hd0,2)
pause Press enter to continue.
title -     For help press 'c', then type: 'help'
root (hd0)
title -     For usage examples, type: 'cat /boot/grub/usage.txt'
root (hd0)
Got any tips / tricks to make my life easier?

User avatar
Flash
Official Dog Handler
Posts: 13071
Joined: Wed 04 May 2005, 16:04
Location: Arizona USA

#2 Post by Flash »

This what yer looking for?

User avatar
flamesage
Posts: 214
Joined: Sat 02 Jul 2005, 00:39

#3 Post by flamesage »

Yeah, I guess, thanks.

(I wish it had more paramaters, but this will have to do) :wink:

Guest

grub with extra stuff from my laptop

#4 Post by Guest »

# GRUB configuration file '/boot/grub/menu.lst'.
# generated by 'grubconfig'. Thu Jul 28 23:32:35 2005
#
# The backup copy of the MBR for drive '/dev/hda' is
# here '/boot/grub/mbr.hda.993'. You can restore it like this.
# dd if=/boot/grub/mbr.hda.993 of=/dev/hda bs=512 count=1
default 0
timeout 5
# foreground = 333333
# background = eeeeee
# color light-gray/blue black/light-gray
gfxmenu (hd0,0)/boot/grub/message

title Puppy 1.06 Alpha
kernel (hd0,0)/boot/puppy106linux root=/dev/ram0 PFILE=pup002-none-262144
initrd (hd0,0)/boot/puppy106.gz

title Puppy 1.05 Mugra
kernel (hd0,0)/boot/vmlinuz ramdisk_size=63488 root=/dev/ram0 PFILE=pup001-none-262144
initrd (hd0,0)/boot/image.gz

title Puppy 1.06 RW
root (hd0,0)puppy106
kernel (hd0,0)puppy106/vmlinuz root=/dev/hda1/puppy106 ro vga=normal

title Puppy 1.02 RW
root (hd0,0)
kernel /boot/puppy102 root=/dev/hda1 ro vga=normal

title TCC-BOOT
kernel (hd0,0)/boot/tccboot ramdisk_size=20000 root=/dev/ram
initrd (hd0,0)/boot/initrd.img

title Tedix
kernel (hd0,0)/boot/tedixlinux BOOT_IMAGE=beatrix ramdisk_size=100000 init=/etc/init lang=us apm=power-off noscsi vga=0x317 splash=silent fromhd=/dev/hda3
initrd (hd0,0)/boot/tedix.gz

#title Tedix src
#root (hd0,1)
#kernel /dev/hda2/knx/source/BEATRIX/vmlinuz root=/dev/hda2/knx/source/BEATRIX init=/dev/hda2/knx/source/BEATRIX/etc/init lang=us
#
title Knoppix
kernel (hd0,0)/boot/knoppix24 ramdisk_size=100000 init=/etc/init lang=us apm=power-off nomce quiet fromhd=/dev/hda3
initrd (hd0,0)/boot/minirt24.gz

title Morphix | ACPI on
kernel (hd0,0)/boot/morphixlinux lang=us ramdisk_size=100000 init=/etc/init noapic vga=791 splash=silent initrd=morphix.gz quiet BOOT_IMAGE=morphix fromhd=/dev/hda2
initrd (hd0,0)/boot/morphix.gz

title Puppyix
kernel (hd0,0)/boot/knoppix24 ramdisk_size=100000 init=/etc/init lang=us apm=power-off nomce quiet fromhd=/dev/hda2
initrd (hd0,0)/boot/minirt24.gz

User avatar
flamesage
Posts: 214
Joined: Sat 02 Jul 2005, 00:39

#5 Post by flamesage »

Is there anyway, from grub, to tell PuppyLinux to boot into command line? Instead of Xwin?

Also: What different text strings could I use to change the foreground and background colors?

Post Reply