Corrected DOS newlines... whoops

git-svn-id: http://phraktured.net/archiso@16 00a9fe69-e71b-0410-bb23-df0e5024db41
This commit is contained in:
Aaron Griffin 2006-09-29 06:47:54 +00:00
parent 49284a96fa
commit 9b271cc997
11 changed files with 168 additions and 170 deletions

View File

@ -10,7 +10,3 @@ configfile /boot/grub/menu.lst
title HOW-TO: Boot an existing system title HOW-TO: Boot an existing system
cat /boot/help/bootexisting.txt cat /boot/help/bootexisting.txt
pause Press enter to continue... pause Press enter to continue...
title HOW-TO: Do some other shit
cat /boot/help/othershit.txt
pause Press enter to continue...

View File

@ -10,8 +10,9 @@ title Attempt existing Linux detection
configfile /boot/grub/tryboot.lst configfile /boot/grub/tryboot.lst
title [EDIT ME] Boot Existing Linux Install title [EDIT ME] Boot Existing Linux Install
root (hd0,1) root (hd0,0)
kernel /vmlinuz26 root=/dev/hda3 ro kernel /vmlinuz26 root=/dev/hda3 ro
initrd /kernel26.img
title [EDIT ME] Boot Existing Windows Install title [EDIT ME] Boot Existing Windows Install
rootnoverify (hd0,0) rootnoverify (hd0,0)

View File

@ -1,23 +1,24 @@
This is a helpfile HOWTO: Boot an existing install
Hopefully grub will make this happy....
Select "More Options" from the main menu.
Move the cursor to "[EDIT ME] Boot an existing linux install"
Press "e"
At this point you will see the following:
root (hd0,0)
kernel /vmlinuz26 root=/dev/hda3 ro
initrd /kernel26.img
This needs to be changed to accomodate your hardware.
The first line should be changed to indicate where your boot medium resides.
"(hd0,0)" is the first partition on the first hard drive (hda1) - change these
numbers to indicate the partition containing your /boot directory.
The second line should be changed to point to your kernel. If the line above
points to a partition _only_ containing /boot, then /vmlinuz26 is fine.
Otherwise, change this to /boot/vmlinuz. root= should be changed to match the
partition for your root filesystem. Other kernel parameters can be added here.