Access ZIP drive attached to Linux PC from windows?

Access ZIP drive attached to Linux PC from windows?

Post by Erik Cuyne » Thu, 03 Jun 1999 04:00:00



Hi,

at our office, we recently have installed a linux PC, being part of a large
ethernet network.
The other 4 PCs are running win98 and  are connected to the network as well.
what must be done in order to allow all 4 PCs to read and write files from a
ZIP
drive attached to the linux PC???

Please provide sufficient information, I am a Linux newbie ; - )

Thank you in advance!

system: SuSE 6.1
Pentium II
ZIP 100 MB

 
 
 

Access ZIP drive attached to Linux PC from windows?

Post by Hugh Saunder » Thu, 03 Jun 1999 04:00:00


Quote:

>at our office, we recently have installed a linux PC, being part of a large
>ethernet network.
>The other 4 PCs are running win98 and  are connected to the network as
well.
>what must be done in order to allow all 4 PCs to read and write files from
a
>ZIP
>drive attached to the linux PC???

>Please provide sufficient information, I am a Linux newbie ; - )

You'd probably be better off attaching the ZIP drive to one of the Win98
machines and sharing the drive using the Windows networking. Using Linux
will involve setting up Samba (which is a worthwhile effort in its own
right) and the Zip drive.

Fortunately, if you still want to do this with Linux, there are HOWTOs on
both setting up Samba and using a Zip drive with Linux (mini HOWTO). Try
http://www.suse.de/e/ and go to the documentation section.

Hugh

 
 
 

Access ZIP drive attached to Linux PC from windows?

Post by Lew Pitch » Thu, 03 Jun 1999 04:00:00



>Hi,

>at our office, we recently have installed a linux PC, being part of a large
>ethernet network.
>The other 4 PCs are running win98 and  are connected to the network as well.
>what must be done in order to allow all 4 PCs to read and write files from a
>ZIP
>drive attached to the linux PC???

>Please provide sufficient information, I am a Linux newbie ; - )

You are going to need 3 things...
1) software to make files on the Linux system available to the Win98 systems
   Look into - Samba for "Microsoft Networks" (SMB) support, or
             - Mars NWE for "Netware Bindary" support, or
             - NFS for Sun Network File System support.
   Win98 comes with the client for "Microsoft Networks" and Netware, so no
   additional software will be required, but if you choose to use NFS, you'll
   have to acquire and install a (likely commercial) NFS client on each Win98
   system.

2) TCP/IP enabled on each of the Win98 systems, and

3) A suitable file system driver installed on Linux (i.e. VFAT, DOS, etc.)
   Since you are using a ZIP drive, you'll probably be exchanging disks with
   other systems, and these disks are likely to be formatted for MSDOS/Windows,
   rather than Linux. If so, then your Linux system will need file-system support
   for MSDOS/Windows file systems enabled.

Lew Pitcher
System Consultant, Integration Solutions Architecture
Toronto Dominion Bank


(Opinions expressed are my own, not my employer's.)

 
 
 

Access ZIP drive attached to Linux PC from windows?

Post by Mac Q. Flore » Thu, 03 Jun 1999 04:00:00


if you are already able to access your ZIP drive from your linux PC, the
next step is to make sure that you can access your linux PC from your
windows boxes.  to do this you need to run and configure SAMBA in your
linux PC.  read

 http://metalab.unc.edu/LDP/HOWTO/SMB-HOWTO.html

also,  smb must be configured in your kernel.  on the windows side, they
must be running client for MS networks.
-----------------------------


> Hi,

> at our office, we recently have installed a linux PC, being part of a
large
> ethernet network.
> The other 4 PCs are running win98 and  are connected to the network as
well.
> what must be done in order to allow all 4 PCs to read and write files
from a
> ZIP
> drive attached to the linux PC???

> Please provide sufficient information, I am a Linux newbie ; - )

> Thank you in advance!

> system: SuSE 6.1
> Pentium II
> ZIP 100 MB

 
 
 

Access ZIP drive attached to Linux PC from windows?

Post by Steve Pacen » Sun, 06 Jun 1999 04:00:00



>at our office, we recently have installed a linux PC, being part of a large
>ethernet network.
>The other 4 PCs are running win98 and  are connected to the network as well.
>what must be done in order to allow all 4 PCs to read and write files from a
>ZIP
>drive attached to the linux PC???

Large network with 5 PCs :^) .

>Please provide sufficient information, I am a Linux newbie ; - )

>Thank you in advance!


I have a setup at work similar to yours.  RedHat 5.2 originally but
the notes below should apply to your SUSE distribution.  I am not
concerned about security within my work group, so I'm letting any user
have access to the shared Zip drive.

1. Install Samba.  This probably comes with your Linux distribution.
Or www.samba.org .  Setup sometimes

2. To use DOS-formatted Zip disks with my external SCSI Zip-100 drive,
I added the following in my /etc/fstab file:

/dev/sda4  /mnt/zip  vfat  user,exec,dev,noauto,rw,umask=000,suid 0 0

3. In my Samba configuration file, /etc/smb.conf, I have the section:

[zip]
    path = /mnt/zip
    read only = no
    writable = yes
    public = yes

4. A difference from using Zip drives directly on a Windows machine is
that you have to explicitly mount and unmount the zip disks on the
Linux machine when you insert or eject the disk.  Unmounting can be an
annoyance since all of the Windows machines have to relinquish any
connections to the shared zip drive before the unmount will succeed
(This is good, since it protects data on the disk from corruption).

5. After mounting, from the Windows machines use Explorer to "map
network drive:"

  \\linuxserver\zip

as you would any shared folder on another Win machine.

Email directly if you have any questions about the above.

-- regards, SP

 
 
 

Access ZIP drive attached to Linux PC from windows?

Post by Robert Farne » Sun, 13 Jun 1999 04:00:00


Hello Lew,

     I am having a problem installing a program called "QT" www.troll.no on linux
6.0.  If you have the time and the desire to assist please let me know and I will
tell you what I have done to this point.  It has to be a small problem, but I
haven't been able to figure out what it is and I have spend hours.  Thanks in
advance :-)

p.s.  My name is Bob, I am sending this note from Alabama :-)



> >Hi,

> >at our office, we recently have installed a linux PC, being part of a large
> >ethernet network.
> >The other 4 PCs are running win98 and  are connected to the network as well.
> >what must be done in order to allow all 4 PCs to read and write files from a
> >ZIP
> >drive attached to the linux PC???

> >Please provide sufficient information, I am a Linux newbie ; - )

> You are going to need 3 things...
> 1) software to make files on the Linux system available to the Win98 systems
>    Look into - Samba for "Microsoft Networks" (SMB) support, or
>              - Mars NWE for "Netware Bindary" support, or
>              - NFS for Sun Network File System support.
>    Win98 comes with the client for "Microsoft Networks" and Netware, so no
>    additional software will be required, but if you choose to use NFS, you'll
>    have to acquire and install a (likely commercial) NFS client on each Win98
>    system.

> 2) TCP/IP enabled on each of the Win98 systems, and

> 3) A suitable file system driver installed on Linux (i.e. VFAT, DOS, etc.)
>    Since you are using a ZIP drive, you'll probably be exchanging disks with
>    other systems, and these disks are likely to be formatted for MSDOS/Windows,
>    rather than Linux. If so, then your Linux system will need file-system support
>    for MSDOS/Windows file systems enabled.

> Lew Pitcher
> System Consultant, Integration Solutions Architecture
> Toronto Dominion Bank


> (Opinions expressed are my own, not my employer's.)

 
 
 

1. HELP: IDE ZIP drive and Red hat, cannot access Zip drive

Hi Linux friends,

I have a IDE ZIPdrive and want to use it under Linux
Currently I have Redhat 4.1 installed.

During start-up it finds my IDE zip at /dev/hdc (/dev/hdb
is my IDE cdrom), however any attempt to mount a disk or to access with
mtools failed. Mtools gives me a read error, with obscure messages like
hdc: packect command error: status=0x51 error=0x50.... (sigh)

Do I have to upgrade to Redhat 5.0. I read somewhere that it might work.
Does anybody has more experience with this matter and hence could
anybody give me some valuable advice, before I run to the store and buy
redhat 5.0 or get myself a scsi ZIP drive.

Thanx guys,

Hans Kramer

2. Printing Question (Newbie)

3. Can I use the printer attached a PC Windows 95 or Windows NT

4. Big Hard Disk partition?

5. pc doesn't boot without a Zip disk in the Zip Drive

6. : IPCP: timeout sending Config-Requests?

7. Accessing a Windows PC Hard Drive from a Unix box on a network

8. CMD649 on SMP 2.4.19-pre10-ac2: still not working: please help

9. Attaching IOMEGA Zip drive after boot?

10. Must I run /sbin/initrd to attach Zip drive?

11. Help!Installing iomega zip drive to home pc/linux

12. share Zip drive: Sparc10 & PC, both Linux

13. How to access Windows NT server and windows based PC