Re: Documentation bug in WWW FAQ???

2005-10-03 Thread Andreas Kahari
On 03/10/05, Bryan [EMAIL PROTECTED] wrote:
 I recently attempted to dualboot my laptop with Windows XP.  I was
 following the FAQ and came to the point where I issued this command:


First you say:
 dd if=/dev/rsd0a of=openbsd.pbr bs=512 count=1

later you quote the docs:
 # dd if=/dev/rwd0a of=/mnt/openbsd.pbr bs=512 count=1

I see rwd0a in the document, not rsd0a.

Andreas



--
Andreas Kahari



Re: Documentation bug in WWW FAQ???

2005-10-03 Thread steven mestdagh
On Mon, Oct 03, 2005 at 04:35:36PM +0100, Bryan wrote:
 I recently attempted to dualboot my laptop with Windows XP.  I was
 following the FAQ and came to the point where I issued this command:
 
 dd if=/dev/rsd0a of=openbsd.pbr bs=512 count=1
 
 And the system tells me that:
 
 
 /dev/rsd0a not configured
 
 I did a google search to see if I did anything wrong and I found this site:
 
 
 http://darkuncle.net/OpenBSD/OpenBSD_dualboot.txt
 
 I found the following passage:
 
 -
 When you're done installing, pop in a USB key or floppy, mount it
 (for a USB key, I do mount_msdos /dev/sd0i /mnt; for a floppy, it's
 mount_msdos /dev/fd0a /mnt) and do the following to grab your OpenBSD
 primary boot record:
 
 # dd if=/dev/rwd0a of=/mnt/openbsd.pbr bs=512 count=1
 
 Now reboot the machine into Windows, and copy the openbsd.pbr file you just
 created to C:\openbsd.pbr in Windows. If you don't have a floppy or USB key
 available to tranfer your openbsd.pbr with, you can copy it to another
 machine on your network, reboot into Windows, and copy it back.
 -
 
 
 The dd command above does allow me to save openbsd.pbr, and with
 this, I can dualboot.  I just wanted to give a heads-up that if the
 FAQ doesn't allow you to dualboot, then the above might work.  I
 thought that maybe it was a typo, since rsd0a and rwd0a differ by
 one letter, and those differing letters lie close on the keyboard.

it is not a typo, just another possibility. maybe you want to have a look
at the wd(4) and sd(4) manual pages.

Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm



Re: Documentation bug in WWW FAQ???

2005-10-03 Thread Nick Holland
On Mon, Oct 03, 2005 at 04:35:36PM +0100, Bryan wrote:
 I recently attempted to dualboot my laptop with Windows XP.  I was
 following the FAQ and came to the point where I issued this command:
 
 dd if=/dev/rsd0a of=openbsd.pbr bs=512 count=1
 
 And the system tells me that:
 
 
 /dev/rsd0a not configured

DON'T BLINDLY TYPE COMMANDS YOU DON'T UNDERSTAND.

man wd
man sd

Yes, I could change that so more people could use it blindly, but
multibooting IS NOT TRIVIAL.  If you don't understand what you are
doing, you can very easily cause data loss.

I don't want this section to be too just type this or HOWTO.

Nick.



Re: Documentation bug in WWW FAQ???

2005-10-03 Thread Matthew Weigel
Andreas Kahari wrote:
 On 03/10/05, Bryan [EMAIL PROTECTED] wrote:
 I recently attempted to dualboot my laptop with Windows XP.  I was
 following the FAQ and came to the point where I issued this command:

 First you say:
 dd if=/dev/rsd0a of=openbsd.pbr bs=512 count=1

 later you quote the docs:
 # dd if=/dev/rwd0a of=/mnt/openbsd.pbr bs=512 count=1

 I see rwd0a in the document, not rsd0a.

Eh?  Look at http://www.openbsd.org/faq/faq4.html#Multibooting:

# dd if=/dev/rsd0a of=openbsd.pbr bs=512 count=1

However, that's entirely dependent on the device to which you are
installing, although the FAQ doesn't make that clear.

Other parts of the install process make it very clear what drive
(typically wd0 for IDE drives and sd0 for SCSI drives) is being used, what
is not so clear to a new user is that 'rsdX' is the raw version of the
'sdX' block device, and 'rwdX' is the raw version of the 'wdX' block
device.
-- 
 Matthew Weigel
 hacker
 [EMAIL PROTECTED]



Re: Documentation bug in WWW FAQ???

2005-10-03 Thread Bryan
On 10/3/05, Andreas Kahari [EMAIL PROTECTED] wrote:
 On 03/10/05, Bryan [EMAIL PROTECTED] wrote:
  I recently attempted to dualboot my laptop with Windows XP.  I was
  following the FAQ and came to the point where I issued this command:
 

 First you say:
  dd if=/dev/rsd0a of=openbsd.pbr bs=512 count=1
This is what is found on the WWW FAQ.  Using this, I get the

/dev/rsd0a is not configured  and I am unable to get a .pbr file to
dualboot my laptop.

http://www.openbsd.org/faq/faq4.html#Multibooting

 later you quote the docs:
  # dd if=/dev/rwd0a of=/mnt/openbsd.pbr bs=512 count=1

This command works for me, it's on the following website:

http://darkuncle.net/OpenBSD/OpenBSD_dualboot.txt


 I see rwd0a in the document, not rsd0a.

 Andreas



Re: Documentation bug in WWW FAQ???

2005-10-03 Thread Andreas Kahari
On 03/10/05, Bryan [EMAIL PROTECTED] wrote:
 On 10/3/05, Andreas Kahari [EMAIL PROTECTED] wrote:
  On 03/10/05, Bryan [EMAIL PROTECTED] wrote:
   I recently attempted to dualboot my laptop with Windows XP.  I was
   following the FAQ and came to the point where I issued this command:
  
 
  First you say:
   dd if=/dev/rsd0a of=openbsd.pbr bs=512 count=1
 This is what is found on the WWW FAQ.  Using this, I get the

 /dev/rsd0a is not configured  and I am unable to get a .pbr file to
 dualboot my laptop.

 http://www.openbsd.org/faq/faq4.html#Multibooting
 
  later you quote the docs:
   # dd if=/dev/rwd0a of=/mnt/openbsd.pbr bs=512 count=1

 This command works for me, it's on the following website:

 http://darkuncle.net/OpenBSD/OpenBSD_dualboot.txt

 
  I see rwd0a in the document, not rsd0a.


Ah, now I see what you're typing.  Yes, that part of the FAQ is only
really valid if you boot from a SCSI drive.  Some people do, some
people don't.  You obviously do not, so you naturally need to specify
your IDE drive instead.


Andreas


--
Andreas Kahari