Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to mount a floppy drive?? 2

Status
Not open for further replies.

CdnMoose

Technical User
Jul 22, 2008
1
CA
I am looking for advice on mounting a floppy drive on a Unix Sco system? Any advice is greatly appricated!! I am very weak with the Unix system/OS.

Thanks

Moose
 
Is this a floppy with a filesystem already on it?

I create a separate mount point for floppies, working as root in / I "mkdir fd0"
then still as root "mount /dev/fd0135ds18 /fd0" (floppy #0, double sided, high density)

and once finished move away from /fd0 and "umount fd0"

If the floppy doesn't have a filesystem you create it with "mkdev fd".

You can mount it most anywhere on the filesystem, many people mount it at /mnt.

Ed Fair
Give the wrong symptoms, get the wrong solutions.
 
Like edfair said, you simply need to

1) mkdir /floppy
2) /etc/mount /dev/fd0 /floopy

to reverse the process

1) /etc/umount /floppy

Notice that I am suggesting /dev/fd0 in lieu of /dev/fd0135ds18. I have found that trying to mount to /dev/fd0135ds18 is not always sucessful.

It is worth to mention that you cannot mount a device to an active directory or a directory which is currently mounted or running a process out of. You will get an error to that effect should you attempt to do so. Same goes if you try to un-mount the device, you cannot be within the mounted directory.





--
SouthBeach
The good thing about not knowing is the opportunity to learn - Yours truly, 2008.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top