Operating System - Linux
1827294 Members
2899 Online
109960 Solutions
New Discussion

Re: Xferring DOS files to LINUX w/o networking

 
Gerald_2
Occasional Contributor

Xferring DOS files to LINUX w/o networking

Hi,

I don't have networking in place between my MS/DOS computers and
my LINUX computer since the driver for my LINUX computer is
a .zip file copied on a floppy
disk from my MS/DOS computer.
My question is w/o networking
what is the next best way to get the driver onto my LINUX machine?


Thanks,


gerald
Test until the tester is dead
4 REPLIES 4
Alexander M. Ermes
Honored Contributor

Re: Xferring DOS files to LINUX w/o networking

Hi there.
Tyr a null modem cable and setup your DOS machine as terminal to the serial interface on your linux system.
Rgds
Alexander M. Ermes
.. and all these memories are going to vanish like tears in the rain! final words from Rutger Hauer in "Blade Runner"
Marcin Golembski_1
Honored Contributor

Re: Xferring DOS files to LINUX w/o networking

If you have your .zip fileon a DOS formatted floppy you can simply mount that floppy on your Linux PC:

mount -t msdos /dev/fd0 /floppy
or
mount -t vfat /dev/fd0 /floppy

where /dev/fd0 is the floppy disk drive device file and /floppy is a directory through which you want to access the files on the floppy (create it, if it's not there; some Linux distributions have /mnt/floppy already created for this purpose but it is really a directory of your choice). When the floppy is mounted you can access the files on it just like any other file in Linux. Copy the file to an empty directory, cd to that directory, and unzip the file:

unzip yourfile.zip

HTH,
Marcin
Mark Fenton
Esteemed Contributor

Re: Xferring DOS files to LINUX w/o networking

Sneaker net is definately the way to go here.
Felix J. Liu
Advisor

Re: Xferring DOS files to LINUX w/o networking

slide the floppy disk into the drive on the Linux machine, login, (as root?), go to the proper directory, type

mcopy a:my_file.zip .

and you are done.

Good Luck!