Xref: utzoo comp.sys.dec:432 comp.unix.wizards:5796 Path: utzoo!mnetor!uunet!husc6!think!ames!elan!kg From: kg@elan.UUCP (Ken Greer) Newsgroups: comp.sys.dec,comp.unix.wizards Subject: Re: RD54 disktab entry needed! Message-ID: <248@elan.UUCP> Date: 18 Dec 87 00:13:00 GMT References: <358@osupyr.UUCP> Organization: Elan Computer Group, Inc., Palo Alto, CA Lines: 50 in article <358@osupyr.UUCP>, mark@osupyr.UUCP (Welchkin) says: > Xref: elan comp.sys.dec:470 comp.unix.wizards:5628 > > > we have recently acquired a set of Maxtor 380Mb ESDI disks.. > we lack the disktab information necessary Here is ours... m4380|M4380|Maxstor 4380 Winchester:\ :ty=winchester:ns#33:nt#15:nc#1222:\ :pa#32670:ba#4096:fa#4096:\ :pg#327690:bg#4096:fg#1024:\ :pb#65340:bb#4096:fb#512:\ :pe#178694:be#4096:fe#512:\ :pc#604394:bc#4096:fc#1024:\ :pd#0:bd#4096:fd#512:\ :pf#0:bf#4096:ff#512:\ :ph#0:bh#4096:fh#512: And a script to create the partion table ... if [ $# -ne 1 ]; then echo "Usage: $0 unit" exit 1 fi DEV=/dev/rra$1 set -x newfs -v ${DEV}a m4380 chpt -v -pa 0 32670 ${DEV}a chpt -v -pb 360360 65340 ${DEV}a chpt -v -pc 0 604394 ${DEV}a chpt -v -pd 0 0 ${DEV}a chpt -v -pe 425700 178694 ${DEV}a chpt -v -pf 0 0 ${DEV}a chpt -v -pg 32670 327690 ${DEV}a chpt -v -ph 0 0 ${DEV}a newfs -v ${DEV}a m4380 newfs -v ${DEV}b m4380 newfs -v ${DEV}e m4380 newfs -v ${DEV}g m4380 -- Ken Greer Elan Computer Group, Inc. 415-322-2450 {ames,hplabs}!elan!kg