From owner-freebsd-questions Sun Jul 6 00:38:42 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id AAA12540 for questions-outgoing; Sun, 6 Jul 1997 00:38:42 -0700 (PDT) Received: from gatekeeper.barcode.co.il (gatekeeper.barcode.co.il [192.116.93.17]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id AAA12534 for ; Sun, 6 Jul 1997 00:38:32 -0700 (PDT) Received: (from smap@localhost) by gatekeeper.barcode.co.il (8.8.5/8.6.12) id KAA10817; Sun, 6 Jul 1997 10:37:35 +0300 (IDT) X-Authentication-Warning: gatekeeper.barcode.co.il: smap set sender to using -f Received: from localhost.barcode.co.il(127.0.0.1) by gatekeeper.barcode.co.il via smap (V1.3) id sma010812; Sun Jul 6 10:37:09 1997 Message-ID: <33BF4B09.3DA2@barcode.co.il> Date: Sun, 06 Jul 1997 10:36:41 +0300 From: Nadav Eiron X-Mailer: Mozilla 3.0 (X11; I; SunOS 5.5 sun4m) MIME-Version: 1.0 To: Mats Dufberg CC: "freebsd-questions@freebsd.org" Subject: Re: Unable to make device node References: <199707052131.XAA24657@bar.pilsnet.sunet.se> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Mats Dufberg wrote: > > I'm trying to install FreeBSD (2.2.1, Walnut Creek april '97), > but the installation fails when the file system is to be > created, "Unable to make device node for /dev/X in /dev" > (yes, it says a literal "X"). > > The disk is a IDE disk (Seagate Medalist 2140, 2 GB). It is > connected to a EIDE controller (Promise EIDE2300plus) on > VL bus. Physically it has 4095 cyls, 16 heads and 63 sectors > per track, but it is run in LBA mode and is translated to > 1023 cyls, 64 heads and 63 sectors per tracs. > > The disk has the following layout, reported by FDISK of OS/2: > > SIZE (MB) TYPE FILE SYSTEM > 1 primary boot manager > 350 primary HPFS > 11 primary FAT > 100 secondary FAT > 1000 secondary HPFS > 35 secondary HPFS > 511 secondary unused > > The disk is mounted as wd0 by FreeBSD. During installation, > when asked to assign disk for FreeBSD, FDISK reports (size > in sectors and approx. translated into MB): > > SIZE NAME TYPE > sec MB > 63 -- 6 unused > 3969 2 wd0s4 1 OS/2 bootmgr > 717696 350 wd0s3 1 NTFS/HPFS > 24192 12 wd0s2 1 unknown > 2326464 1136 wd0s1 4 extended > 1055376 515 -- 6 unused > > * Is it normal that secondary partitions are reported as > one single partition? Yes. The partition table on the disks only knows of "primary" partitions. Extended partitions are, in a sense, partitions within partitions, and the partition table does not reflect that. I suspect your problem is that you're atempting to create more than 4 partitions on a single disk. There's a limit of 4 paritions, and you already have that many, so I suspect you can't have any more. I gues it would have been better if sysinstall told you that, and not just made up a partition called "X", but I think this is basically what your problem is. The only cure is probably to move some of the primary partitions into the extended partition, so they will all be counted as one against the 4 partitions limit. I know NT can boot from a logical partition, don't know about OS/2 :-( > > When selecting the unused area and creating a FreeBSD > slice with "C" the following to lines will substitute > the last line above: > > 1052352 X 3 freebsd > 3024 -- 6 unused > > * Is the name of the partition really to be "X"? > > In the next step I do a default labelling. Just after > selecting "comit" (and answered som warnings) I get > the error message: > > "Unable to make device node for /dev/X in /dev" > > * Can anyone give me a suggestion how to procede the > installation? I have found no answer in neither FAQ > nor handbook. > > ------------------------------------------------------ > Mats Dufberg mats.dufberg@abc.se Nadav