- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Xferring DOS files to LINUX w/o networking
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2002 09:20 PM
01-02-2002 09:20 PM
Xferring DOS files to LINUX w/o networking
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2002 10:21 PM
01-02-2002 10:21 PM
Re: Xferring DOS files to LINUX w/o networking
Tyr a null modem cable and setup your DOS machine as terminal to the serial interface on your linux system.
Rgds
Alexander M. Ermes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2002 01:57 AM
01-03-2002 01:57 AM
Re: Xferring DOS files to LINUX w/o networking
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 as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2002 06:44 PM
01-03-2002 06:44 PM
Re: Xferring DOS files to LINUX w/o networking
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2002 07:36 AM
01-04-2002 07:36 AM
Re: Xferring DOS files to LINUX w/o networking
mcopy a:my_file.zip .
and you are done.
Good Luck!