# @(#) $Revision: 72.4.1.5 $ ################################################################## # # # disktab: Data Base and Informational File # # for both HP-IB (CS/80, Amigo) and SCSI discs # # For use with: newfs # # # # ---> For the Series 200 / 300 / 400 AND 700 ONLY <--- # # # ################################################################## # # # PRELIMINARY: # # All discs, including fixed (hard) discs and all # # removable media, must be formatted before they can # # be used. Formatting is the process of preparing # # a new disc to receive information and assuring # # media integrity. # # # # To format an HP-UX disc, use the HP-UX command: # # % mediainit # # # # IMPORTANT: Some discs require an interleave different # # than one (1). This file contains information to # # help you make the correct choice. An improper # # interleave could have a dramatic impact on # # performance. # # # # # # GENERAL: Disktab is a simple database which describes disc # # geometries and disc section characteristics. # # Entries consist of a number of fields, separated # # by ':'. The first entry for each disc gives the # # name(s) which are known for the disc, separated # # by '|' characters. The next field is informational # # and is unused by newfs. Sectors are of size # # DEV_BSIZE = 1024 bytes. # # # # The entries in this file are used as input to newfs # # E.g. to make a file system for an HP7945: # # # # % newfs /dev/rdsk/r7945 hp7945 # # # # Most discs have some space reserved for the swap # # area. For instance, 10 MBytes is reserved in the # # above example. The amount of disc space required # # by a user may be different from the default amount, # # and you may wish to specify your own parameters. # # See the section below on creating your own disktab # # entry. # # # # NOTE: On the Series 700 the boot area is taken # # from swap space. If you are making the device # # bootable, you should be aware that there will # # actually be less swap available on the device than # # expected. As a result of this dependency, all # # entries in this file which were formerly referred to# # as "reserved for swap" are now referred to as # # "reserved for swap & boot". The "*_noswap" entries # # have likewise been changed to "*_noreserve" to # # reflect the fact that "reserved" area refers to # # swap and boot. # # # # An entry for most discs is also provided that does # # not reserve any space for swap or boot (the # # "noreserve" suffix). The file system uses the # # entire disc. Remember -- HP-UX REQUIRES a minimum # # of 2 MBytes of swap. # # # # Most disk drives provide optimal file system # # throughput with the default 4 ms value for rotdelay.# # Exceptions are noted in the individual disktab # # entries. Use tunefs(1M) or the file system # # parameter screen of the install process to change. # # # ################################################################## # DISK GEOMETRY AND PARTITION LAYOUT TABLES. # # Key: # # (Leading field is name -- can be any string) # # ty Information about the disk (informational only) # # ns number of 1k sectors/track # # nt number of tracks/cylinder # # nc number of cylinders/disk # # s0 size of file system in 1k blocks # # b0 block size in bytes # # (only 8192 or 4096 supported) # # f0 fragment sizes in bytes # # (1K, 2K, or 4K are supported) # # se #bytes/physical sector (informational only) # # rm rpm (rotational speed of platters) # ################################################################## # EXPLANATION: # # s0 = ns * nt * nc # # Sectors not allocated to the file system will be # # used in the swap area. If no swap is required, s0 # # represents the actual amount of disc space available # # on the disc. In general, any space reserved for swap # # must be in increments of 2 megabytes i.e. swap will # # be utilized in multiples of: # # 2 * 1024 * 1024 ( = 2,097,152 bytes ) # # # # This guideline should suffice for almost all users. # # If you anticipate creating processes that will have a # # heap space larger than 116 MBytes, you will need to # # create a swap space that is a multiple of DMMAX. # # (See System Parameters - Table D.1 in the HP-UX System # # Administrators Manual.) # # # ################################################################## # # # GENERAL GUIDELINES (and HINTS) for CREATING NEW ENTRIES: # # - How much swap is required # # - Swap must be reserved in multiples of 2 megabytes # # - The O/S needs some swap to run # # - An attempt to make ns a multiple of b0 will # # enhance performance. At a minimum, attempt to # # make it a multiple of the fragment size (f0). # # - diskinfo(1m) is a useful utility for determining # # the parameters necessary to make disctab entries. # # # # An entry should have a unique name, and conform # # approximately to the following skeleton: # # # # hpXXXX:\ # # :how much swap:ns#X:nt#X:nc#X:\ # # :s0#X:b0#8192:f0#1024:\ # # :se#X:rm#X: # # # # where you will need to fill in values for 'X'. b0 is # # almost always 8192, and f0 is 1024, although you can # # change this also. # # # # ns#X must be in multiples of 1k. We must sometimes # # then "fudge" the numbers. Example: A gray microfloppy # # formatted with format option 2 has this geometry: # # - 512 bytes/sector # # - 9 sectors/track # # - 77 tracks/surface # # - 2 surfaces # # # # We have to fool option 2, instead of 9 sectors of 512 # # bytes with 2 heads, we specified 9 sectors of 1K with # # 1 head (ns# REQUIRES 1K). Here is our entry: # # # # hp9122_F2:\ # # :format option 2:ns#9:nt#1:nc#77:\ # # :s0#693:b0#8192:f0#1024:\ # # :se#512:rm#600: # # # # -> When Possible - Start with an existing entry <- # # # ################################################################## # Example of 'mknod' commands # # SHARED controller units: # # hp7946 at bus address 3 and select code 14 (hex 'e') # # (The disk and tape both share the same controller. # # The disk is at unit 0, while the tape is at unit 1) # # # # mknod /dev/dsk/7946 b 0 0x0e0300 /* hard disc */ # # ^ represents block device # # # # mknod /dev/rdsk/r7946 c 4 0x0e0300 /* hard disc */ # # ^ represents character device # # # # mknod /dev/rct/rct c 4 0x0e0310 /* cartridge tape */ # # ^ 0,4 are for CS/80 or SS/80 discs # # # # mknod /dev/ct/ct b 0 0x0e0310 /* cartridge tape */ # # # # hp9133L at bus address 0 and on the Internal HP-IB # # The 9133L has a disk at unit 0 and a 3.5" microfloppy # # at unit 1 # # mknod /dev/dsk/9133 b 0 0x070000 /* hard disc */ # # mknod /dev/rdsk/r9133 c 0 0x070000 # # mknod /dev/dsk/md b 0 0x070010 /* 3.5" microdisc */ # # mknod /dev/rdsk/rmd c 4 0x070010 # # # # SEPARATE controller units # # Be careful: the 7912/4 drives come in two flavors: # # separate controllers, or shared controllers. This # # example is for *separate* controllers. # # hp7914 disc at bus address 0 and select code 14 # # hp7914 cartridge tape at bus address 1 and # # select code 14 # # mknod /dev/dsk/7914 b 0 0x0e0000 /* hard disc */ # # mknod /dev/rdsk/r7914 c 4 0x0e0000 # # mknod /dev/rct c 4 0x0e0100 /* cartridge tape */ # # mknod /dev/ct b 0 0x0e0100 # # # # Example of 'mknod' commands for SCSI discs # # HP7959S at bus address 2 and select code 14 # # mknod /dev/dsk/7959S b 7 0x0e0200 # # ^ major number for SCSI block # # # # mknod /dev/rdsk/r7959S c 47 0x0e0200 # # ^ SCSI character device # # # # Example of 'mknod' commands for AMIGO discs # # hp7925 at bus address 7 and select code 14 # # mknod /dev/dsk/7925 b 2 0x0e0700 # # ^ major number for Amigo block # # # # mknod /dev/rdsk/r7925 c 11 0x0e0700 # # ^ Amigo character device # # # # Comments & Notes # # Remember that /dev/root (or /dev/dsk/0s0) is SPECIAL. # # To make this node type: # # mknod /dev/root b 0xff 0xffffff # # When you LIST this device using "ls -l" , the operating # # system "magically" fills in the correct values. # # # # Notice how the minor number scheme is identical between all # # interfaces. Only the major numbers differ. The purpose of # # the major number is to "index" into the appropriate driver. # # # ################################################################## ############################################### # SEAGATE ST11200N # Set rotdelay = 0 ms for optimal file system perf (see tunefs(1M)) # SEAGATE_ST11200N_noswap|SEAGATE_ST11200N_noreserve:\ :No swap or boot:ns#38:nt#13:nc#2075:\ :s0#1025050:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST11200N_42MB:\ :42 MB reserved for swap & boot:ns#38:nt#13:nc#1988:\ :s0#982072:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST11200N_64MB:\ :64 MB reserved for swap & boot:ns#38:nt#13:nc#1943:\ :s0#959842:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST11200N_96MB|SEAGATE_ST11200N:\ :96 MB reserved for swap & boot:ns#38:nt#13:nc#1876:\ :s0#926744:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST11200N_120MB:\ :120 MB reserved for swap & boot:ns#38:nt#13:nc#1826:\ :s0#902044:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST11200N_150MB:\ :150 MB reserved for swap & boot:ns#38:nt#13:nc#1764:\ :s0#871416:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST11200N_200MB:\ :200 MB reserved for swap & boot:ns#38:nt#13:nc#1661:\ :s0#820534:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST11200N_300MB:\ :300 MB reserved for swap & boot:ns#38:nt#13:nc#1453:\ :s0#717782:b0#8192:f0#1024:\ :se#512:rm#5400: ############################################################################### # SEAGATE ST3600N # Set rotdelay = 0 ms for optimal file system perf (see tunefs(1M)) # SEAGATE_ST3600N_noswap|SEAGATE_ST3600N_noreserve:\ :No swap or boot:ns#30:nt#9:nc#1895:\ :s0#511650:b0#8192:f0#1024:\ :se#512:rm#4500: SEAGATE_ST3600N_40MB:\ :40 MB swap:ns#30:nt#9:nc#1743:\ :s0#470610:b0#8192:f0#1024:\ :se#512:rm#4500: SEAGATE_ST3600N_50MB:\ :50 MB swap:ns#30:nt#9:nc#1705:\ :s0#460350:b0#8192:f0#1024:\ :se#512:rm#4500: SEAGATE_ST3600N|SEAGATE_ST3600N_70MB:\ :70 MB swap:ns#30:nt#9:nc#1629:\ :s0#439830:b0#8192:f0#1024:\ :se#512:rm#4500: SEAGATE_ST3600N_90MB:\ :90 MB swap:ns#30:nt#9:nc#1552:\ :s0#419040:b0#8192:f0#1024:\ :se#512:rm#4500: SEAGATE_ST3600N_120MB:\ :120 MB swap:ns#30:nt#9:nc#1439:\ :s0#388530:b0#8192:f0#1024:\ :se#512:rm#4500: ############################################### # SEAGATE ST31200N # Set rotdelay = 0 ms for optimal file system perf (see tunefs(1M)) # SEAGATE_ST31200N_noswap|SEAGATE_ST31200N_noreserve:\ :No swap or boot:ns#38:nt#13:nc#2075:\ :s0#1025050:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31200N_42MB:\ :42 MB reserved for swap & boot:ns#38:nt#13:nc#1988:\ :s0#982072:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31200N_64MB:\ :64 MB reserved for swap & boot:ns#38:nt#13:nc#1943:\ :s0#959842:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31200N_96MB|SEAGATE_ST31200N:\ :96 MB reserved for swap & boot:ns#38:nt#13:nc#1876:\ :s0#926744:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31200N_120MB:\ :120 MB reserved for swap & boot:ns#38:nt#13:nc#1826:\ :s0#902044:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31200N_150MB:\ :150 MB reserved for swap & boot:ns#38:nt#13:nc#1764:\ :s0#871416:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31200N_200MB:\ :200 MB reserved for swap & boot:ns#38:nt#13:nc#1661:\ :s0#820534:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31200N_300MB:\ :300 MB reserved for swap & boot:ns#38:nt#13:nc#1453:\ :s0#717782:b0#8192:f0#1024:\ :se#512:rm#5400: ############################################### # SEAGATE ST31200W # Set rotdelay = 0 ms for optimal file system perf (see tunefs(1M)) # SEAGATE_ST31200W_noswap|SEAGATE_ST31200W_noreserve:\ :No swap or boot:ns#38:nt#13:nc#2075:\ :s0#1025050:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31200W_42MB:\ :42 MB reserved for swap & boot:ns#38:nt#13:nc#1988:\ :s0#982072:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31200W_64MB:\ :64 MB reserved for swap & boot:ns#38:nt#13:nc#1943:\ :s0#959842:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31200W_96MB|SEAGATE_ST31200W:\ :96 MB reserved for swap & boot:ns#38:nt#13:nc#1876:\ :s0#926744:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31200W_120MB:\ :120 MB reserved for swap & boot:ns#38:nt#13:nc#1826:\ :s0#902044:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31200W_150MB:\ :150 MB reserved for swap & boot:ns#38:nt#13:nc#1764:\ :s0#871416:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31200W_200MB:\ :200 MB reserved for swap & boot:ns#38:nt#13:nc#1661:\ :s0#820534:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31200W_300MB:\ :300 MB reserved for swap & boot:ns#38:nt#13:nc#1453:\ :s0#717782:b0#8192:f0#1024:\ :se#512:rm#5400: ############################################### # SEAGATE ST12400N # Set rotdelay = 0 ms for optimal file system perf (see tunefs(1M)) # SEAGATE_ST12400N_noswap|SEAGATE_ST12400N_noreserve:\ :No swap or boot:ns#31:nt#24:nc#2819:\ :s0#2097336:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST12400N_64MB:\ :64 MB reserved for swap & boot:ns#31:nt#24:nc#2735:\ :s0#2034840:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST12400N_96MB:\ :96 MB reserved for swap & boot:ns#31:nt#24:nc#2693:\ :s0#2003592:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST12400N_120MB:\ :120 MB reserved for swap & boot:ns#31:nt#24:nc#2661:\ :s0#1979784:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST12400N_176MB|SEAGATE_ST12400N:\ :176 MB reserved for swap & boot:ns#31:nt#24:nc#2588:\ :s0#1925472:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST12400N_250MB:\ :250 MB reserved for swap & boot:ns#31:nt#24:nc#2490:\ :s0#1852560:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST12400N_376MB:\ :376 MB reserved for swap & boot:ns#31:nt#24:nc#2324:\ :s0#1729056:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST12400N_600MB:\ :600 MB reserved for swap & boot:ns#31:nt#24:nc#2032:\ :s0#1511808:b0#8192:f0#1024:\ :se#512:rm#5400: ############################################### # SEAGATE ST12400W # Set rotdelay = 0 ms for optimal file system perf (see tunefs(1M)) # SEAGATE_ST12400W_noswap|SEAGATE_ST12400W_noreserve:\ :No swap or boot:ns#31:nt#24:nc#2819:\ :s0#2097336:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST12400W_64MB:\ :64 MB reserved for swap & boot:ns#31:nt#24:nc#2735:\ :s0#2034840:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST12400W_96MB:\ :96 MB reserved for swap & boot:ns#31:nt#24:nc#2693:\ :s0#2003592:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST12400W_120MB:\ :120 MB reserved for swap & boot:ns#31:nt#24:nc#2661:\ :s0#1979784:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST12400W_176MB|SEAGATE_ST12400W:\ :176 MB reserved for swap & boot:ns#31:nt#24:nc#2588:\ :s0#1925472:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST12400W_250MB:\ :250 MB reserved for swap & boot:ns#31:nt#24:nc#2490:\ :s0#1852560:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST12400W_376MB:\ :376 MB reserved for swap & boot:ns#31:nt#24:nc#2324:\ :s0#1729056:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST12400W_600MB:\ :600 MB reserved for swap & boot:ns#31:nt#24:nc#2032:\ :s0#1511808:b0#8192:f0#1024:\ :se#512:rm#5400: ############################################### # SEAGATE ST32430N # 2.0GB 8 bit single-ended SCSI # Set rotdelay = 0 ms for optimal file system perf (see tunefs(1M)) # SEAGATE_ST32430N_noswap|SEAGATE_ST32430N_noreserve:\ :No swap or boot:ns#31:nt#24:nc#2819:\ :s0#2097336:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST32430N_64MB:\ :64 MB reserved for swap & boot:ns#31:nt#24:nc#2735:\ :s0#2034840:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST32430N_96MB|SEAGATE_ST32430N:\ :96 MB reserved for swap & boot:ns#31:nt#24:nc#2693:\ :s0#2003592:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST32430N_120MB:\ :120 MB reserved for swap & boot:ns#31:nt#24:nc#2661:\ :s0#1979784:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST32430N_176MB:\ :176 MB reserved for swap & boot:ns#31:nt#24:nc#2587:\ :s0#1924728:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST32430N_250MB:\ :250 MB reserved for swap & boot:ns#31:nt#24:nc#2490:\ :s0#1852560:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST32430N_376MB:\ :376 MB reserved for swap & boot:ns#31:nt#24:nc#2324:\ :s0#1729056:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST32430N_600MB:\ :600 MB reserved for swap & boot:ns#31:nt#24:nc#2032:\ :s0#1511808:b0#8192:f0#1024:\ :se#512:rm#5400: ############################################### # SEAGATE ST32430W # 2.0GB 16 bit differential SCSI # Set rotdelay = 0 ms for optimal file system perf (see tunefs(1M)) # SEAGATE_ST32430W_noswap|SEAGATE_ST32430W_noreserve:\ :No swap or boot:ns#31:nt#24:nc#2819:\ :s0#2097336:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST32430W_64MB:\ :64 MB reserved for swap & boot:ns#31:nt#24:nc#2735:\ :s0#2034840:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST32430W_96MB|SEAGATE_ST32430W:\ :96 MB reserved for swap & boot:ns#31:nt#24:nc#2693:\ :s0#2003592:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST32430W_120MB:\ :120 MB reserved for swap & boot:ns#31:nt#24:nc#2661:\ :s0#1979784:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST32430W_176MB:\ :176 MB reserved for swap & boot:ns#31:nt#24:nc#2587:\ :s0#1924728:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST32430W_250MB:\ :250 MB reserved for swap & boot:ns#31:nt#24:nc#2490:\ :s0#1852560:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST32430W_376MB:\ :376 MB reserved for swap & boot:ns#31:nt#24:nc#2324:\ :s0#1729056:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST32430W_600MB:\ :600 MB reserved for swap & boot:ns#31:nt#24:nc#2032:\ :s0#1511808:b0#8192:f0#1024:\ :se#512:rm#5400: ############################################### # SEAGATE ST31230N # 1.0GB 8 bit single-ended SCSI # Set rotdelay = 0 ms for optimal file system perf (see tunefs(1M)) # SEAGATE_ST31230N_noswap|SEAGATE_ST31230N_noreserve:\ :No swap or boot:ns#38:nt#13:nc#2075:\ :s0#1025050:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31230N_42MB:\ :42 MB reserved for swap & boot:ns#38:nt#13:nc#1988:\ :s0#982072:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31230N_64MB:\ :64 MB reserved for swap & boot:ns#38:nt#13:nc#1943:\ :s0#959842:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31230N_96MB|SEAGATE_ST31230N:\ :96 MB reserved for swap & boot:ns#38:nt#13:nc#1876:\ :s0#926744:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31230N_120MB:\ :120 MB reserved for swap & boot:ns#38:nt#13:nc#1826:\ :s0#902044:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31230N_150MB:\ :150 MB reserved for swap & boot:ns#38:nt#13:nc#1764:\ :s0#871416:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31230N_200MB:\ :200 MB reserved for swap & boot:ns#38:nt#13:nc#1661:\ :s0#820534:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31230N_300MB:\ :300 MB reserved for swap & boot:ns#38:nt#13:nc#1453:\ :s0#717782:b0#8192:f0#1024:\ :se#512:rm#5400: ############################################### # SEAGATE ST31230W # 1.0GB 16 bit differential SCSI # Set rotdelay = 0 ms for optimal file system perf (see tunefs(1M)) # SEAGATE_ST31230W_noswap|SEAGATE_ST31230W_noreserve:\ :No swap or boot:ns#38:nt#13:nc#2075:\ :s0#1025050:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31230W_42MB:\ :42 MB reserved for swap & boot:ns#38:nt#13:nc#1988:\ :s0#982072:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31230W_64MB:\ :64 MB reserved for swap & boot:ns#38:nt#13:nc#1943:\ :s0#959842:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31230W_96MB|SEAGATE_ST31230W:\ :96 MB reserved for swap & boot:ns#38:nt#13:nc#1876:\ :s0#926744:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31230W_120MB:\ :120 MB reserved for swap & boot:ns#38:nt#13:nc#1826:\ :s0#902044:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31230W_150MB:\ :150 MB reserved for swap & boot:ns#38:nt#13:nc#1764:\ :s0#871416:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31230W_200MB:\ :200 MB reserved for swap & boot:ns#38:nt#13:nc#1661:\ :s0#820534:b0#8192:f0#1024:\ :se#512:rm#5400: SEAGATE_ST31230W_300MB:\ :300 MB reserved for swap & boot:ns#38:nt#13:nc#1453:\ :s0#717782:b0#8192:f0#1024:\ :se#512:rm#5400: ############################################### # SEAGATE ST32550 # 2.0GB 8 bit Fast SCSI # Set rotdelay = 0 ms for optimal file system perf (see tunefs(1M)) # SEAGATE_ST32550N_noswap|SEAGATE_ST32550N_noreserve:\ :No swap or boot:ns#54:nt#11:nc#3530:\ :s0#2096820:b0#8192:f0#1024:\ :se#512:rm#7200: ############################################### # SEAGATE ST15150 # 4.0GB 8 bit Fast SCSI # Set rotdelay = 0 ms for optimal file system perf (see tunefs(1M)) # SEAGATE_ST15150N_noswap|SEAGATE_ST15150N_noreserve:\ :No swap or boot:ns#54:nt#21:nc#3698:\ :s0#4193532:b0#8192:f0#1024:\ :se#512:rm#7200: