- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Using floppy
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
06-03-2003 06:44 AM
06-03-2003 06:44 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2003 06:49 AM
06-03-2003 06:49 AM
Re: Using floppy
The device needed to archive to a floppy device is /dev/fl0a.
The command:
tar cvf /dev/fl0a object
will write to the floppy disk the file object or all files in the
directory object.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2003 06:52 AM
06-03-2003 06:52 AM
Solution1) By setting the floppy to a HFS filesystem then copy it.
2) Using dos related copy utilities.
For 1.. (assuming c1t1d0 isyour floppy drive) .. insert a blank unformatted floppy, then run ..
# newfs -F hfs /dev/rfloppy/c1t1d0
# mkdir /temp
# mount /dev/floppy/c1t1d0 /temp
# cp
# ll /temp
# umount /temp
For 2.. insert a formatted dos floppy and run..
# doscp
# dosll /dev/rfloppy/c1t1d0:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2003 07:07 AM
06-03-2003 07:07 AM
Re: Using floppy
To copy the file from a floppy to your
HP-UX system, follow these steps 1
1. Create the special device file for the floppy drive using:
mknod /dev/rfloppy c 4 0xScAd00 Where Sc is the select code of
the low speed HP-IB and Ad is the address of the floppy drive
2. Copy the DOS file from the floppy to the HP-UX hard drive using:
doscp /dev/rfloppy:DOS_FILE /users/some_user/DOS_FILE
3. You can also use:
dosls /dev/rfloppy: To list the contents of the floppy.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2003 09:30 AM
06-03-2003 09:30 AM
Re: Using floppy
Another method:
Go to http://hpux.connect.org.uk/
search for mtools and install it via depot to your box, then you have new tools to access to your drive like a floppy in a windows box.
The new commands are mdir, mcopy and so on. You have not to type in the device for the floppy.
Frank.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2003 02:31 AM
06-05-2003 02:31 AM
Re: Using floppy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2003 11:10 AM
06-06-2003 11:10 AM
Re: Using floppy
The built in commands to work with floppy in HPUX is dos commands
doscp
you must use row floppy device /dev/rfloppy/cXtXdX:
(use ioscan -nfCfloppy to find the device)
you can use wild cards as "*" "." and so on
the problem with this tools is that is like in dos 8.3 file name.
example: doscp /dev/rfloppy/cXtXdX:/AST.TXT /tmp/ast.txt
* note that if ioscan would return the entry for floppy you may be need to compile the driver in the kernel (use sam or mk_kernel)
Caesar