Unable to find device node for /dev/ad1s1b in /dev ! [FreeBSD 8.2 - RELEASE]

Hello,

I am experiencing a problem while I try to install FreeBSD 8.2 - RELEASE (amd64). I am selecting a Standard Installation, but after doing the proper partition settings and try to install it an error appears:
Code:
Unable to find device node for /dev/ad1s1b in /dev
I have a 80gb WD HDD. Thanks in advance.
 
Maybe it is named differently.

Check:

[CMD=]ls /dev/ad*[/CMD]

it will show you all the slices of your HD. Just mount the specific slice at mountroot> prompt like this:

[CMD=]mountroot> ufs:/dev/<label>[/CMD]

where <label> is the slice you want to mount as root. However I guess it should be /dev/ad0s1a (if you have installed on a system with a single HDD) or /dev/ad1s1a (if you have installed on a second drive).

Again remount in a rewritable mode by executing the following to make necessary changes:

[cmd=]#mount -o rw /dev/<label>[/cmd]

make changes in /etc/fstab accordingly using ee and reboot, there you go. Hope this helps.
 
Sorry, I am yet to have editing rights (strange rules here) ;-) but there are some typos due to the formatting stuffs:

Please read the following commands as follows:

[cmd=]ls /dev/ad*[/cmd]

[cmd=]mountroot> ufs:/dev/<label>[/cmd]

[cmd=]#mount -o rw /dev/<label>[/cmd]

and if you are comfortable use vi instead of ee, vi is the preferred way for me ;-)

DutcheDaemon: Including tags didn't render anything but when I anchor the command with the command strings, it printed the command two times as of below. ;-)
 
Just to mention something more /dev/ad1s1b is the swap drive that the install creates with Auto Defaults settings.
 
Seems like I've read this can be caused by pressing W for write in the partition/label editor. If that's happening here, don't do that, just press Q to quit and let it do the write.
 
Back
Top