- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- how to mount floppy disk on rescue mode
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
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
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
тАО04-16-2007 01:42 AM
тАО04-16-2007 01:42 AM
One of my Redhat linux box down, I wanna cp some data from floppy disk to local disk on rescue mode.
how to mount floppy disk on rescue mode and copy file from floppy disk to local disk.
All files have been installed to /mnt/sysimage on redhat rescue mode. how to do it?
thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-16-2007 01:45 AM
тАО04-16-2007 01:45 AM
Re: how to mount floppy disk on rescue mode
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-16-2007 02:21 AM
тАО04-16-2007 02:21 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-16-2007 02:28 AM
тАО04-16-2007 02:28 AM
Re: how to mount floppy disk on rescue mode
Thanks for your reply.
Would you please give me details of how to mount the floppy disk and check and copy floppy files to redhat linux box local disk like /tmp.
/dev no floppy file and /mnt/floppy is empty.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-16-2007 03:14 AM
тАО04-16-2007 03:14 AM
Re: how to mount floppy disk on rescue mode
I tried:
# mount -t vfat /dev/fd0 /mnt/floppy
through check # ls /mnt/floppy, those files aren't the files that floppy disk.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-16-2007 03:39 AM
тАО04-16-2007 03:39 AM
Re: how to mount floppy disk on rescue mode
mkdir /mnt/fd0
mount -t vfat /dev/fd0 /mnt/fd0
mount /dev/floppy is usually a symlink to /dev/fd0, or whatever the device file for your floppy is. once mounted you us the cp command to copy the file(s) from /mnt/fd0 to /tmp.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-16-2007 04:07 AM
тАО04-16-2007 04:07 AM
Re: how to mount floppy disk on rescue mode
According as your method and steps, I have mounted the floppy disk to /mnt/fd0
but, through check /mnt/fd0, those data aren't the data of floppy disk.
with # floppy -p I could found my floppy is /dev/fd0 3.5'HD.
but with command #strings /dev/fd0 I found the data in the fd0 not the data of my floppy disk.
so, fd0 wrong, mnt/fd0 wrong too.
so what happied of my /dev/fd0.
BTW, my server is HP Proland Blade server, i used virtual Floppy drive, but I am sure I connect the desktop A: as linux BOX floppy device.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-16-2007 04:30 AM
тАО04-16-2007 04:30 AM
Re: how to mount floppy disk on rescue mode
# mkdir /floppy
# mount /dev/fd0 /floppy
# ls /floppy
see if the directory listing is correct. then you would have to copy the files to /mnt/sysimage/tmp/.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-16-2007 06:27 AM
тАО04-16-2007 06:27 AM
Re: how to mount floppy disk on rescue mode
Yes, I have run #chroot /mnt/sysimage
and according as your above steps, mkdir and mount /dev/fd0 to mount point. But in rescue mode maybe different with normal mode. the /dev/fd0 file through checked with command strings /dev/fd0, wrong data in the /dev/fd0, I have no idea why it like this, I have inserted another floppy disk into floppy disk "driver" (used "HP iLO", as we know, we used virtual floppy). but /dev/fd0 probably didn't link to floppy disk. so I could not mount correct data to /mnt/floppy.
How to fix it or do u have another method transfer some 1.3 MB data to a linux box that running in rescue mode?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-16-2007 07:18 AM
тАО04-16-2007 07:18 AM
Re: how to mount floppy disk on rescue mode
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-16-2007 08:18 AM
тАО04-16-2007 08:18 AM
Re: how to mount floppy disk on rescue mode
I wanna try use network tranfer data to rescue mode linux box.
BTW.
how to use NFS transfer data between Linux to unix or linux to linux.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-16-2007 08:25 AM
тАО04-16-2007 08:25 AM
Re: how to mount floppy disk on rescue mode
http://docs.hp.com/en/5991-6480/ch05s01.html
Basically you could setup an nfs server on your hp-ux box and mount it from redhat. this would be the syntax
mount server:\nfs_export_dir \some_mount_point
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-16-2007 08:27 AM
тАО04-16-2007 08:27 AM
Re: how to mount floppy disk on rescue mode
I will try it.
have a great day
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-16-2007 08:31 AM
тАО04-16-2007 08:31 AM
Re: how to mount floppy disk on rescue mode
That was an 11i v3 link. Here is a linkthat is probably more suitable:
http://docs.hp.com/en/5991-1153/ch02.html?btnPrev=%AB%A0prev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-16-2007 08:33 AM
тАО04-16-2007 08:33 AM
Re: how to mount floppy disk on rescue mode
http://docs.hp.com/en/5991-1153/ch02.html