Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.os.msdos.programmer > #4217 > unrolled thread
| Started by | vjp2.at@at.BioStrategist.dot.dot.com |
|---|---|
| First post | 2023-01-19 20:20 +0000 |
| Last post | 2023-01-20 15:09 +0000 |
| Articles | 2 — 1 participant |
Back to article view | Back to comp.os.msdos.programmer
Multiboot with MSDOS vjp2.at@at.BioStrategist.dot.dot.com - 2023-01-19 20:20 +0000
Re: Multiboot with MSDOS vjp2.at@at.BioStrategist.dot.dot.com - 2023-01-20 15:09 +0000
| From | vjp2.at@at.BioStrategist.dot.dot.com |
|---|---|
| Date | 2023-01-19 20:20 +0000 |
| Subject | Multiboot with MSDOS |
| Message-ID | <tqc8mf$lk3$2@reader2.panix.com> |
Way back I set up a machine with three OS, MSDOS was the lowest sector.
Don't remember everything I did, but here is my grub.cfg
# menu.lst - See: grub(8), info grub, update-grub(8)
## default num
# Set the default entry to the entry number NUM. Numbering starts from 0, and
# the entry number 0 is the default if the command is not used.
default 1
timeout 177
color cyan/blue white/blue
#Quantian bootable partition config begins
title Quantian on (/dev/sda6)
root (hd0,5)
kernel /boot/vmlinuz root=/dev/sda6 ro ramdisk_size=100000 init=/etc/init lang=us apm=power-off nomce quiet vga=791
initrd /boot/initrd.img
savedefault
boot
# QUANTIAN bootable partition config ends
# XP bootable partition config begins
title XP on (/dev/sda1)
unhide (hd0,0)
hide (hd0,1)
root (hd0,0)
makeactive
chainloader +1
# Win XP bootable partition config ends
# DOS is in front of XP but was installed later so has a higher SDA number
# DOS bootable partition config begins
title DOS on (/dev/sda2)
hide (hd0,0)
unhide (hd0,1)
root (hd0,1)
makeactive
chainloader +1
# DOS bootable partition config ends
--
Vasos Panagiotopoulos panix.com/~vjp2/vasos.htm
---{Nothing herein constitutes advice. Everything fully disclaimed.}---
[toc] | [next] | [standalone]
| From | vjp2.at@at.BioStrategist.dot.dot.com |
|---|---|
| Date | 2023-01-20 15:09 +0000 |
| Message-ID | <tqearn$456$3@reader2.panix.com> |
| In reply to | #4217 |
Something about MSDOS must be before cylinder 1024?
--
Vasos Panagiotopoulos panix.com/~vjp2/vasos.htm
---{Nothing herein constitutes advice. Everything fully disclaimed.}---
[toc] | [prev] | [standalone]
Back to top | Article view | comp.os.msdos.programmer
csiph-web