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
  •  


For Lenovo IdeaPad 3 15IIL05 15IML05 15ADA05 15ARE05 Palmrest Keyboard Touchpad picture

For Lenovo IdeaPad 3 15IIL05 15IML05 15ADA05 15ARE05 Palmrest Keyboard Touchpad

$59.25



For Lenovo Yoga 910-13IKB USB C Charging Port Board with Cable NS-A901 US picture

For Lenovo Yoga 910-13IKB USB C Charging Port Board with Cable NS-A901 US

$138.04



New For Lenovo IdeaPad Flex 5 14ALC05 Palmrest Keyboard Grey Backlit 5CB1C39900 picture

New For Lenovo IdeaPad Flex 5 14ALC05 Palmrest Keyboard Grey Backlit 5CB1C39900

$142.11



Lenovo ThinkPad T480 14

Lenovo ThinkPad T480 14" Touchscreen Laptop i5 256GB NVMe 16GB RAM Win 11 Pro

$249.00



Lenovo - LOQ 15.6

Lenovo - LOQ 15.6" Gaming Laptop FHD - Intel Core i5-13420H with 8GB Memory -...

$629.99



Lenovo Ideapad 1i 15.6

Lenovo Ideapad 1i 15.6" FHD Notebook Intel Core i5-1235U 8GB RAM 256GB SSD

$349.99



Lenovo 100e Chromebook Laptop 2nd Gen | 11.6

Lenovo 100e Chromebook Laptop 2nd Gen | 11.6" HD | MTK 1.7GHz | 4GB RAM | 32GB

$32.00



Lenovo ThinkPad Yoga 11e 11.6

Lenovo ThinkPad Yoga 11e 11.6" 2in1 Touch Intel Core i3 4GB RAM 128GB SSD Win10

$59.00



Notebook Lenovo Slim Pro 9 Laptop, 16

Notebook Lenovo Slim Pro 9 Laptop, 16" Glass, i9-13905H, GB, 1TB SSD

$1051.99



Lenovo ThinkPad 14

Lenovo ThinkPad 14" Laptop Computer Core i7 16GB RAM 256GB SSD Windows 10 Pro

$229.99