Path: utzoo!attcan!uunet!zephyr.ens.tek.com!wrgate!midas!herbw From: herbw@midas.WR.TEK.COM (Herb Weiner) Newsgroups: comp.unix.aux Subject: Re: Apple 160mb drive question Summary: You need to use mknod to get your partitions back Keywords: Slice 3, Partitions, mknod, installing Message-ID: <3453@wrgate.WR.TEK.COM> Date: 6 Sep 90 17:32:48 GMT References: <6046@memqa.uucp> Sender: news@wrgate.WR.TEK.COM Reply-To: herbw@midas.WR.TEK.COM (Herb Weiner) Organization: Tektronix, Inc., Beaverton, OR. Lines: 27 In article <6046@memqa.uucp>, qfhca81@memqa.uucp (Henry Melton) asks: > From the books, it seems as if there ought to be a large slice 3 > partition that I could mount, but it is hiding from me. I looked in > /dev/dsk and /dev/rdsk and there is no c0d0s3 to be found. You need to use mknod to add these. I don't have my manuals handy (and I'm not running A/UX at the moment), so please double check this before placing complete faith in my memory. But try this: mknod /dev/dsk/c0d0s3 b 29 3 chmod go-r /dev/dsk/c0d0s3 chown bin /dev/dsk/c0d0s3 chgrp bin /dev/dsk/c0d0s3 mknod /dev/rdsk/c0d0s3 c 29 3 chmod go-r /dev/rdsk/c0d0s3 chown bin /dev/rdsk/c0d0s3 chgrp bin /dev/rdsk/c0d0s3 Then proceed as directed in the Peripherals manual (newfs, mount, etc). Can anybody from Apple explain WHY these devices are not present? I had the same problem when I installed from CD-ROM to an external disk at SCSI 5 (except that /dev/dsk/c5d0s3 was missing and /dev/dsk/c0d0s3 was present). Herb Weiner (herbw@midas.WR.TEK.COM)