home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 August / PCWorld_1999-08_cd.bin / doc / HOWTO / mini / ZIP-Drive < prev    next >
Text File  |  1999-03-02  |  33KB  |  1,057 lines

  1.   Zip Drive Mini-HOWTO
  2.   Kyle Dansie,   dansie@ibm.net
  3.   v2.4, 10 January 1999
  4.  
  5.   This Document provides a quick reference quide on setting up and using
  6.   the Iomega ZIP drive with Linux.
  7.   ______________________________________________________________________
  8.  
  9.   Table of Contents
  10.  
  11.  
  12.   1. Introduction
  13.  
  14.      1.1 Home of this document
  15.  
  16.   2. Quick Start
  17.  
  18.   3. Configuring a kernel for the ZIP drive
  19.  
  20.      3.1 SCSI version
  21.  
  22.   4. The ZIP drive
  23.  
  24.      4.1 Parallel port version Zip100
  25.      4.2 SCSI external version
  26.         4.2.1 The ZIP ZOOM host adapter
  27.      4.3 The SCSI Internal version
  28.      4.4 The ZIP Plus - IMM driver
  29.      4.5 ATAPI version
  30.      4.6 IDE version
  31.      4.7 USB version
  32.      4.8 ZIP250 version
  33.  
  34.   5. Using the ZIP drive
  35.  
  36.      5.1 Fdisk, mke2fs, mount, etc.
  37.      5.2 An existing DOS formatted disk
  38.      5.3 Re-format as a native Linux disk
  39.      5.4 fstab entries
  40.      5.5 The ZIP Tools disk
  41.  
  42.   6. Performance
  43.  
  44.   7. Frequently asked questions
  45.  
  46.      7.1 Can I plug a printer into the parallel ZIP drive ?
  47.      7.2 Do you plan to support EPP/ECP ports in PPA ?
  48.      7.3 Can I run Linux from a ZIP drive ?
  49.      7.4 Can I boot from the ZIP drive ?
  50.      7.5 Why does Iomega use partition number 4 ?
  51.      7.6 How can I have the disk mounted at boot time ?
  52.      7.7 What happens if there is no disk inserted when I boot ?
  53.      7.8 Can I use the parallel drive as a real SCSI disk ?
  54.      7.9 Can PPA be used with Iomega's parallel port tape drives ?
  55.      7.10 Will PPA work with the parallel port SyQuest EZ135 ?
  56.  
  57.   8. Getting more current information
  58.  
  59.  
  60.  
  61.   ______________________________________________________________________
  62.  
  63.   1.  Introduction
  64.  
  65.   The Iomega ZIP drive is a popular, removable media disk drive.  It is
  66.   avaliable in several versions.
  67.   ╖  Parallel Port
  68.  
  69.   ╖  SCSI
  70.  
  71.   ╖  IDE - ATAPI
  72.  
  73.   ╖  Plus
  74.  
  75.      The most popular seems to be the Parallel port version. It has been
  76.      around a long time and it is low cost. The SCSI version has also
  77.      been around for a while but it needs a scsi card that many people
  78.      do not have already, so it it not quite as popular. The ATAPI
  79.      version now seems to be more available. The Plus is the newer
  80.      version of the ZIP drive.  It has the capability to detect what
  81.      port its plugged into, scsi or parallel. This document will focus
  82.      on the Parallel port version, but also offer some tips for other
  83.      versions.
  84.  
  85.  
  86.   This document incorporates information collected and published by
  87.   others, in particular:
  88.  
  89.   ╖  Grant Guenther, grant@torque.net
  90.  
  91.   ╖  Scot Wilcoxon, sewilco@fielday.mn.org
  92.  
  93.   ╖  Joe Mack, mack@ncifcrf.gov
  94.  
  95.   ╖  Byron Jeff, byron@cc.gatech.edu
  96.  
  97.  
  98.   I thank them for their important contributions, and accept
  99.   responsibility for any errors that I have introduced.
  100.  
  101.   A special thanks to Grant Guenther who wrote the 0.26 version of the
  102.   ppa program and also wrote the original version of this HOWTO.  If you
  103.   find any mistakes or oversights in this document, please let me know.
  104.   dansie@ibm.net
  105.  
  106.  
  107.   1.1.  Home of this document
  108.  
  109.   The most current version of this document will reside at
  110.   <http://www.njtcom.com/dansie/zip-drive.html>
  111.  
  112.  
  113.  
  114.   2.  Quick Start
  115.  
  116.   OK so you have purchased a new zip drive and now you want to use it.
  117.   Some distributions have the modules already built. You can try insmod
  118.   ppa for starters. (Make sure you have it hooked up and a disk
  119.   inserted).  If the ppa program is not there, then configure the
  120.   kernel.  My machine has 2 parallel ports, one for the zip and one for
  121.   the printer.  This makes things easy, no cable switching.
  122.  
  123.   Configure the kernel:
  124.  
  125.   ╖  cd /usr/src/linux
  126.  
  127.   ╖  make xconfig
  128.  
  129.   ╖  scsi support = Y
  130.  
  131.   ╖  scsi disk support = Y
  132.  
  133.   ╖  Iomega zip support as a module
  134.  
  135.   ╖  printer support also as a module
  136.  
  137.   ╖  save it and exit
  138.  
  139.   ╖  make dep
  140.  
  141.   ╖  make clean
  142.  
  143.   ╖  make zImage or zlilo or zdisk
  144.  
  145.   ╖  make modules
  146.  
  147.   ╖  make modules_install
  148.  
  149.   Now to use the drive:
  150.  
  151.   ╖  load the module insmod ppa
  152.  
  153.   ╖  build a mounting point. mkdir /zip
  154.  
  155.   ╖  insert a preformatted windoze type disk into the drive.
  156.  
  157.   ╖  mount the disk.  mount -t vfat /dev/sda4 /zip
  158.  
  159.   ╖  use any standard file commands as in  l /zip, ls /zip, df, cp,
  160.  
  161.   ╖  when you are finished  umount /zip
  162.  
  163.   If you had trouble with any of the previous steps, see the following
  164.   sections for more detailed instructions.
  165.  
  166.  
  167.  
  168.  
  169.   3.  Configuring a kernel for the ZIP drive
  170.  
  171.   To use the ZIP drive with Linux, you must have a kernel configured
  172.   with support for the SCSI system, support for SCSI disks, and support
  173.   for the host adapter you are using.  If you are not familiar with
  174.   building a kernel, you should read up on the Linux Kernel HOWTO
  175.   <http://metalab.unc.edu/mdw/HOWTO/Kernel-HOWTO.html> for information.
  176.  
  177.   You must begin the process of building a kernel with the configuration
  178.   step.  Here, you identify the specific kernel components that you
  179.   need. First step  cd /usr/src/linux. There are several ways to
  180.   actually do the configuration. Under X windows I use make xconfig.
  181.   There is also make menuconfig or make config for command line prompts.
  182.   The easiest way is with xconfig.
  183.  
  184.   In the section SCSI Support set SCSI support = Y.  Also set SCSI disk
  185.   support = Y.
  186.  
  187.   In the section SCSI low-level drivers you want to set IOMEGA Parallel
  188.   Port ZIP drive SCSI support = M. The M stands for modules.
  189.  
  190.   In the section Character Devices find and set Parallell Printer
  191.   support = M
  192.  
  193.   If you are a bit unsure about any of this, use zdisk for the make
  194.   step. This will build and install the kernel to floppy. If you screw
  195.   it up somehow, you still have a good bootable system on the hard
  196.   drive.
  197.  
  198.  
  199.   Now build the kernel with these steps:
  200.  
  201.   ╖  make dep
  202.  
  203.   ╖  make clean
  204.  
  205.   ╖  make zImage or zlilo or zdisk
  206.  
  207.   ╖  make modules
  208.  
  209.   ╖  make mdoules_install
  210.  
  211.   hint if you want to create an output log of the make zImage step you
  212.   can use
  213.  
  214.  
  215.           make zImage 2>&1 | tee zImage.out
  216.  
  217.  
  218.  
  219.  
  220.  
  221.   This is really a good thing to do, if you have compile errors or other
  222.   conflicts in the configuration, now you have a file with the error
  223.   messages or compile errors. This makes asking for help much easier.
  224.  
  225.   You also need to load the modules somewhere. On my system I just added
  226.   a couple of lines to the boot.local file.
  227.  
  228.   ╖  insmod ppa
  229.  
  230.   ╖  insmod lp
  231.  
  232.      My system is Suse 5.3 and this file is in /etc/rc.d. The location
  233.      of this file will vary by distribution, but there will be a file
  234.      somewhere, for local changes to be made at start up time. You
  235.      should use the file that is applicable for your distribution.
  236.  
  237.   Now shutdown and reboot.
  238.  
  239.   You can also build all or part of the SCSI system as modules.  If you
  240.   do this, be sure to load scsi.o, then sd.o and finally the driver for
  241.   your host adapter, before you try to access the ZIP drive.
  242.  
  243.  
  244.   3.1.  SCSI version
  245.  
  246.  
  247.   If you already have a SCSI disk in your system, and you are connecting
  248.   the ZIP drive to the same controller, there is no additional kernel
  249.   configuration required.  Otherwise, you will most likely have to build
  250.   a new kernel.
  251.  
  252.   If you are building a kernel to support the SCSI version of the ZIP
  253.   drive, you should select SCSI support and SCSI disk support.  You must
  254.   also select a driver for the interface card you will use. If you have
  255.   a ZIP Zoom, select the aha152x driver.
  256.  
  257.   Be sure to read the documentation for your adapter in the SCSI HOWTO
  258.   and any README files in the drivers/scsi subdirectory of the Linux
  259.   source tree.  Pay attention to command line parameters that you might
  260.   have to use to help the kernel initialise your adapter.
  261.  
  262.   For instance, if you are using the ZIP Zoom card, you will have to add
  263.   something like
  264.  
  265.                  aha152x=0x340,11,7,1
  266.  
  267.  
  268.  
  269.  
  270.   to the boot command (or include it in your /etc/lilo.conf file in an
  271.   append clause).  This tells the driver the port address and IRQ of
  272.   your ZIP Zoom card - be sure to use the numbers that correspond to the
  273.   way your jumpers are set.
  274.  
  275.   You should also read Paul Gortmaker's BOOTPROMPT HOWTO
  276.   <http://metalab.unc.edu/mdw/HOWTO/BootPrompt-HOWTO.html> for
  277.   information about configuring your kernel with LILO or LOADLIN.
  278.  
  279.  
  280.  
  281.  
  282.   4.  The ZIP drive
  283.  
  284.   There are at least five or six versions of the Iomega ZIP 100 drive.
  285.   The Iomega page for these drives is at
  286.   <http://www.iomega.com/product/zip/> They all accept special
  287.   cartridges resembling a 3.5" floppy disk that hold 100 megabytes of
  288.   data.  The disks actually hold 96 cylinders of 2048 sectors each
  289.   holding 512 bytes.  This would normally be called 96 Megabytes.
  290.  
  291.   The external drive comes in these types:
  292.  
  293.   ╖  Parallel port
  294.  
  295.   ╖  SCSI
  296.  
  297.   ╖  Plus
  298.  
  299.   The internal drive comes in these types:
  300.  
  301.   ╖  SCSI
  302.  
  303.   ╖  IDE
  304.  
  305.   ╖  ATAPI
  306.  
  307.   The internal versions can be mounted in 3.5 or 5.25 drive slots.  The
  308.   external versions are in a small blue plastic case enclosure, powered
  309.   by an external wall brick.
  310.  
  311.   All the drives have a large pushbutton on the front of the drive.
  312.   This is used to eject the disk.  Linux locks the door while using the
  313.   drive, but if the button is pressed while the door is locked, the ZIP
  314.   drive will remember and eject the disk as soon as the software unlocks
  315.   it.
  316.  
  317.  
  318.   4.1.  Parallel port version Zip100
  319.  
  320.   This drive is described at
  321.   <http://www.iomega.com/product/zip/zippp.html>
  322.  
  323.   The Linux driver comes in a couple of different versions. The 0.26
  324.   version of the ppa.c program ships standard with the 2.0.x kernels.
  325.   If your kernel is older than 2.0.35 then you have the OLD program.
  326.   Check out
  327.  
  328.   David Campbell's page <http://www.torque.net/~campbell/> for the more
  329.   current version of this program. At the time of this writing the
  330.   current version is 1.42.
  331.   The auto configuration features of the 1.4x program are very nice.
  332.   You do NOT have to tell the progam what the base address of the
  333.   parallel port is. The program will prob the standard address's for the
  334.   parallel ports and attach the drive when it finds it.
  335.  
  336.   The most common problem is to load the lp printer module before the
  337.   ppa program.  The ppa program must be loaded before the lp module. The
  338.   lp module will tie up the port that the zip drive needs, this is why
  339.   the ppa progam must be loaded first.
  340.  
  341.   Also be sure that all cables are firmly attached.
  342.  
  343.   If you did everything right :) you will see messages like this at boot
  344.   time.
  345.  
  346.  
  347.     VFS: Mounted root (ext2 filesystem) readonly.
  348.     Adding Swap: 102528k swap-space (priority -1)
  349.     ppa: Version 1.42
  350.     ppa: Probing port 03bc
  351.     ppa: Probing port 0378
  352.     ppa:     SPP port present
  353.     ppa:     EPP 1.9 with hardware direction protocol
  354.     ppa: Found device at ID 6, Attempting to use EPP 32 bit
  355.     ppa: Communication established with ID 6 using EPP 32 bit
  356.     ppa: Probing port 0278
  357.     ppa:     SPP port present
  358.     scsi0 : Iomega parport ZIP drive
  359.     scsi : 1 host.
  360.       Vendor: IOMEGA    Model: ZIP 100           Rev: D.09
  361.       Type:   Direct-Access                      ANSI SCSI revision: 02
  362.     Detected scsi removable disk sda at scsi0, channel 0, id 6, lun 0
  363.     SCSI device sda: hdwr sector= 512 bytes. Sectors= 196608 [96 MB] [0.1 GB]
  364.     sda: Write Protect is off
  365.       sda: sda4
  366.     lp2 at 0x0278, (polling)
  367.  
  368.  
  369.  
  370.  
  371.   You can view these messages with dmesg | more.  You can save the
  372.   messages to a file with dmesg > dmesg.txt.  This is often usefull if
  373.   you are trying to debug the installation.
  374.  
  375.  
  376.   Also see section ``Getting more information''
  377.  
  378.  
  379.   4.2.  SCSI external version
  380.  
  381.   This drive is described at
  382.   <http://www.iomega.com/product/zip/zipscsi.html>
  383.  
  384.   The external SCSI version of the ZIP drive has two DB25F connectors,
  385.   and two configuration switches.  One switch selects the drive's target
  386.   address. The choice is limited to target 5 or 6.  The other enables an
  387.   internal terminator, in case the drive is the last one on a chain.
  388.   The 25 pin SCSI connectors use the familiar Macintosh style wiring.
  389.   The drive is shipped with a Macintosh type cable, but standard cables
  390.   and converters are easily obtained if you are using a host adapter
  391.   with a Centronics or high-density connector.
  392.  
  393.   I have not seen an internal SCSI drive, but I would expect it to have
  394.   a standard 50 pin DIP header SCSI connector and the same two switches.
  395.  
  396.  
  397.   Make sure that the target address you choose does not conflict with
  398.   any other SCSI devices you may have on the same bus.  Also be sure
  399.   that the physically last drive in a chain has termination enabled, or
  400.   an external terminator installed.
  401.  
  402.   If you have an internal SCSI disk or CD-rom, and you connect your ZIP
  403.   drive to the existing adapter, you should check to see if there are
  404.   any terminators on the card that must be removed.  Only the two
  405.   extreme ends of the SCSI bus should be terminated.  If your bus is
  406.   partly internal and partly external, there should be one terminator on
  407.   the last external device and one on the last internal device, but no
  408.   terminators on the adapter card itself.
  409.  
  410.   Be sure that all cables are firmly attached.
  411.  
  412.   The kernel configuration is much the same as the internel version. See
  413.   the next section SCSI Internal version for an example configuration.
  414.  
  415.  
  416.   4.2.1.  The ZIP ZOOM host adapter
  417.  
  418.   Iomega markets a SCSI host adapter under the name ZIP Zoom.  This is
  419.   actually based on the design of the Adaptec AHA1520 family of
  420.   adapters.  It has an external Macintosh type DB25F connector,
  421.   compatible with the cable that comes with the ZIP drive.
  422.  
  423.   Linux supports this adapter with the aha152x driver.
  424.  
  425.  
  426.   4.3.  The SCSI Internal version
  427.  
  428.  
  429.  
  430.   Install hardware as described in the "Installation and Reference
  431.   Guide" noting which SCSI ID, IRQ and I/O Port Address are being used.
  432.   (You'll need this info later.) Things will go smother if the drive and
  433.   adapter card use different SCSI ID's.
  434.  
  435.   Beware The zip zoom card is hardwired for scsi ID number 7. The scsi
  436.   id in the command line below is for the card, not the drive. The card
  437.   and the drive must use different scsi id numbers. For example if the
  438.   card uses 7 then use 5 or some other number for the drive.
  439.  
  440.   Recompile the kernel after configuring it to include 'SCSI', 'SCSI
  441.   disk' and 'AHA152X/2825' support. INSTALL NEW KERNEL :-(
  442.  
  443.   Determine what your kernel command line is:
  444.  
  445.    aha152x=[I/O Port][,IRQ][,SCSI ID][,RECONNECT][,PARITY]
  446.  
  447.   For example :
  448.  
  449.     aha152x=0x140,10,7,1
  450.  
  451.   If your using LILO add your kernel command line to your lilo.conf file
  452.   using the append command.
  453.  
  454.   (ie. append = "aha152x=0x140,10,7,1")
  455.  
  456.   If your using LOADLIN add your kernel command line to the command you
  457.   use to initiate loadlin.
  458.  
  459.  
  460.     (ie. loadlin c:\vmlinuz root=/dev/hda3 aha152x=0x140,10,5,1 ro)
  461.  
  462.  
  463.   4.4.  The ZIP Plus - IMM driver
  464.  
  465.   This drive is described at
  466.   <http://www.iomega.com/product/zip/zipplus.html>
  467.  
  468.   This is a newer version of the external Zip drive. The
  469.    Zip Plus  does not use the ppa driver, instead it uses the
  470.    imm  driver.  Philippe Andersson sent in this excellent section on
  471.   the imm driver for the Zip Plus.  Thanks Philippe.
  472.  
  473.   First, rebuild your kernel to include the following items:
  474.  
  475.  
  476.   ╖  modules support
  477.  
  478.   ╖  SCSI support
  479.  
  480.   ╖  SCSI Disk support
  481.  
  482.   ╖  lp as a module (if you need it)
  483.  
  484.   You'll notice we didn't select any SCSI low-level driver. That's ok --
  485.   we'll build it separately later.
  486.  
  487.   Then, you need to get the driver source code from Dave Campbell's home
  488.   page (http://www.torque.net/~campbell/imm.tar.gz
  489.   <http://www.torque.net/~campbell/imm.tar.gz>). Version 0.18 is the
  490.   current one at the time of writing (Aug. 98). Unzip it and untar it
  491.   somewhere (under /usr/src, for instance). Then just run make. You'll
  492.   get the module you need (imm.o). Copy it to
  493.  
  494.   /lib/modules/$(uname -r)/scsi
  495.  
  496.  
  497.  
  498.   If your lp module was loaded (check with lsmod(1)), unload it (rmmod
  499.   lp), then load imm.o (insmod imm) and you're all set basically.
  500.  
  501.   If the ZIP drive was not connected and powered on at the time, you'll
  502.   get the message "init_module: Device or resource busy", and the module
  503.   won't load. (By the way, it looks like you don't need to switch your
  504.   PC off to connect the ZIP -- just make sure the module is not loaded
  505.   and the drive is turned off, then plug it in, turn the drive on, and
  506.   load the module.)
  507.  
  508.   If the ZIP was connected and powered on, but there was no disk in, the
  509.   module will load all right, but you'll get the message that it can't
  510.   read the disk partition table. This is ok, as the partition table will
  511.   be automatically read when you insert a ZIP disk.
  512.  
  513.   If there was a ZIP disk in, you'll get the full information displayed,
  514.   including a list of partitions defined on the disk and its Write
  515.   Protect status. Here is a sample load-time message:
  516.  
  517.  
  518.  
  519.  
  520.  
  521.  
  522.  
  523.  
  524.  
  525.  
  526.  
  527.  
  528.  
  529.   vger:~# insmod imm
  530.   imm: Version 0.18
  531.   imm: Probing port 03bc
  532.   imm: Probing port 0378
  533.   imm:     SPP port present
  534.   imm:     ECP with a 16 byte FIFO present
  535.   imm:     PS/2 bidirectional port present
  536.   imm:     Passed Intel bug check.
  537.   imm: Probing port 0278
  538.   scsi0 : Iomega ZIP Plus drive
  539.   scsi : 1 host.
  540.     Vendor: IOMEGA    Model: ZIP 100 PLUS      Rev: J.66
  541.     Type:   Direct-Access                      ANSI SCSI revision: 02
  542.   Detected scsi removable disk sda at scsi0, channel 0, id 6, lun 0
  543.   SCSI device sda: hdwr sector= 512 bytes. Sectors= 196608 [96 MB] [0.1 GB]
  544.   sda: Write Protect is off
  545.    sda: sda1
  546.   vger:~#
  547.  
  548.  
  549.  
  550.   One last remark to mention that this version of the driver also locks
  551.   the drive door while the disk is mounted. If the eject button is
  552.   pressed in this situation, nothing happens, but the drive "remembers"
  553.   and ejects the disk as soon as it is dismounted.
  554.  
  555.  
  556.  
  557.  
  558.   4.5.  ATAPI version
  559.  
  560.   This drive is described at
  561.   <http://www.iomega.com/product/zip/zipatapi.html>
  562.  
  563.   There was an IDE version of the drive produced for a while.  I think
  564.   that for the most part this has been replaced by the ATAPI version.
  565.  
  566.   Donald Stidwell sent in these comments on the ATAPI version. Thanks
  567.   Don.
  568.  
  569.   I use an ATAPI Zip drive and it works with both 2.0.32 and 2.0.33
  570.   kernels.  I've used it under both RH 5.0 and OpenLinux 1.2 (my current
  571.   used distribution).  To get it to work under OpenLinux, I just enabled
  572.   ATAPI floppy support in the kernel.  OpenLinux does not have this
  573.   support compiled in by default.
  574.  
  575.   No other drivers are needed.  It will mount as an extended partition
  576.   on partition 4.  I.E, mine mounts on HDB4.  I mount it under /mnt/zip
  577.   as noauto, although I don't suppose there would be any real problem
  578.   with automounting.  I just wonder about ejecting disks.  I always
  579.   dismount the drive before ejecting a cartridge.
  580.  
  581.   There are more detailed instructions for the ATAPI install in the
  582.   Linux Gazette May 1998 issue. See the 2 cent tip section.
  583.  
  584.  
  585.        <url url="http://www.linuxgazette.com/issue28/lg_tips28.html#atapi">
  586.  
  587.  
  588.  
  589.  
  590.  
  591.   4.6.  IDE version
  592.  
  593.  
  594.   I have not used the IDE version. Eric Backus sent in these comments.
  595.   Thanks Eric.
  596.  
  597.   I have one of these.  It came with my Gateway 2000 computer a year
  598.   ago.  I think most of these were shipped by large OEM companies like
  599.   this, before the ATAPI version of the ZIP drive was available.
  600.  
  601.   The good news about this drive: no kernel modules or modifications are
  602.   needed to support it.  It looks to the kernel like an IDE hard drive.
  603.   It worked for me with no effort with kernel 2.0.31 and 2.0.32.
  604.  
  605.   The bad news about this drive: because it doesn't use ATAPI, you can't
  606.   use the SCSI-to-ATAPI translation, which means you can't use mtools to
  607.   write-protect disks (or to eject them, for that matter).
  608.  
  609.  
  610.  
  611.   4.7.  USB version
  612.  
  613.   This drive is described at
  614.   <http://www.iomega.com/product/zip/imac.html>
  615.  
  616.   These drives look very cool and the USB interface also looks good. The
  617.   only problem is that the USB interface for Linux is still under
  618.   development at this time. So for now, this drive is not usable under
  619.   Linux. Check this address for updates.
  620.  
  621.   <http://peloncho.fis.ucm.es/~inaky/USB/news.html>
  622.  
  623.  
  624.   4.8.  ZIP250 version
  625.  
  626.   This drive is desribed at
  627.   <http://www.iomega.com/product/zip/zip250.html>
  628.  
  629.   This drive is new as of January 1999. I just bought one of these and
  630.   it works very well in Linux. Just use the IMM driver from
  631.   <http://www.torque.net/~campbell/imm.tar.gz> Set up the driver the
  632.   same way as the zip plus. Mainly just download the driver, unpack it,
  633.   and run make. Then copy the imm.o executable to the modules directory.
  634.   For example /lib/modules/2.0.35/scsi (The 2.0.35 is your kernel
  635.   version). If you are not sure of the version do uname -r.
  636.  
  637.  
  638.  
  639.  
  640.  
  641.   5.  Using the ZIP drive
  642.  
  643.   If you have built in all the required components, the kernel should
  644.   recognize your adapter and drive at boot time.  If you are using a
  645.   loadable module for your driver, the following discussion applies once
  646.   that module is loaded.
  647.  
  648.   For the most part, the SCSI and parallel versions of the drive behave
  649.   identically, except that the parallel version is somewhat slower.
  650.  
  651.  
  652.  
  653.   5.1.  Fdisk, mke2fs, mount, etc.
  654.  
  655.   Once you know the drive name for your ZIP drive, you are set.  You can
  656.   manipulate the drive with the normal Linux disk management commands.
  657.   fdisk (or perhaps cfdisk) is used to manipulate the partition tables
  658.   on the disk.  mke2fs can be used to format a partition with the ext2
  659.   filesystem - the one most commonly used in Linux.  mount is used to
  660.   connect a formatted partition into your directory hierarchy.
  661.   You should study the manual pages for these tools if you are not
  662.   familiar with them.  Be warned that there are now several quite
  663.   different versions of the fdisk program - be careful.
  664.  
  665.   I'll describe two common scenarios.
  666.  
  667.  
  668.   5.2.  An existing DOS formatted disk
  669.  
  670.   If you have a ZIP disk with a DOS file structure that was originally
  671.   created by Iomega's tools, the partition scan should say that the disk
  672.   has one partition, /dev/sda4.
  673.  
  674.   You should make a place to mount the disk, lets say /zip, and then
  675.   mount it as an MS-DOS filesystem:
  676.  
  677.  
  678.  
  679.               mkdir /zip
  680.               mount -t vfat /dev/sda4 /zip
  681.  
  682.  
  683.  
  684.  
  685.   You could also use msdos instead of vfat. vfat supports long filenames
  686.   where msdos does not.  Now, the files on the disk should appear in
  687.   /zip.  While the disk is mounted, you will not be able to remove it.
  688.   When you are finished with the disk you can umount it to release it
  689.   and detach it from your directory hierarchy.
  690.  
  691.  
  692.  
  693.               umount /zip
  694.  
  695.  
  696.  
  697.  
  698.   Once you've made the /zip mount point - you don't need to do it again,
  699.   so you could come back later and mount something else there.
  700.  
  701.  
  702.   5.3.  Re-format as a native Linux disk
  703.  
  704.  
  705.   If you want to erase a ZIP disk and make a Linux native file system on
  706.   it.  You should use fdisk on the entire disk:
  707.  
  708.  
  709.  
  710.               fdisk /dev/sda
  711.  
  712.  
  713.  
  714.  
  715.   and delete any existing partitions (with the d command).  Then create
  716.   a new partition with the n command, make it primary partition number
  717.   1, use w to write the partition table to disk, and quit with q.
  718.  
  719.   Format the partition
  720.  
  721.  
  722.  
  723.               mke2fs /dev/sda1
  724.  
  725.  
  726.  
  727.   (The 1 is the number that you gave this partition in fdisk).  Now you
  728.   can mount the disk:
  729.  
  730.  
  731.  
  732.               mount -t ext2 /dev/sda1 /zip
  733.  
  734.  
  735.  
  736.  
  737.   (re-using that mount point we created before).
  738.  
  739.  
  740.   5.4.  fstab entries
  741.  
  742.   The /etc/fstab allows you to configure the mount command. I like to be
  743.   able to mount and write to the zip disk from any login id on the
  744.   system. I added 2 lines to the end of the fstab file that look like
  745.   this.
  746.  
  747.  
  748.      /dev/sda1    /zip            ext2            noauto,rw,user,nosuid,sync
  749.      /dev/sda4    /zipdos         vfat            noauto,rw,user,nosuid,sync,mode=0777
  750.  
  751.  
  752.  
  753.  
  754.   These entries assume that you have a /zip and a /zipdos directory. If
  755.   you want all users ids to read and write, make sure you set the
  756.   permissions.  For exmaple  chmod 666 /zip . You must do the chmod as
  757.   root.  The fstab entries also assume that your dos disks are
  758.   partitioned as 4 (sda4 in my case), and the ext2(linux) disks are
  759.   partitoned as 1 (sda1).  You can read more about the fstab options
  760.   with man mount
  761.  
  762.   With the fstab entries as above you can mount a dos disk with
  763.    mount /zipdos If you are using a linux ext2 disk then use the command
  764.    mount /zip
  765.  
  766.  
  767.  
  768.   5.5.  The ZIP Tools disk
  769.  
  770.  
  771.   There is some extra work to be done if you want to use the disk that
  772.   comes with the ZIP drive.  As shipped, the software controlled write
  773.   protection is enabled.  Most people have unlocked the disk under DOS
  774.   before ever trying to use it with Linux.  Linux cannot access a locked
  775.   disk, and it must be unlocked with Iomega's tools.
  776.  
  777.   A native Linux program to manage the write protection feature, among
  778.   other things, is expected to be available soon.
  779.  
  780.  
  781.  
  782.   6.  Performance
  783.  
  784.   With the standard version of the 2.0.x kernels you get the 0.26
  785.   version of the ppa.c program. This is a very reliable simple program.
  786.   It has gotten a lot of use and abuse and held up rather well. The only
  787.   bad thing about this program is that it's not very fast. On my machine
  788.   I have version 2.0.30 kernel, and 2 parallel ports. This is also a
  789.   low-buck machine pentium 133 - 16 meg memory, 5 gig maxtor eide hard
  790.   drive. The machine cost me 500. U.S. Dollars and the drive was 250. I
  791.   am cheap but so what.
  792.  
  793.   I had the ZIP drive on the second port and the printer on the first
  794.   port. The second port was an old add in card, no epp mode. This made
  795.   the driver run in 4 bit mode.
  796.  
  797.   To base line the performance I copied the netscape tar file from the
  798.   hard drive to the zip drive. This file is about 10.6 meg.  Time 7
  799.   minutes 15 seconds. Going from the zip drive to the hard drive was
  800.   about 7 minutes even. Not exactly setting the world on fire.
  801.  
  802.   I then made 2 changes. First I switched the ZIP drive to the first
  803.   port and went into the bios and set EPP mode on for the first port.
  804.   At the same time I hooked up the printer to the 2nd port.
  805.  
  806.   Second change I went out and downloaded the new version of the program
  807.   from  David Campbells page <http://www.torque.net/~campbell/> Then I
  808.   installed this program. Check out the readme file that is included.
  809.  
  810.   Then I ran the same test again of copying the Netscape tar file to and
  811.   from the ZiP drive. The copy to the C drive was 1:55 seconds. From the
  812.   hard drive to the Zip drive was 1 minute flat. This compares to 7:15
  813.   and 7:00 with the old program. This was a big improvement over the
  814.   0.26 program.  This was also using the zip drive as a vfat file type.
  815.  
  816.   Next I formated a zip drive in ext2 format. Ran the same test again.
  817.   The copy going to the hard drive was only 50 seconds. The copy from
  818.   the hard drive to the Zip drive was only 40 seconds.
  819.  
  820.    Performance Summary
  821.  
  822.   For this test case of moving a 10.6 meg file, the 4 bit standard port
  823.   mode and program version 0.26 is the slowest 7:00 and 7:15
  824.  
  825.   The new program (1.41) and EPP mode with ext2 file types is the
  826.   fastest at 50 seconds and 40 seconds.
  827.  
  828.  
  829.  
  830.   7.  Frequently asked questions
  831.  
  832.   These are some of the questions that we get asked a lot.  Please read
  833.   the answers here before asking them again !
  834.  
  835.  
  836.   7.1.  Can I plug a printer into the parallel ZIP drive ?
  837.  
  838.   Yes, but.  Currently, you cannot have both the lp and ppa drivers
  839.   active on the same parallel port.  A resource sharing protocol has
  840.   been designed and is in the early stages of implementation, but will
  841.   not be available before Linux 2.0 is released.
  842.  
  843.   If you like living on the bleeding edge of things, get the 2.1.x
  844.   kernel and you can have port sharing. See
  845.   <http://www.cyberelk.demon.co.uk/parport.html>
  846.  
  847.   The easy way to do this with 2.0.x kernel is to have 2 parallel ports.
  848.   I bought my second one for about 15 dollars and it works great.  You
  849.   can use one for printing and one for your ZIP drive.  Just build a
  850.   kernel with both the lp and ppa drivers as modules. I use the newer
  851.   (1.41) version of ppa, so I just load ppa first (insmod ppa). It then
  852.   finds the zip drive on the first port.  Then I load lp (insmod lp) and
  853.   it assigns the printer to the second port.
  854.  
  855.   If you use the 0.26 version of the program then upgrade to 1.41 or
  856.   newer.  The only answer you will get on qustions about this driver is
  857.   to upgrade the program.
  858.  
  859.   7.2.  Do you plan to support EPP/ECP ports in PPA ?
  860.  
  861.  
  862.   Version 0.26 of the program does not support EPP. Version 1.41 does
  863.   support the EPP. This program is also much faster. See the performance
  864.   section for more details.
  865.  
  866.  
  867.   7.3.  Can I run Linux from a ZIP drive ?
  868.  
  869.   People have done this. It would seem this might make a great rescue
  870.   disk or a way to test an install.
  871.  
  872.   <http://metalab.unc.edu/LDP/HOWTO/mini/ZIP-Install.html>
  873.  
  874.  
  875.  
  876.   7.4.  Can I boot from the ZIP drive ?
  877.  
  878.   This depends on what you are using for a host adapter.  If your host
  879.   adapter has a BIOS ROM with code that can boot from target 5 or 6,
  880.   then yes, you can boot from the SCSI ZIP drive.  You cannot boot from
  881.   a parallel port drive.
  882.  
  883.   If you have DOS on your main disk and want to boot Linux from a ZIP
  884.   disk, you can do this using the LOADLIN boot loader.  Your kernel
  885.   image must be somewhere on the DOS disk, but the rest of your Linux
  886.   system could be on the ZIP.  Make sure that the kernel you use has the
  887.   correct drivers built in.
  888.  
  889.   As far as I am aware, there are no installation boot floppies for any
  890.   of the popular distributions that contain the parallel ZIP driver.
  891.  
  892.  
  893.   7.5.  Why does Iomega use partition number 4 ?
  894.  
  895.   This is one of the most popular questions, but I don't think anyone
  896.   has a definite answer to this one.  Could be they had their head where
  897.   the sun don't shine. Maybe there is no reason.
  898.  
  899.  
  900.   7.6.  How can I have the disk mounted at boot time ?
  901.  
  902.   All you need to do is to add a line to your /etc/fstab file.  For
  903.   instance, if you will always have a DOS disk in the drive when you
  904.   boot, you could put
  905.  
  906.  
  907.  
  908.               /dev/sda4   /zip  vfat  defaults  0 0
  909.  
  910.  
  911.  
  912.  
  913.   in the fstab.  Depending on your distribution, the initialization
  914.   scripts might try to run fsck on partitions listed in your fstab.  Be
  915.   aware that this could cause problems if you forget to put the disk in
  916.   the drive when you boot, or have the wrong disk there.
  917.  
  918.  
  919.   7.7.  What happens if there is no disk inserted when I boot ?
  920.  
  921.   The kernel will try to read the partition table, but the operation
  922.   will time out.  There is nothing to worry about.  Once you have
  923.   inserted a disk, and try to do something with it the kernel will
  924.   notice that there is a disk there now and rescan the partition table.
  925.   HINT: when you change disks, it is a good idea always to use fdisk to
  926.   check the partition structure on the new disk.
  927.  
  928.   The BIOS on some SCSI host adapters will attempt to read the partition
  929.   table on your disk during the system boot.  If you cannot disable this
  930.   check, you may be forced always to boot with a disk in the drive.
  931.  
  932.  
  933.   7.8.  Can I use the parallel drive as a real SCSI disk ?
  934.  
  935.   The PPA-3 parallel-to-SCSI adapter is implemented as a single ASIC
  936.   chip that Iomega calls a VPI0.  It is embedded on the ZIP drive's
  937.   controller card.  There is an actual SCSI bus present, but not in a
  938.   useful form.
  939.  
  940.   Although I haven't tried to compare the two cards, it seems logical
  941.   that the VPI0 replaces the conventional electrical buffering circuits
  942.   that would be required if the SCSI bus were extended outside the
  943.   package.
  944.  
  945.  
  946.  
  947.   7.9.  Can PPA be used with Iomega's parallel port tape drives ?
  948.  
  949.   No.  Those drives are floppy-tape drives. There is no SCSI involved.
  950.  
  951.   Several people have indicated an interest in applying my methods to
  952.   try to determine the protocol and develop a driver for these tapes.
  953.   The first step in that process is to get the DOS driver working under
  954.   DOSemu.  I have not yet heard that anyone has been successful in doing
  955.   it.
  956.  
  957.  
  958.   7.10.  Will PPA work with the parallel port SyQuest EZ135 ?
  959.  
  960.   No. The EZ135 is an IDE drive with a ShuttlePort parallel to IDE
  961.   converter embedded in it.
  962.  
  963.   However there has been some work done on this driver. Check out
  964.  
  965.   <http://www.torque.net/linux-pp.html>
  966.  
  967.  
  968.  
  969.   8.  Getting more current information
  970.  
  971.   More current versions of the parallel port zip drive (ppa.c) program
  972.   and current technical information of the driver can be found at
  973.  
  974.   <http://www.torque.net/~campbell/>
  975.  
  976.   Information of many parallel port external device drivers can be found
  977.   at
  978.  
  979.   <http://www.torque.net/linux-pp.html>
  980.  
  981.   Parallel Port sharing or through-port information is found at
  982.  
  983.   <http://www.cyberelk.demon.co.uk/parport.html>
  984.  
  985.   Installing Linux from a zip drive (for machines without a CD)
  986.  
  987.   <http://metalab.unc.edu/mdw/HOWTO/mini/Install-From-ZIP.html>
  988.  
  989.   An X frontend to the ziptool program can be found at
  990.  
  991.   <http://www.scripps.edu/~jsmith/jazip/>
  992.  
  993.   Information on configuration of Lilo can be found at
  994.  
  995.   <http://metalab.unc.edu/mdw/HOWTO/mini/LILO.html>
  996.  
  997.   Information on using bootprompts can be found at
  998.  
  999.   <http://metalab.unc.edu/mdw/HOWTO/BootPrompt-HOWTO.html>
  1000.  
  1001.   If you want to install the Linux OS onto a Zip Drive and run the OS
  1002.   from the Zip drive
  1003.  
  1004.   <http://metalab.unc.edu/LDP/HOWTO/mini/ZIP-Install.html>
  1005.  
  1006.   Iomega's web pages are at
  1007.  
  1008.   <http://www.iomega.com/>.
  1009.  
  1010.   And if you are looking for general information about parallel port
  1011.   programming for the PC, you might want to visit
  1012.  
  1013.   <http://www.lvr.com/parport.htm>
  1014.  
  1015.  
  1016.  
  1017.  
  1018.  
  1019.  
  1020.  
  1021.  
  1022.  
  1023.  
  1024.  
  1025.  
  1026.  
  1027.  
  1028.  
  1029.  
  1030.  
  1031.  
  1032.  
  1033.  
  1034.  
  1035.  
  1036.  
  1037.  
  1038.  
  1039.  
  1040.  
  1041.  
  1042.  
  1043.  
  1044.  
  1045.  
  1046.  
  1047.  
  1048.  
  1049.  
  1050.  
  1051.  
  1052.  
  1053.  
  1054.  
  1055.  
  1056.  
  1057.