UNIX System V Mount Floppy Drive


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers UNIX System V Mount Floppy Drive
# 1  
Old 07-06-2013
UNIX System V Mount Floppy Drive

I have recently installed UNIX SysV on an old computer to try and expand my general knowledge of computers. I want to install NASM on it so I can begin working on some assembly language, but I am having trouble accessing the floppy disk with the files I need.
I've tried running
Code:
mount /dev/fd0 /mnt

Using fd0, fd1, fd, rfd0, rfd1.
On all of these devices, I get the message
Code:
mount: /dev/fd0 no such device

or
Code:
mount /dev/rfd0 not a block device

I would really appreciate some help with my situatioin, Thanks.
# 2  
Old 07-08-2013
I would look for suitable device names in /dev:
Code:
cd /dev
ls
ls f*

man pages might give a hint, too.
Code:
man mount

Another problem might be that the filesystem on the floppy is Windows-fat, not ufs or sysv. Then the mount will fail. A Linux box can help to translate between the different formats.
# 3  
Old 07-12-2013
Thanks for the reply.

When i run LS *F I get the following outcome.
FD0 FD1
FD *A Couple lines of Numbers*


When i run
Code:
mount fd0

or
Code:
mount fd1

I get the message
Code:
mount: mount point cannot be determined

If I try
Code:
mount fd

I get the message
Code:
mount: special cannot be determined

The floppy drive doesn't make a noise on either of the commands.
# 4  
Old 07-13-2013
a) mount needs a mount point unless it's defined in /etc/fstab.
b) are you sure it's upper case FD0 and FD1? Why then don't you mount FD0 /mnt?
# 5  
Old 07-13-2013
The fact that it accepts the first part of the command (fd0) then errors on the lack of the mount point is evidence that your device is fd0 or fd1.

In systems I work with I create a fd0 directory then mount to it:
mount /dev/fd0 /fd0
# 6  
Old 07-13-2013
Okay, my bad. They are lowercase.

If I try to mount fd0 or fd1 to the directory /mnt
Code:
mount /dev/fd0 /mnt

I still get the message
Code:
/dev/fd0 no such device

I get the same results with fd1.
# 7  
Old 07-13-2013
BrentBANKS,
you can try :
Code:
# dd if=/dev/fd0 of=/dev/null

- if the LED is lit , you ll know if this is the correct device you need to mount corresponding to your 'Floppy Drive', then you can go ahead with mount after pressing Ctrl +c.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

How to Mount a Unix share drive on Windows

We are trying to mount a Unix share drive on a Windows 2003 server to avoid transfering files accross the network using sftp. I can see shared drives on the Solaris server using the "share" command. How can I mount the drives on my Windows server so that I can read them directly. Do I need... (2 Replies)
Discussion started by: rbdenham
2 Replies

2. SCO

mounting USB floppy drive /Flash drive in OSR 6.0

Can anybody help me out to mount USB flash /floppy drive in sco openserver 6.0 . (5 Replies)
Discussion started by: sureshdrajan
5 Replies

3. Solaris

Solaris 10 floppy drive problem

I have inserted a diskette but I don't see the files nor the floppy drive. These are the commands I ran. #volcheck -v #rmformat With rmformat, only the CD-ROM is listed. I don't see any floppy drive. How can I get my floppy drive to work?? I know it is connected b/c when I boot in XP, I... (0 Replies)
Discussion started by: kungpow
0 Replies

4. UNIX for Dummies Questions & Answers

Mount a windows drive on unix

Hi, I would like to be able to mount windows xp to a unix system, so that I can pull data from windows machine for backup and store it on the unix server. Does anyone know how I can go about mounting the windows drive in unix. Thanks, Eric (4 Replies)
Discussion started by: ejbrever
4 Replies

5. AIX

mount floppy, to be sure

Hi there, I never touch a AIX because i'm used to work on FreeBSD. I'll have to copy some file from a floppy to an AIX. Just to be sure is the mount command the same ? I mean a simple mount /dev/fd0 /floppy should work ? Thanks :) (1 Reply)
Discussion started by: Yogz
1 Replies

6. UNIX for Dummies Questions & Answers

Floppy will not mount on SUSE

I have installed SUSE 10 on a laptop that has a swappable CDROM/Floppy drive. When I was installing the OS my CDROM was connected. Later I tried to swap it with the Floppy and mount it but no success. Here is what I get: dell:/dev # mount -t msdos /dev/fd0 /mnt /dev/fd0: Invalid argument ... (0 Replies)
Discussion started by: reedcat
0 Replies

7. UNIX for Dummies Questions & Answers

Mount a network computer/drive in unix?

:D hey all, how do you scan/mount a network drive or computer/directory? thanks (2 Replies)
Discussion started by: emplate
2 Replies

8. UNIX for Advanced & Expert Users

mount a floppy in UNIX BSDi 3

Anybody know how to mount a floppy in BSDi3 UNIX? Have tried all the standard commands with no luck. This includes: mount /dev/fd0 /mnt/floppy mount /mnt/floppy (3 Replies)
Discussion started by: jpalmer320
3 Replies

9. BSD

Floppy drive problem.

My FreeBSD install at ad0s1, and Windows 2000 at ad2s1. Everytime I start my FreeBSD, it shows me this message: fdc0: cmd 3 failed at out byte 1 of 3 pmtimer 0 on isa0 fdc0: cannot reserve I/O port range (6 ports) My Floppy drive info: 0x03F2 - 0x03F3 0x03F4 - 0x03F5 0x03F7 - 0x03F7... (6 Replies)
Discussion started by: _cs
6 Replies

10. UNIX for Dummies Questions & Answers

how to mount a hotswap scsi drive on a solaris 2.6 netra box using the mount command?

Hi... question is this: How do I mount an LVD hotswap scsi drive in bay #2 on a netra using the mount command? volmgt doesn't seem to mount it and/or I don't know how to view the drives data if it's formatted which it may not be. This drive is not new out of the box so I'm not sure. ... (4 Replies)
Discussion started by: soulshaker
4 Replies
Login or Register to Ask a Question