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
  •  


OEM 130W Charger For Dell XPS 15 9530 9550 9560 9570 7590 06TTY6 Power Adapter picture

OEM 130W Charger For Dell XPS 15 9530 9550 9560 9570 7590 06TTY6 Power Adapter

$35.99



NEW OEM Dell 65W 19.5V Charger AC Power Supply Adapter For LA65NM130 332-1831 picture

NEW OEM Dell 65W 19.5V Charger AC Power Supply Adapter For LA65NM130 332-1831

$12.99



OEM 130W Charger For Dell XPS 15 9530 9550 9560 9570 7590 06TTY6 Power Adapter picture

OEM 130W Charger For Dell XPS 15 9530 9550 9560 9570 7590 06TTY6 Power Adapter

$35.99



M1MYR Dell OEM 130W AC Adapter 4.5mm Small Tip 4 Precision 5520 5530 M20 4MFJT picture

M1MYR Dell OEM 130W AC Adapter 4.5mm Small Tip 4 Precision 5520 5530 M20 4MFJT

$18.04



OEM Dell Inspiron 11 13 14 15 17 3000 5000 7000 AC Adapter Charger 65W 4.5mm Tip picture

OEM Dell Inspiron 11 13 14 15 17 3000 5000 7000 AC Adapter Charger 65W 4.5mm Tip

$10.99



OEM 130W USB-C Type-C Charger for Dell XPS 15 9500 9570 9575 17 9700 DA130PM170 picture

OEM 130W USB-C Type-C Charger for Dell XPS 15 9500 9570 9575 17 9700 DA130PM170

$35.88



OEM DELL 65W AC Adapter Charger 7.4mm Latitude 7490 7480 E7440 E7450 E7470 E7270 picture

OEM DELL 65W AC Adapter Charger 7.4mm Latitude 7490 7480 E7440 E7450 E7470 E7270

$11.88



OEM Dell Latitude E5450 E5440 E5420 E5404 E5400 90W AC Power Adapter Charger picture

OEM Dell Latitude E5450 E5440 E5420 E5404 E5400 90W AC Power Adapter Charger

$10.99



Brand New Dell OEM 180w AC Adapter. HA180PM220 (Works With Dell Docks+Laptops). picture

Brand New Dell OEM 180w AC Adapter. HA180PM220 (Works With Dell Docks+Laptops).

$24.99



OEM Genuine WDX0R WDXOR for DELL Inspiron Battery 15 5567 5568 13 5368 7368 42Wh picture

OEM Genuine WDX0R WDXOR for DELL Inspiron Battery 15 5567 5568 13 5368 7368 42Wh

$29.89