Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!usc!apple!bionet!ames!eos!shelby!polya!kaufman From: kaufman@polya.Stanford.EDU (Marc T. Kaufman) Newsgroups: comp.unix.aux Subject: Re: Mounting partitioned disk Message-ID: <10269@polya.Stanford.EDU> Date: 27 Jun 89 01:03:01 GMT References: <18531@louie.udel.EDU> Sender: Marc T. Kaufman Reply-To: kaufman@polya.Stanford.EDU (Marc T. Kaufman) Organization: Stanford University Lines: 31 In article <18531@louie.udel.EDU> nelson@udel.EDU (Mark Nelson) writes: >My neighbor's MacII CX with A/UX and two 80 meg drives just arrived. >Unfortunately, the documentation hasn't. What he wants to do is >configure the external drive entirely A/UX, and split the internal >into half MacOS, half A/UX. But I can't get A/UX to recognize >the partitioned internal drive. What I did: >Build a ~40 meg A/UX "Usr" partition on the internal drive using the >MacOS utility "Apple HD SC Setup". >Boot A/UX and verify the partitioning of the internal drive with >"dp /dev/rdsk/c0d0s31". >Try a mkfs of c0d0s0. No luck: it complained that any block count >I gave was larger than the physical size. Same for c0d0s1 and c0d0s2. Try running 'dp' and checking the partition info for the Use partition. Last I looked, HD Setup missed some of the A/UX fields. Next, you need to use 'pname' to associate a partition on other than the boot device with a particular slice. On the boot device, slice 0 is the root partition, and slice 2 is the usr partition, if there is one. Non boot devices are not automatically searched. pname -a -c0 -s0 "Usr" (use the actual name you gave it) mkfs /dev/rdsk/c0d0s0 (and fsck, etc.) mount /dev/dsk/c0d0s0 /mnt ought to work. Marc Kaufman (kaufman@polya.stanford.edu)