- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Floppy disk file system?
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
12-05-2000 09:12 AM
12-05-2000 09:12 AM
disk and then mount the disk?
What commands are needed?
I want to be abbe to put scripts and small programs on the floppy
to mount temperarily on other (production) systems.
Theses system neede to be squeeky clean; don't even
want to coy the file then delete because of security issues.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2000 09:48 AM
12-05-2000 09:48 AM
Re: Floppy disk file system?
# mkdir /floppy (to create mountpoint)
# mount /dev/dsk/{floppy_device} /floppy
# cp {files} /floppy
# umount /floppy
Take the disk to the other machine, mount it, copy the files off, then umount.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2000 10:07 AM
12-05-2000 10:07 AM
Re: Floppy disk file system?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2000 10:22 AM
12-05-2000 10:22 AM
Re: Floppy disk file system?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2000 10:45 AM
12-05-2000 10:45 AM
Re: Floppy disk file system?
http://us-support2.external.hp.com/cki/bin/doc.pl/sid=88bcc50a0a47554801/screen=ckiDisplayDocument?docId=200000024604168
Another link:
http://us-support2.external.hp.com/cki/bin/doc.pl/sid=88bcc50a0a47554801/screen=ckiDisplayDocument?docId=200000006341530
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2000 11:16 AM
12-05-2000 11:16 AM
Re: Floppy disk file system?
I'm try to be very careful in what I do so don't mess up my system.
I was hopeing someone has done this before, so I could remove some of the risk.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2000 11:36 AM
12-05-2000 11:36 AM
Re: Floppy disk file system?
To summarize:
Format the floppy on a PC. Then you can use the HPUX dos* commands (doscp, dosls, etc -- 'man -k dos' to get a list') on the floppy with the syntax 'doscp /etc/hosts /dev/dsk/c#t#d#:/etc/hosts' to copy the /etc/hosts files from your unix machine to the /etc/ directory on the floppy drive.
I think this will accomplish what you want without having to mount or newfs the floppy and it will be portable between your HPUX boxes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2000 12:10 PM
12-05-2000 12:10 PM
Solution# newfs -F hfs /dev/rfloppy/{floppy_device}
The only risk involved is getting the name of the floppy device correct.
It will help us if you provide the model floppy drive and os level you are working with.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2000 02:32 AM
12-06-2000 02:32 AM
Re: Floppy disk file system?
what I want to do! Thank you. I'm suprized it didn't
need any options!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2000 03:47 AM
12-06-2000 03:47 AM
Re: Floppy disk file system?
Happy copying!
Cheryl