Quote:>>I am interested in install a separate Linux and DOS partition on one
>>machine. Is this possible? If so, how? Are there docs available? Thanks.
I have both running, since the begining of time, and have yet to
have any problems.
read lilo, + how to partition.
here is a brief.
- create your dos partion (ie hda4).
- do what ever you wich with it. Remember that a dos partition
can be mounted in Linux but not the reverse, so better big in
dos. (even so slower, for some apps it is ok).
- then go to your linux fdisk, and create partitions, make
sure you do not delete your dos partition.
- install your linux.
- install lilo
here is my lilo.conf
note that my boot disk is hda
/************** start *****************/
boot = /dev/hda
compact # faster, but won't work on all systems.
timeout = 1000
prompt
vga = ask # force sane state
ramdisk = 0 # paranoia setting
#for dos. partion is 4
other=/dev/hda4
label=msdos
table=/dev/hda
#for linux
image = /vmlinuz
label = linux
root = /dev/hda1
/********************** end *********/
as can be noticed I am using the old lilo, but new is same.
Ie only my conf is old.
hope it helps.
also to mount your dos just do mount -t msdos /dev/hda4 /mnt
any mount point. put that in your fstab, and it will alwways
be mounted.