Mounting iomega zip drive

Ask a Question related to FreeBSD, Design and Development.

  1. #1

    Default Mounting iomega zip drive

    I use to be able to mount my paralell zip drive with
    the following command under Fbsd 4.x:

    mount -t msdos /dev/da0s4 /zip

    now I'm running 5.3 I can't, what changed?

    I noticed that there is only da0 in my /dev directory,
    I have this in my kernel:

    # SCSI peripherals
    device scbus # SCSI bus (required for SCSI)
    #device ch # SCSI media changers
    device da # Direct Access (disks)
    #device sa # Sequential Access (tape etc)
    device atapicam # emulate ATAPI devices as SCSI
    ditto via CAM
    device cd # CD
    device pass # Passthrough device (direct SCSI
    access)
    #device ses # SCSI Environmental Services (and
    SAF-TE)

    do I need anything else?

    __________________________________________________
    Converse com seus amigos em tempo real com o Yahoo! Messenger
    [url]http://br.download.yahoo.com/messenger/[/url]
    E. J. Cerejo Guest

  2. Similar Questions and Discussions

    1. system "hang" following IOMEGA zip250 enable
      Gents: Continuing (attempts at) enabling common system devices following Ubuntu 5.10 install. Latest failure with a hotplugable IOMEGA...
    2. Mounting MSDOS floppy drive
      I've mounted a floppy drive by: mount -t msdos /dev/fd0 /mnt/floppy and can then read the files on the floppy. However, if I remove that...
    3. Mounting Solaris Drive to Windows with NFS
      On 17 Jul 2003 16:00:32 -0700, Richard Crawford <rcrawford@unexmail.ucdavis.edu> wrote: Why not use Samba? It would greatly simplify your...
    4. Cannot copy a file from NFS mounted drive to windows C:\ drive
      I am using XLink NFS client ver 3.12 installed on my desktop using Windows XPP. I can see all the files on the NFS mounted drive say e: but I can...
    5. Mounting A Network Drive
      I am using Windows XP Home edition. I have all my files like pst for e-mail on a network file sever. I can mount these folders once I am logged on...
  3. #2

    Default Re: Mounting iomega zip drive

    On Mon, 2005-02-21 at 19:34, E. J. Cerejo wrote:
    > I use to be able to mount my paralell zip drive with
    > the following command under Fbsd 4.x:
    >
    > mount -t msdos /dev/da0s4 /zip
    >
    > now I'm running 5.3 I can't, what changed?
    >
    > I noticed that there is only da0 in my /dev directory,
    > I have this in my kernel:
    >
    > # SCSI peripherals
    > device scbus # SCSI bus (required for SCSI)
    > #device ch # SCSI media changers
    > device da # Direct Access (disks)
    > #device sa # Sequential Access (tape etc)
    > device atapicam # emulate ATAPI devices as SCSI
    > ditto via CAM
    > device cd # CD
    > device pass # Passthrough device (direct SCSI
    > access)
    > #device ses # SCSI Environmental Services (and
    > SAF-TE)
    >
    > do I need anything else?
    >
    > __________________________________________________
    > Converse com seus amigos em tempo real com o Yahoo! Messenger
    > [url]http://br.download.yahoo.com/messenger/[/url]
    > _______________________________________________
    > [email]freebsd-questions@freebsd.org[/email] mailing list
    > [url]http://lists.freebsd.org/mailman/listinfo/freebsd-questions[/url]
    > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org"
    Try running "cdrecord -scanbus", and see if the device number is
    different. This sounds somewhat similar to a problem I was having with
    a flash drive and DVD-burner.

    Mike Jeays Guest

  4. #3

    Default Re: Mounting iomega zip drive

    On Mon, 21 Feb 2005, E. J. Cerejo wrote:
    > I use to be able to mount my paralell zip drive with
    > the following command under Fbsd 4.x:
    >
    > mount -t msdos /dev/da0s4 /zip
    >
    > now I'm running 5.3 I can't, what changed?
    >
    > I noticed that there is only da0 in my /dev directory,
    > I have this in my kernel:
    >
    > # SCSI peripherals
    > device scbus # SCSI bus (required for SCSI)
    > #device ch # SCSI media changers
    > device da # Direct Access (disks)
    > #device sa # Sequential Access (tape etc)
    > device atapicam # emulate ATAPI devices as SCSI
    > ditto via CAM
    > device cd # CD
    > device pass # Passthrough device (direct SCSI
    > access)
    > #device ses # SCSI Environmental Services (and
    > SAF-TE)
    >
    > do I need anything else?
    I've got a parellel port zip drive running on a 5.3 system at home. From
    memory, I think what you need is:
    device vpo

    Luke Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139