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
  •  


Vintage DEC/CLEARPOINT INC. -QRAM-2 SAB-1 1MB Q-BUS MEMORY MSV11-QA (B2) picture

Vintage DEC/CLEARPOINT INC. -QRAM-2 SAB-1 1MB Q-BUS MEMORY MSV11-QA (B2)

$129.99



Vintage DEC/The Redac mini cabinet front panel Digital Equipment Corp. 19

Vintage DEC/The Redac mini cabinet front panel Digital Equipment Corp. 19"

$269.99



Vintage Digital Equipment DEC Medical Systems Front Control Panel Bezel picture

Vintage Digital Equipment DEC Medical Systems Front Control Panel Bezel

$499.00



Vintage Digital Equipment DEC DECTAPE + 1 Extra Case (That's empty) picture

Vintage Digital Equipment DEC DECTAPE + 1 Extra Case (That's empty)

$74.99



DEC  PDP 8/M  PDP 8M / 4 avail / Vintage Digital Equipment Corp /Also DEC PDP 12 picture

DEC PDP 8/M PDP 8M / 4 avail / Vintage Digital Equipment Corp /Also DEC PDP 12

$5775.00



Vintage DEC Digital 018L 19-17043-02 DIP40 Gold Ceramic De/Serializer IC Chip picture

Vintage DEC Digital 018L 19-17043-02 DIP40 Gold Ceramic De/Serializer IC Chip

$7.95



DEC DIGITAL Equipment Corp VT220-D2 Vintage CRT Terminal picture

DEC DIGITAL Equipment Corp VT220-D2 Vintage CRT Terminal

$215.00



Vintage Digital DEC DC336 QBUS Interface/DMA Controller 21-21427-01 LSILIA0100 picture

Vintage Digital DEC DC336 QBUS Interface/DMA Controller 21-21427-01 LSILIA0100

$8.95



Vintage DEC Digital Equipment Corp PDP 11/40 G114 16K SENSE/INHIBIT (B10) picture

Vintage DEC Digital Equipment Corp PDP 11/40 G114 16K SENSE/INHIBIT (B10)

$269.99



VINTAGE DEC Digital RK11-D DISK CONTROL M7255 PDP 11 (B1) picture

VINTAGE DEC Digital RK11-D DISK CONTROL M7255 PDP 11 (B1)

$129.99