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
  •  


Windows 11 Home Mini PC Intel N4100 Quad Core 2.7GHz 8GB RAM DDR4 256GB SSD picture

Windows 11 Home Mini PC Intel N4100 Quad Core 2.7GHz 8GB RAM DDR4 256GB SSD

$89.59



Dell 9020 Optiplex Micro-Intel Core i5 - 1TB SSD 8GB RAM Window 11 picture

Dell 9020 Optiplex Micro-Intel Core i5 - 1TB SSD 8GB RAM Window 11

$119.49



Dell 14

Dell 14" TOUCHSCREN Laptop 8th Gen Core i5 16GB RAM 512GB SSD/256 Bluetooth W11

$235.00



HP Essential Laptop Computer 15.6

HP Essential Laptop Computer 15.6" HD Intel Core i7 8 GB memory; 128 GB SSD

$599.99



24

24" APPLE iMAC M1 4.5K RETINA 1TB SSD 16GB RAM 8-CORE 8-CORE GPU PURPLE 2021

$1595.00



Intel - Core i5-13600K 13th Gen 14 cores 6 P-cores + 8 E-cores 24M Cache, 3.5... picture

Intel - Core i5-13600K 13th Gen 14 cores 6 P-cores + 8 E-cores 24M Cache, 3.5...

$274.99



Intel - Core i5-13500 13th Gen 14 cores 6 P-cores + 8 E-cores, 24MB Cache, 2.... picture

Intel - Core i5-13500 13th Gen 14 cores 6 P-cores + 8 E-cores, 24MB Cache, 2....

$199.99



Apple 24 Inch 2021 iMac Apple M1 256GB SSD 8-Core GPU A2438 AppleCare+ 2025 picture

Apple 24 Inch 2021 iMac Apple M1 256GB SSD 8-Core GPU A2438 AppleCare+ 2025

$999.00



gaming pc with BLUETOOTH - AMD Ryzen 7: 5700X 4.6 GHz 8 core 16 thread, GTX 1650 picture

gaming pc with BLUETOOTH - AMD Ryzen 7: 5700X 4.6 GHz 8 core 16 thread, GTX 1650

$875.00



Lenovo Loq 15Irh8 15

Lenovo Loq 15Irh8 15" Laptop Core i5-13420H GeForce RTX 2050 16GB 512GB SSD W11H

$519.99