RE: Making boot.img floppy

2002-05-22 Thread Eddie Strohmier
PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Keith Morse Sent: Tuesday, May 21, 2002 11:52 AM To: [EMAIL PROTECTED] Subject: Re: Making boot.img floppy On Sun, May 19, 2002 at 04:11:03PM -0400, Michael Fratoni wrote: What .img file are you trying to use? On the CD, images/boot.img

Re: Making boot.img floppy

2002-05-21 Thread Anand Buddhdev
On Sun, May 19, 2002 at 04:11:03PM -0400, Michael Fratoni wrote: What .img file are you trying to use? On the CD, images/boot.img should fit with no trouble. ls -alh /mnt/cdrom/images/boot.img -rw-r--r--2 root root 1.4M To use dd: dd if=/mnt/cdrom/images/boot.img

Re: Making boot.img floppy

2002-05-21 Thread Keith Morse
On Tue, 21 May 2002, Anand Buddhdev wrote: On Sun, May 19, 2002 at 04:11:03PM -0400, Michael Fratoni wrote: What .img file are you trying to use? On the CD, images/boot.img should fit with no trouble. ls -alh /mnt/cdrom/images/boot.img -rw-r--r--2 root root 1.4M

Re: Making boot.img floppy

2002-05-21 Thread rpjday
On Tue, 21 May 2002, Keith Morse wrote: On Tue, 21 May 2002, Anand Buddhdev wrote: On Sun, May 19, 2002 at 04:11:03PM -0400, Michael Fratoni wrote: What .img file are you trying to use? On the CD, images/boot.img should fit with no trouble. ls -alh /mnt/cdrom/images/boot.img

Re: Making boot.img floppy

2002-05-19 Thread Michael Fratoni
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sunday 19 May 2002 03:29 pm, Eddie Strohmier wrote: I need to make a boot floppy to install RH 7.3 on my machine as I can not boot from CD. I am finding the boot.img to large to fit on a standard 1.44 floppy. Is there a way around this? Do I

Re: Making boot.img floppy

2002-05-19 Thread Statux
rawrite and dd do the same thing in this application. The image will fit on a 1.44MB floppy. All the floppy images are the exact size of a standard floppy. dd if=boot.img of=/dev/fd0 or dd if=boot.img of=/dev/fd0 bs=1440k count=1 The second command will write the first 1.44MB out, but since

RE: Making boot.img floppy

2002-05-19 Thread Eddie Strohmier
Michael Statux thanks so much. Sorry about that double post as I used my unsubscribed e-mail address initially then used the one I knew I subscribed with long ago. Who would have known that my unsubscribed e-mail address would have shown up 3 hours later. Oh well, Thanks again. Eddie