[comp.unix.aux] Setup Problems and Questions

henry@chinet.chi.il.us (Henry C. Schmitt) (11/16/90)

Hi there!

I'm setting up an A/UX system (on a IIci) for the first time, but I
ran into some problems, and have a few questions.  I should also
mention that I was an admisistrator on a AT&T 3b2 several years ago
(but I got better) so I'm not a complete UNIX novice.

First problem is the missing hard disk partition.  I'm using
SilverLining to partiton a Quantum 210.  I've got a total of 9
partitions, 5 of which belong to UNIX.  They are (USE): A/UX Root &
Usr slice 0, A/UX Swap slice 1, A/UX Autorecovery, Free A/UX slice
3, and A/UX Usr slice 2 in that physical order on the disk (the Mac
partiton is between the last two).

My problem is that I can't access slice 3.  There is no
/dev/dsk/c6d0s3 ! I've set up the /etc/disktab from the info given
by SilverLining.  Please help, I'd like to put /users in this
partiton.

I also hav a non-Appletalk DeskWriter and would like to be able to
use it.  I know this has been discussed, so would some kind soul
summarize for me or point me to an archive of this?

Another thing which has been discussed here is using a SyQuest
removeable drive with A/UX.  I would like to be able to both mount
file systems, and use it for backup.  Can anyone send me info?

Well, before I clog up the net, I'll finish up.

Thanx a ton!

-- 
  H3nry C. Schmitt     | CompuServe: 72275,1456  (Rarely)
                       | GEnie: H.Schmitt  (Occasionally)
 Royal Inn of Yoruba   | UUCP: Henry@chinet.chi.il.us  (Best Bet)

schnable@cbnewsc.att.com (andrew.schnable) (11/17/90)

From article <1990Nov15.213004.17890@chinet.chi.il.us>, by henry@chinet.chi.il.us (Henry C. Schmitt):
> My problem is that I can't access slice 3.  There is no
> /dev/dsk/c6d0s3 ! I've set up the /etc/disktab from the info given
> by SilverLining.  Please help, I'd like to put /users in this
> partiton.

This is a bug in the AUX 2.0 install process. You will have to create 
the entry by hand using mknod. look at similar entries in /dev/dsk 
(and /dev/rdsk) and do the c6d0s3 entry similarly. I'm sorry that I 
can't be more specific - my IIci is at home. I posted a detailed 
description of my AUX startup problems and work arounds this summer 
(the week AUX 2.0 started to ship) If you have access to comp.unix.aux 
archives, you might try looking the article up...

a.schnable@att.com

marcelo@sparcwood.Princeton.EDU (Marcelo A. Gallardo) (11/17/90)

In article <1990Nov16.172652.24285@cbnewsc.att.com> schnable@cbnewsc.att.com (andrew.schnable) writes:
>From article <1990Nov15.213004.17890@chinet.chi.il.us>, by henry@chinet.chi.il.us (Henry C. Schmitt):
>> My problem is that I can't access slice 3.  There is no
>> /dev/dsk/c6d0s3 ! I've set up the /etc/disktab from the info given
>> by SilverLining.  Please help, I'd like to put /users in this
>> partiton.
>
>This is a bug in the AUX 2.0 install process. You will have to create 
>the entry by hand using mknod. look at similar entries in /dev/dsk 
>(and /dev/rdsk) and do the c6d0s3 entry similarly. I'm sorry that I 
>can't be more specific - my IIci is at home. I posted a detailed 
>description of my AUX startup problems and work arounds this summer 
>(the week AUX 2.0 started to ship) If you have access to comp.unix.aux 
>archives, you might try looking the article up...
>
>a.schnable@att.com

You can find archives of comp.unix.aux on aux.support.apple.com. They
have been doing a good job in keeping these up to date, and in a decent
order.

    .. Marcelo ..

marcelo@phoenix.princeton.edu
marcelo@sparcwood.princeton.edu
marcelo@pucc.princeton.edu
marcelo@idunno.princeton.edu

Marcelo Gallardo
Test and Evaluation Specialist
Princeton University
Advanced Technologies and Applications
609 - 258 - 5661

brian@fog.ann-arbor.mi.us (Brian S. Schang) (11/17/90)

From article <4118@idunno.Princeton.EDU>, by marcelo@sparcwood.Princeton.EDU (Marcelo A. Gallardo):
> You can find archives of comp.unix.aux on aux.support.apple.com. They
> have been doing a good job in keeping these up to date, and in a decent
> order.

Is this an anonymous ftp server?  Or must one have a login?

Thanks.
-- 
Brian S. Schang   N8FOG          brian@fog.ann-arbor.mi.us
46131 Academy Drive              schang@caen.engin.umich.edu
Plymouth, MI  48170-3519

herbw@midas.WR.TEK.COM (Herb Weiner) (11/17/90)

In article <1990Nov15.213004.17890@chinet.chi.il.us>,
henry@chinet.chi.il.us (Henry C. Schmitt) writes:
> First problem is the missing hard disk partition.
> My problem is that I can't access slice 3.
 
In article <10083@goofy.Apple.COM>, vlb@magic.apple.com (Vicki Brown) writes:
> It's a bug (in the pname program, to be precise).  In short, when the
> autorecovery partitions are filled, the installation uses pname to attach
> the partitions temporarily; pname uses slice 3.  It is then too dumb to
> realize these slices BELONG on the disk, and deletes the device nodes when
> it's through.  Thus, only the slice 3 devices for Your particular SCSI
> number disappear.
> We know/we've caught this/the next A/UX release Installation won't do it.
 
In article <3453@wrgate.WR.TEK.COM>, I wrote:
 
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).
 
You will need to change all instances of "c0d0s3" to "c6d0s3", and you
will need to determine the correct major device number (29 in my example)
by doing "ls -lt /dev/dsk/c6d0s0".
 
Herb Weiner (herbw@midas.wr.tek.com)

marcelo@sparcwood.Princeton.EDU (Marcelo A. Gallardo) (11/17/90)

In article <1990Nov16.200240.1329@fog.ann-arbor.mi.us>, brian@fog.ann-arbor.mi.us (Brian S. Schang) writes:
|> From article <4118@idunno.Princeton.EDU>, by marcelo@sparcwood.Princeton.EDU (Marcelo A. Gallardo):
|> > You can find archives of comp.unix.aux on aux.support.apple.com. They
|> > have been doing a good job in keeping these up to date, and in a decent
|> > order.
|> 
|> Is this an anonymous ftp server?  Or must one have a login?
|> 
|> Thanks.
|> -- 
|> Brian S. Schang   N8FOG          brian@fog.ann-arbor.mi.us
|> 46131 Academy Drive              schang@caen.engin.umich.edu
|> Plymouth, MI  48170-3519

So sorry, aux.support.apple.com is an anonymous ftp site.


    .. Marcelo ..

marcelo@phoenix.princeton.edu
marcelo@sparcwood.princeton.edu
marcelo@pucc.princeton.edu
marcelo@idunno.princeton.edu

Marcelo Gallardo
Test and Evaluation Specialist
Princeton University
Advanced Technologies and Applications
609 - 258 - 5661