- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Mount floppy drive
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
11-08-2004 02:05 AM
11-08-2004 02:05 AM
Mount floppy drive
mount /dev/fd0 /temp
system responds to specify filesystem type
I tried
mount -t tmpfs /dev/fd0 /temp
it mounts but I dont see any data on the floppy
What filesystem type should I use so I can see the floppy data?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2004 02:12 AM
11-08-2004 02:12 AM
Re: Mount floppy drive
however you're no suppose to explicitely specify the file system in such cases.RedHat versions of linux can mount it without the file system argument.
Maybe you have a problem with your floppy-try another one.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2004 02:12 AM
11-08-2004 02:12 AM
Re: Mount floppy drive
examples:
#mdir a:
#mcopy /var/tmp/file a:
There is no need to mount the disk.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2004 02:23 AM
11-08-2004 02:23 AM
Re: Mount floppy drive
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2004 02:49 AM
11-08-2004 02:49 AM
Re: Mount floppy drive
When mounting your floopy into a windows box, what is reported as FS type ?
is this file system appears in result of
ls /lib/modules/$(uname -r)/kernel/fs
(this command displays kernel modules for FS)
FS that have support build in kernel can be seen like this :
more /proc/filesystems
Other point : floppies are generally vfat or msdos.
Regards,
Fred
"Reality is just a point of view." (P. K. D.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2004 02:52 AM
11-08-2004 02:52 AM
Re: Mount floppy drive
mount -t vfat /dev/fd0 /temp
Regards,
Sergejs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2004 03:04 AM
11-08-2004 03:04 AM
Re: Mount floppy drive
# file -s /dev/fd0
maybe this helps...
Ciao
Claudio
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2004 04:52 AM
11-09-2004 04:52 AM
Re: Mount floppy drive
could be way off, it's been since 7 something since i used redhat.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2004 05:16 AM
11-09-2004 05:16 AM
Re: Mount floppy drive
mount /mnt/floppy
ls /mnt/floppy ...
on most linux boxes I have seen.