disktab revision 19558
137Srgrimes# Disk geometry and partition layout tables. 
237Srgrimes# Key:
337Srgrimes#	dt	controller type
437Srgrimes#	ty	type of disk (fixed, removeable, simulated)
537Srgrimes#	d[0-4]	drive-type-dependent parameters
637Srgrimes#	ns	#sectors/track
737Srgrimes#	nt	#tracks/cylinder
837Srgrimes#	nc	#cylinders/disk
9476Srgrimes#	sc	#sectors/cylinder, ns*nt default
1037Srgrimes#	su	#sectors/unit, sc*nc default
1137Srgrimes#	se	sector size, DEV_BSIZE default
1237Srgrimes#	rm	rpm, 3600 default
1337Srgrimes#	sf	supports bad144-style bad sector forwarding
1437Srgrimes#	sk	sector skew per track, default 0
1537Srgrimes#	cs	sector skew per cylinder, default 0
1637Srgrimes#	hs	headswitch time, default 0
1737Srgrimes#	ts	one-cylinder seek time, default 0
1837Srgrimes#	il	sector interleave (n:1), 1 default
1937Srgrimes#	bs	boot block size, default BBSIZE
2037Srgrimes#	sb	superblock size, default SBSIZE
2137Srgrimes#	o[a-h]	partition offsets in sectors
2237Srgrimes#	p[a-h]	partition sizes in sectors
2337Srgrimes#	b[a-h]	partition block sizes in bytes
2437Srgrimes#	f[a-h]	partition fragment sizes in bytes
2537Srgrimes#	t[a-h]	partition types (filesystem, swap, etc)
2637Srgrimes#
2737Srgrimes# All partition sizes reserve space for bad sector tables.
2837Srgrimes# (5 cylinders needed for maintenance + replacement sectors)
2937Srgrimes#
301141Sache
311141Sache#
321141Sache# Floppy formats:
331141Sache#
341141Sache# To make a filesystem on a floppy:
357708Srgrimes#	fdformat [-f <size>] fd<drive>[.<size>]
3611137Sjoerg#	disklabel -B -r -w fd<drive>[.<size>] fd<size>
3711137Sjoerg#	newfs <opts> fd<drive>[.<size>]
381141Sache#
3911137Sjoerg# with <opts>:
4011137Sjoerg#	-t 2	- two heads
4111137Sjoerg#	-u 9|15|18 - sectors per track
4211137Sjoerg#	(using the default value of 1/4096 is not much useful for floppies)
4311137Sjoerg#	-l 1	- interleave 1 (for most floppies)
4411137Sjoerg#	-i 65536 - bytes of data per i-node
4511137Sjoerg#	(the default -i value will render you with a floppy wasting way
4611137Sjoerg#	too much space in i-node areas)
4711137Sjoerg#
481141Sache
491141Sachefd360:\
501141Sache	:ty=floppy:se#512:nt#2:rm#300:ns#9:nc#40:\
511141Sache	:pa#720:oa#0:ba#4096:fa#512:\
521141Sache	:pb#720:ob#0:bb#4096:fb#512:\
531141Sache	:pc#720:oc#0:bc#4096:fc#512:
541141Sache
551141Sachefd720:\
561141Sache	:ty=floppy:se#512:nt#2:rm#300:ns#9:nc#80:\
571141Sache	:pa#1440:oa#0:ba#4096:fa#512:\
581141Sache	:pb#1440:ob#0:bb#4096:fb#512:\
591141Sache	:pc#1440:oc#0:bc#4096:fc#512:
601141Sache
611182Srgrimesfd1200|floppy5|5in|5.25in High Density Floppy:\
621144Sache	:ty=floppy:se#512:nt#2:rm#360:ns#15:nc#80:\
631141Sache	:pa#2400:oa#0:ba#4096:fa#512:\
641141Sache	:pb#2400:ob#0:bb#4096:fb#512:\
651141Sache	:pc#2400:oc#0:bc#4096:fc#512:
661141Sache
671182Srgrimesfd1440|floppy|floppy3|3in|3.5in High Density Floppy:\
681141Sache	:ty=floppy:se#512:nt#2:rm#300:ns#18:nc#80:\
691141Sache	:pa#2880:oa#0:ba#4096:fa#512:\
701141Sache	:pb#2880:ob#0:bb#4096:fb#512:\
711141Sache	:pc#2880:oc#0:bc#4096:fc#512:
721141Sache
731141Sache#
741141Sache# Stressed floppy-formats.  No guarantees given.
751141Sache#
761141Sache
771141Sachefd800:\
781141Sache	:ty=floppy:se#512:nt#2:rm#300:ns#10:nc#80:\
791141Sache	:pa#1600:oa#0:ba#4096:fa#512:\
801141Sache	:pb#1600:ob#0:bb#4096:fb#512:\
811141Sache	:pc#1600:oc#0:bc#4096:fc#512:
821141Sache
831141Sachefd820:\
841141Sache	:ty=floppy:se#512:nt#2:rm#300:ns#10:nc#82:\
851141Sache	:pa#1640:oa#0:ba#4096:fa#512:\
861141Sache	:pb#1640:ob#0:bb#4096:fb#512:\
871141Sache	:pc#1640:oc#0:bc#4096:fc#512:
881141Sache
891141Sachefd1480:\
901141Sache	:ty=floppy:se#512:nt#2:rm#300:ns#18:nc#82:\
911141Sache	:pa#2952:oa#0:ba#4096:fa#512:\
921141Sache	:pb#2952:ob#0:bb#4096:fb#512:\
931141Sache	:pc#2952:oc#0:bc#4096:fc#512:
941141Sache
951141Sachefd1720:\
961141Sache	:ty=floppy:se#512:nt#2:rm#300:ns#21:nc#82:\
971141Sache	:pa#3444:oa#0:ba#4096:fa#512:\
981141Sache	:pb#3444:ob#0:bb#4096:fb#512:\
991141Sache	:pc#3444:oc#0:bc#4096:fc#512:
1001141Sache
1011141Sache#
1021141Sache# Harddisk formats
1031141Sache#
10437Srgrimesqp120at|Quantum Peripherals 120MB IDE:\
10537Srgrimes	:dt=ESDI:ty=winchester:se#512:nt#9:ns#32:nc#813:sf: \
10637Srgrimes	:pa#13824:oa#0:ta=4.2BSD:ba#4096:fa#512: \
10737Srgrimes	:pb#13824:ob#13824:tb=swap: \
10837Srgrimes	:pc#234144:oc#0: \
10937Srgrimes	:ph#206496:oh#27648:th=4.2BSD:bh#4096:fh#512:
11037Srgrimes
11137Srgrimespan60|Panasonic Laptop's 60MB IDE:\
11237Srgrimes	:dt=ST506:ty=winchester:se#512:nt#13:ns#17:nc#565:\
11337Srgrimes	:pa#13260:oa#0:ta=4.2BSD:ba#4096:fa#512:\
11437Srgrimes	:pb#13260:ob#13260:tb=swap: \
11537Srgrimes	:pc#124865:oc#0: \
11637Srgrimes	:ph#97682:oh#26520:th=4.2BSD:bh#4096:fh#512:
11737Srgrimes
11837Srgrimesmk156|toshiba156|Toshiba MK156 156Mb:\
11937Srgrimes	:dt=SCSI:ty=winchester:se#512:nt#10:ns#35:nc#825:\
12037Srgrimes	:pa#15748:oa#0:ba#4096:fa#512:ta=4.2BSD:\
12137Srgrimes	:pb#15748:ob#15748:tb=swap:\
1227708Srgrimes	:pc#288750:oc#0:\
12337Srgrimes	:ph#257250:oh#31500:bh#4096:fh#512:th=4.2BSD:	
12437Srgrimes
12537Srgrimescp3100|Connor Peripherals 100MB IDE:\
126145Srgrimes	:dt=ST506:ty=winchester:se#512:nt#8:ns#33:nc#766: \
12737Srgrimes	:pa#12144:oa#0:ta=4.2BSD:ba#4096:fa#512: \
12837Srgrimes	:pb#12144:ob#12144:tb=swap: \
12937Srgrimes	:pc#202224:oc#0: \
13037Srgrimes	:ph#177936:oh#24288:th=4.2BSD:bh#4096:fh#512:
13137Srgrimes
132145Srgrimes# a == root
133145Srgrimes# b == swap
134145Srgrimes# c == d == whole disk
135145Srgrimes# e == /var
136145Srgrimes# f == scratch
137145Srgrimes# h == /usr
138145Srgrimes
139145Srgrimescp3100new|Connor Peripherals 100MB IDE, with a different configuration:\
140145Srgrimes	:dt=ST506:ty=winchester:se#512:nt#8:ns#33:nc#766: \
141145Srgrimes	:pa#15840:oa#0:ta=4.2BSD:ba#4096:fa#512: \
142145Srgrimes	:pb#24288:ob#15840:tb=swap: \
143145Srgrimes	:pc#202224:oc#0: \
144145Srgrimes	:pd#202224:od#0: \
145145Srgrimes	:pe#15840:oe#40128:te=4.2BSD:be#4096:fe#512: \
146145Srgrimes	:pg#15840:og#55968:tg=4.2BSD:bg#4096:fg#512: \
147145Srgrimes	:ph#130416:oh#71808:th=4.2BSD:bh#4096:fh#512:
148145Srgrimes
14937Srgrimesmaxtor4380|Maxtor XT4380E ESDI :\
15037Srgrimes	:dt=ESDI:ty=winchester:se#512:nt#15:ns#36:nc#1222:sf: \
15137Srgrimes	:pa#21600:oa#0:ta=4.2BSD:ba#4096:fa#512:\
15237Srgrimes	:pb#21600:ob#21600:tb=swap: \
15337Srgrimes	:pc#659880:oc#0: \
15437Srgrimes	:pd#216000:od#53200:td=4.2BSD:bd#4096:fd#512: \
15537Srgrimes	:ph#398520:oh#269200:th=4.2BSD:bh#4096:fh#512:
15637Srgrimes
15737Srgrimesminiscribe9380|compaq38|Miniscribe 9380 ESDI :\
15837Srgrimes	:ty=winchester:dt=ESDI:se#512:nt#15:ns#35:nc#1223:rm#3600:sf: \
15937Srgrimes	:pa#21000:oa#0:ba#8192:fa#1024:ta=4.2BSD: \
16037Srgrimes	:pb#42000:ob#21000:tb=swap: \
16137Srgrimes	:pc#642075:oc#0: \
16237Srgrimes	:pd#21000:od#63000:bd#8192:fd#1024:td=4.2BSD: \
16337Srgrimes	:ph#556500:oh#84000:bh#8192:fh#1024:th=4.2BSD:
16437Srgrimes
16537Srgrimesida4|compaq88|Compaq IDA (4 drives) :\
16637Srgrimes	:ty=winchester:dt=IDA:se#512:nt#16:ns#63:nc#1644:rm#3600:\
16737Srgrimes	:pa#20160:oa#0:ba#8192:fa#1024:ta=4.2BSD: \
16837Srgrimes	:pb#80640:ob#20160:tb=swap: \
16937Srgrimes	:pc#1659168:oc#0: \
17037Srgrimes	:pd#201600:od#100800:bd#8192:fd#1024:td=4.2BSD: \
17137Srgrimes	:pe#20160:oe#1310400:be#8192:fe#1024:te=4.2BSD: \
17237Srgrimes	:ph#1008000:oh#302400:bh#8192:fh#1024:th=4.2BSD: \
17337Srgrimes	:pg#302400:og#1330560:bg#4096:fg#512:tg=4.2BSD:
17437Srgrimes
17537Srgrimesfuji513|Fujitsu M22XXXX: \
17637Srgrimes	:ty=winchester:dt=ESDI:se#512:nt#16:ns#63:nc#954:rm#3600:\
17737Srgrimes	:pa#20160:oa#82656:ba#4096:fa#512:ta=4.2BSD: \
17837Srgrimes	:pb#40320:ob#102816:tb=swap: \
17937Srgrimes	:pc#961632:oc#0: \
18037Srgrimes	:ph#656208:oh#143136:bh#4096:fh#512:th=4.2BSD:
18137Srgrimes
18211137Sjoergsony650|Sony 650 MB MOD|\
18311137Sjoerg	:ty=removable:dt=SCSI:se#512:nt#1:ns#31:nc#18600:ts#1:rm#4800:\
18411137Sjoerg	:pc#576600:oc#0:\
18511137Sjoerg	:pa#576600:oa#0:ta=4.2BSD:ba#8192:fa#1024:
18613439Sjkh
18713439Sjkhmta3230|mo230|IBM MTA-3230 230 Meg 3.5inch Magneto-Optical:\
18813439Sjkh	:ty=removeable:dt=SCSI:rm#3600:\
18913439Sjkh	:se#512:nt#64:ns#32:nc#216:sc#2048:su#444384:\
19013439Sjkh	:pa#444384:oa#0:ba#4096:fa#0:ta=4.2BSD:\
19113439Sjkh	:pc#444384:oc#0:
19219558Sjkh
19319558Sjkhminimum:ty=mfs:se#512:nt#1:rm#300:\
19419558Sjkh	:ns#2400:nc#1:\
19519558Sjkh	:pa#2400:oa#0:ba#4096:fa#512:\
19619558Sjkh	:pc#2400:oc#0:bc#4096:fc#512:
197