From owner-freebsd-questions Fri Mar 27 18:05:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA09975 for freebsd-questions-outgoing; Fri, 27 Mar 1998 18:05:37 -0800 (PST) (envelope-from owner-freebsd-questions@FreeBSD.ORG) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA09943; Fri, 27 Mar 1998 18:05:18 -0800 (PST) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id NAA13110; Sat, 28 Mar 1998 13:03:39 +1100 Date: Sat, 28 Mar 1998 13:03:39 +1100 From: Bruce Evans Message-Id: <199803280203.NAA13110@godzilla.zeta.org.au> To: gaa@dgms.com, marki@ihug.co.nz Subject: Re: 2.2.6 Help Cc: freebsd-questions@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >My work around was to mount another file system that could mount >correctly via the compatability devices (my zip drive: /dev/sd0) >and create the appropriate entries as: > /zip/dev/ >I was then able to do "mount -u /zip/dev/wd0s3a /" and from there >I could edit /etc/fstab and do a "MAKEDEV wd0s3{a,b,c,d,e,f,g,h}". >Perhaps you could put floppy in /dev/fd0 and make the devices >there. (I just happened to have a freebsd zip disk handy, but not >a freebsd floppy disk). This method is the most general. It always works if you have writable media (newfs the media if necessary). Booting with -r is simpler if the builtin root device (default wd0a) matches the actual root device (the slice number is ignored in this case). >Now my question: I can sort of understand why the devs are not created >when one does a "MAKEDEV all" (72 entries for wd0 alone!), but why Really making them all would give about 256K device nodes for sd alone (512 drives * about 32 slices * 8 partitions * (raw and buffered)). >aren't they created when one does "MAKEDEV wd0s3". The latter only >creates one (useless) entry: wd0s3. wd0sN is mostly for internal use by MAKEDEV to help create only the (useful) devices wd0s[1-4] for `MAKEDEV all'. Use `MAKEDEV wd0s3a' to create all the partitions. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message