disktab revision 1144
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:
351141Sache#    fdformat [-f <size>] fd<drive>[.<size>]
361141Sache#    disklabel -r -w fd<drive>[.<size>] fd<size>
371141Sache#    newfs fd<drive>[.<size>]
381141Sache#
391141Sache
401141Sachefd360:\
411141Sache	:ty=floppy:se#512:nt#2:rm#300:ns#9:nc#40:\
421141Sache	:pa#720:oa#0:ba#4096:fa#512:\
431141Sache	:pb#720:ob#0:bb#4096:fb#512:\
441141Sache	:pc#720:oc#0:bc#4096:fc#512:
451141Sache
461141Sachefd720:\
471141Sache	:ty=floppy:se#512:nt#2:rm#300:ns#9:nc#80:\
481141Sache	:pa#1440:oa#0:ba#4096:fa#512:\
491141Sache	:pb#1440:ob#0:bb#4096:fb#512:\
501141Sache	:pc#1440:oc#0:bc#4096:fc#512:
511141Sache
521141Sachefd1200:floppy5|5in|5.25in High Density Floppy:\
531144Sache	:ty=floppy:se#512:nt#2:rm#360:ns#15:nc#80:\
541141Sache	:pa#2400:oa#0:ba#4096:fa#512:\
551141Sache	:pb#2400:ob#0:bb#4096:fb#512:\
561141Sache	:pc#2400:oc#0:bc#4096:fc#512:
571141Sache
581141Sachefd1440:floppy|floppy3|3in|3.5in High Density Floppy:\
591141Sache	:ty=floppy:se#512:nt#2:rm#300:ns#18:nc#80:\
601141Sache	:pa#2880:oa#0:ba#4096:fa#512:\
611141Sache	:pb#2880:ob#0:bb#4096:fb#512:\
621141Sache	:pc#2880:oc#0:bc#4096:fc#512:
631141Sache
641141Sache#
651141Sache# Stressed floppy-formats.  No guarantees given.
661141Sache#
671141Sache
681141Sachefd800:\
691141Sache	:ty=floppy:se#512:nt#2:rm#300:ns#10:nc#80:\
701141Sache	:pa#1600:oa#0:ba#4096:fa#512:\
711141Sache	:pb#1600:ob#0:bb#4096:fb#512:\
721141Sache	:pc#1600:oc#0:bc#4096:fc#512:
731141Sache
741141Sachefd820:\
751141Sache	:ty=floppy:se#512:nt#2:rm#300:ns#10:nc#82:\
761141Sache	:pa#1640:oa#0:ba#4096:fa#512:\
771141Sache	:pb#1640:ob#0:bb#4096:fb#512:\
781141Sache	:pc#1640:oc#0:bc#4096:fc#512:
791141Sache
801141Sachefd1480:\
811141Sache	:ty=floppy:se#512:nt#2:rm#300:ns#18:nc#82:\
821141Sache	:pa#2952:oa#0:ba#4096:fa#512:\
831141Sache	:pb#2952:ob#0:bb#4096:fb#512:\
841141Sache	:pc#2952:oc#0:bc#4096:fc#512:
851141Sache
861141Sachefd1720:\
871141Sache	:ty=floppy:se#512:nt#2:rm#300:ns#21:nc#82:\
881141Sache	:pa#3444:oa#0:ba#4096:fa#512:\
891141Sache	:pb#3444:ob#0:bb#4096:fb#512:\
901141Sache	:pc#3444:oc#0:bc#4096:fc#512:
911141Sache
921141Sache#
931141Sache# Harddisk formats
941141Sache#
9537Srgrimesqp120at|Quantum Peripherals 120MB IDE:\
9637Srgrimes	:dt=ESDI:ty=winchester:se#512:nt#9:ns#32:nc#813:sf: \
9737Srgrimes	:pa#13824:oa#0:ta=4.2BSD:ba#4096:fa#512: \
9837Srgrimes	:pb#13824:ob#13824:tb=swap: \
9937Srgrimes	:pc#234144:oc#0: \
10037Srgrimes	:ph#206496:oh#27648:th=4.2BSD:bh#4096:fh#512:
10137Srgrimes
10237Srgrimespan60|Panasonic Laptop's 60MB IDE:\
10337Srgrimes	:dt=ST506:ty=winchester:se#512:nt#13:ns#17:nc#565:\
10437Srgrimes	:pa#13260:oa#0:ta=4.2BSD:ba#4096:fa#512:\
10537Srgrimes	:pb#13260:ob#13260:tb=swap: \
10637Srgrimes	:pc#124865:oc#0: \
10737Srgrimes	:ph#97682:oh#26520:th=4.2BSD:bh#4096:fh#512:
10837Srgrimes
10937Srgrimesmk156|toshiba156|Toshiba MK156 156Mb:\
11037Srgrimes	:dt=SCSI:ty=winchester:se#512:nt#10:ns#35:nc#825:\
11137Srgrimes	:pa#15748:oa#0:ba#4096:fa#512:ta=4.2BSD:\
11237Srgrimes	:pb#15748:ob#15748:tb=swap:\
11337Srgrimes        :pc#288750:oc#0:\
11437Srgrimes	:ph#257250:oh#31500:bh#4096:fh#512:th=4.2BSD:	
11537Srgrimes
11637Srgrimescp3100|Connor Peripherals 100MB IDE:\
117145Srgrimes	:dt=ST506:ty=winchester:se#512:nt#8:ns#33:nc#766: \
11837Srgrimes	:pa#12144:oa#0:ta=4.2BSD:ba#4096:fa#512: \
11937Srgrimes	:pb#12144:ob#12144:tb=swap: \
12037Srgrimes	:pc#202224:oc#0: \
12137Srgrimes	:ph#177936:oh#24288:th=4.2BSD:bh#4096:fh#512:
12237Srgrimes
123145Srgrimes# a == root
124145Srgrimes# b == swap
125145Srgrimes# c == d == whole disk
126145Srgrimes# e == /var
127145Srgrimes# f == scratch
128145Srgrimes# h == /usr
129145Srgrimes
130145Srgrimescp3100new|Connor Peripherals 100MB IDE, with a different configuration:\
131145Srgrimes	:dt=ST506:ty=winchester:se#512:nt#8:ns#33:nc#766: \
132145Srgrimes	:pa#15840:oa#0:ta=4.2BSD:ba#4096:fa#512: \
133145Srgrimes	:pb#24288:ob#15840:tb=swap: \
134145Srgrimes	:pc#202224:oc#0: \
135145Srgrimes	:pd#202224:od#0: \
136145Srgrimes	:pe#15840:oe#40128:te=4.2BSD:be#4096:fe#512: \
137145Srgrimes	:pg#15840:og#55968:tg=4.2BSD:bg#4096:fg#512: \
138145Srgrimes	:ph#130416:oh#71808:th=4.2BSD:bh#4096:fh#512:
139145Srgrimes
14037Srgrimesmaxtor4380|Maxtor XT4380E ESDI :\
14137Srgrimes	:dt=ESDI:ty=winchester:se#512:nt#15:ns#36:nc#1222:sf: \
14237Srgrimes	:pa#21600:oa#0:ta=4.2BSD:ba#4096:fa#512:\
14337Srgrimes	:pb#21600:ob#21600:tb=swap: \
14437Srgrimes	:pc#659880:oc#0: \
14537Srgrimes	:pd#216000:od#53200:td=4.2BSD:bd#4096:fd#512: \
14637Srgrimes	:ph#398520:oh#269200:th=4.2BSD:bh#4096:fh#512:
14737Srgrimes
14837Srgrimesminiscribe9380|compaq38|Miniscribe 9380 ESDI :\
14937Srgrimes	:ty=winchester:dt=ESDI:se#512:nt#15:ns#35:nc#1223:rm#3600:sf: \
15037Srgrimes	:pa#21000:oa#0:ba#8192:fa#1024:ta=4.2BSD: \
15137Srgrimes	:pb#42000:ob#21000:tb=swap: \
15237Srgrimes	:pc#642075:oc#0: \
15337Srgrimes	:pd#21000:od#63000:bd#8192:fd#1024:td=4.2BSD: \
15437Srgrimes	:ph#556500:oh#84000:bh#8192:fh#1024:th=4.2BSD:
15537Srgrimes
15637Srgrimesida4|compaq88|Compaq IDA (4 drives) :\
15737Srgrimes	:ty=winchester:dt=IDA:se#512:nt#16:ns#63:nc#1644:rm#3600:\
15837Srgrimes	:pa#20160:oa#0:ba#8192:fa#1024:ta=4.2BSD: \
15937Srgrimes	:pb#80640:ob#20160:tb=swap: \
16037Srgrimes	:pc#1659168:oc#0: \
16137Srgrimes	:pd#201600:od#100800:bd#8192:fd#1024:td=4.2BSD: \
16237Srgrimes	:pe#20160:oe#1310400:be#8192:fe#1024:te=4.2BSD: \
16337Srgrimes	:ph#1008000:oh#302400:bh#8192:fh#1024:th=4.2BSD: \
16437Srgrimes	:pg#302400:og#1330560:bg#4096:fg#512:tg=4.2BSD:
16537Srgrimes
16637Srgrimesfuji513|Fujitsu M22XXXX: \
16737Srgrimes	:ty=winchester:dt=ESDI:se#512:nt#16:ns#63:nc#954:rm#3600:\
16837Srgrimes	:pa#20160:oa#82656:ba#4096:fa#512:ta=4.2BSD: \
16937Srgrimes	:pb#40320:ob#102816:tb=swap: \
17037Srgrimes	:pc#961632:oc#0: \
17137Srgrimes	:ph#656208:oh#143136:bh#4096:fh#512:th=4.2BSD:
17237Srgrimes
173