On Thu, 9 Apr 1998, Lai Chi Wai wrote:

> > to make a boot disk...
> > (as root)
> > 1. put floppy in drive
> > 2. find which kernel image your using (vmlinuz, zImage, bzImage, etc...)
> > 3. copy image to floppy (do not mount the floppy)
> > 
> > dd if=/boot/zImage of=/dev/fd0
> > 
> > if stands for infile, of stands for outfile
> > zImage is what my current kernel image is called
> > /dev/fd0 is the device name for the first floppy drive (a:\)
> 
> One more question: when I try to create a new boot disk using 
> dd if=/boot/vlinuz of=/dev/fd0 bs=8192
> 
> and try to boot the system with this new floppy, a message
> 
> Kernel panic: VFS: Unable to mount root fs on 08:05
> 
> I think the problem may be due to something about root filesystem and
> should be done with rdev, but I don't know what exactly I should do? 
> Any help?
> 

ok...

dd if=/boot/vlinuz of=/dev/fd0 
is also the same as
cp /boot/vlinuz /dev/fd0

but before you do that you need to do rdev, when i compile my kernels the
build automatically does rdev to them so i overlooked that.  sorry

find out which device is used for you root partition (where / is mounted
from).  So if my root partition is on the 1st partition of the first ide
drive then i would do the following...

rdev /boot/vlinuz /dev/hda1

you can find out which device the root partition is mounted from by using
the df command.

pat



-- 
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
         To unsubscribe: mail [EMAIL PROTECTED] with 
                       "unsubscribe" as the Subject.

Reply via email to