Page 1 of 4 123 ... LastLast
Results 1 to 10 of 37

Thread: Zip Drive - Where is it?

  1. #1
    Senior Member registered user
    Join Date
    Jul 2004
    Location
    Wisconsin, USA
    Posts
    536

    Zip Drive - Where is it?

    I don't know where my zip drive is? Please help me find. It works in windows.

  2. #2
    Senior Member
    Join Date
    Nov 2003
    Posts
    1,323
    Would you post the output of the following commands after putting a disk in the drive:
    cat /proc/scsi/scsi
    cdrecord -scanbus
    sudo fdisk -l

  3. #3
    Senior Member registered user
    Join Date
    Jul 2004
    Location
    Wisconsin, USA
    Posts
    536
    cat /proc/scsi/scsi:

    Attached devices:
    Host :scsi0 channel: 00 vendor: HP Model: CD-Writer cd16f Rev: 1.1D
    Type: CD-ROM ANSI SCSI revision 02
    Host: scsi1 Channel: 00 Vendor: HL-DT-ST Model: DVD-ROM Rev: 0011
    Type: CD-ROM ANSI SCSI revision 02

    cdreocord -scanbus:

    Linux sg driver version: 3.5.30
    Using libscg version 'schily-0.8'
    scsibus0:
    0,0,0 0) 'HP ' 'CD Writer cd16f ' '1.1D' Removable

    scsibus1:
    1,0,0 100)'HL-DT-ST' 'DVD-ROM GDR816B' '0011' 'Removable'

    sudo fdisk -l

    device Boot start end blocks id system
    /dev/hda1 * 597 10586 75524400 7 HPFS/NTFS
    /dev/hda2 10587 10587 7560 f Win95 Ext'd (LBA)
    /dev/hda3 1 596 4505728 83 Linux
    /dev/hda5 10587 10587 7528+ 82 Linux swap

    Partition entries are not in disk order

    I don't see the zip drive or my floppy drive, both of which I can't get to work.

  4. #4
    Senior Member
    Join Date
    Nov 2003
    Posts
    1,323
    Hmm, didn't help much. Can you see anything about it getting detected in dmesg? How about trying to bootup with a disk in the drive. Is the disk you used formatted?

  5. #5
    Senior Member registered user
    Join Date
    Jul 2004
    Location
    Wisconsin, USA
    Posts
    536
    Cannot see anything from dmesg. I've tried to boot with a disk in and nothing. It is IBM formatted.

  6. #6
    Senior Member
    Join Date
    Nov 2003
    Posts
    1,323
    Well, as I don't have one of these I'm just grasping at straws here but how is it connected to your computer? I think different types use different modules.
    You could try this:
    mkdir /mnt/zip
    modprobe ppa
    modprobe imm
    mount /dev/??? /mnt/zip
    (you have to find out the device from /var/log/messages or syslog after modprobing)

  7. #7
    Senior Member registered user
    Join Date
    Jul 2004
    Location
    Wisconsin, USA
    Posts
    536
    I did all the above. When I did modprobe imm the drive ran and clicked but nothing else. How do I find out the device from /var/log.....? I don't exactly know. I did create device from right clicking and had it point to /dev/zip. When I click on the icon it says can't find /dev/zip in fstab or mtab. Is that a step that is needed for this to work, creating an entry in fstab?

  8. #8
    Senior Member
    Join Date
    Nov 2003
    Posts
    1,323
    I did create device from right clicking and had it point to /dev/zip
    I take it that you created a desktop icon? The device isn't "zip", it's what you created as mountpoint with mkdir /mnt/zip.
    After modprobing you can see if it's attached to sda? device, one of the following should find it:
    grep sda /var/log/messages
    dmesg|grep sda

    You could also try sdb, sdc, hdb or hdc.....
    You can test it as root with, say: mount /dev/sda4 /mnt/zip
    When you find the device you can add a line to fstab, otherwise only root can mount it. Example if the device is sda4:
    /dev/sda4 /mnt/zip vfat defaults,noauto,users,noatime,umask=000 0 0
    Best to try mounting it as root first so you'll see if it works, then worry about permissions.

  9. #9
    Senior Member registered user
    Join Date
    Jul 2004
    Location
    Wisconsin, USA
    Posts
    536
    When I grep sda /var/log/messages:

    date knoppix kernel: sda: Write Protect is off
    knoppix kernel: sda: cache data unavailable
    knoppix kernel: sda: sda4
    knoppix kernel: Attached scsi removable disk sda at scsi2, chan0, id6,lun 0


    Is that saying it is scsi2 or or what is that telling me?

    Do I add /dev/sda4 /mnt/zip vfat defaults,noauto,users,noatime,unmask=000 0 0 to my fstab?


    When i mount /dev/sda4 /mnt/zip

    mount: /dev/sda4 is not a valid block device

    Is this because no entry in fstab?

  10. #10
    Senior Member
    Join Date
    Nov 2003
    Posts
    1,323
    Quote Originally Posted by rrfish72
    When I grep sda /var/log/messages:

    date knoppix kernel: sda: Write Protect is off
    knoppix kernel: sda: cache data unavailable
    knoppix kernel: sda: sda4
    knoppix kernel: Attached scsi removable disk sda at scsi2, chan0, id6,lun 0


    Is that saying it is scsi2 or or what is that telling me?
    It's telling you the device is /dev/sda4

    Do I add /dev/sda4 /mnt/zip vfat defaults,noauto,users,noatime,unmask=000 0 0 to my fstab?
    Entries in fstab are mainly for giving permissions and parameters to mount devices, add the line to give users the right to use it.

    When i mount /dev/sda4 /mnt/zip
    mount: /dev/sda4 is not a valid block device
    Is this because no entry in fstab?
    Try first to mount it as root and specifying the filesystem if it's not detected: mount -t vfat /dev/sda4 /mnt/zip
    You can also check the filesystem used on the ZIP drive with: fdisk -l

Page 1 of 4 123 ... LastLast

Similar Threads

  1. Permanent home onto Sandisk USB flash drive ruined drive
    By mjman in forum Hardware & Booting
    Replies: 9
    Last Post: 10-25-2004, 09:46 PM
  2. How to copy an NTFS drive to another NTFS drive
    By Bothersome in forum MS Windows & New to Linux
    Replies: 5
    Last Post: 10-07-2004, 10:53 PM
  3. Hard Drive Salvage from corrupted Windows XP NTFS drive
    By kidsatacrux in forum MS Windows & New to Linux
    Replies: 19
    Last Post: 08-03-2004, 07:41 AM
  4. Replace default cd home drive with persistant home drive ???
    By ktheking in forum Customising & Remastering
    Replies: 6
    Last Post: 01-02-2004, 09:35 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Fanxiang SSD 4TB 2TB 1TB PS5 SSD M.2 NVME SSD 7300MBS PCIe 4.0 Solid State Drive picture

Fanxiang SSD 4TB 2TB 1TB PS5 SSD M.2 NVME SSD 7300MBS PCIe 4.0 Solid State Drive

$237.49



Fanxiang SSD 512GB 1TB 2TB 4TB 2.5''SATA III Internal Solid State Hard Drive LOT picture

Fanxiang SSD 512GB 1TB 2TB 4TB 2.5''SATA III Internal Solid State Hard Drive LOT

$188.09



Netac 1TB 2TB 512GB Internal SSD 2.5'' SATA III 6Gb/s Solid State Drive lot picture

Netac 1TB 2TB 512GB Internal SSD 2.5'' SATA III 6Gb/s Solid State Drive lot

$109.99



SAMSUNG SSD 870 EVO 1TB 500GB 250GB 2.5 inch SATA III 3 Solid State Drive US picture

SAMSUNG SSD 870 EVO 1TB 500GB 250GB 2.5 inch SATA III 3 Solid State Drive US

$88.34



Patriot P210 128GB 256GB 512GB 1TB 2TB 2.5

Patriot P210 128GB 256GB 512GB 1TB 2TB 2.5" SATA 3 6GB/s Internal SSD PC/MAC Lot

$13.99



Crucial MX500 CT250MX500SSD1 250 GB SATA III 2.5 in Solid State Drive picture

Crucial MX500 CT250MX500SSD1 250 GB SATA III 2.5 in Solid State Drive

$14.99



Samsung PM853T 960GB MZ7GE960HMHP 2.5'' 6Gb/s SATA SSD picture

Samsung PM853T 960GB MZ7GE960HMHP 2.5'' 6Gb/s SATA SSD

$32.00



Mushkin Reactor 500GB Internal 2.5

Mushkin Reactor 500GB Internal 2.5" SATA SSD Solid State Drive

$25.99



Fanxiang 4TB 2TB 1TB SSD 550MB/s 2.5'' SATA III Internal Solid State Drive lot picture

Fanxiang 4TB 2TB 1TB SSD 550MB/s 2.5'' SATA III Internal Solid State Drive lot

$209.99



Fanxiang SSD 512GB 1TB 2TB 4TB 2.5'' SSD SATA III Internal Solid State Drive lot picture

Fanxiang SSD 512GB 1TB 2TB 4TB 2.5'' SSD SATA III Internal Solid State Drive lot

$104.99