Floppy will not mount on SUSE


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Floppy will not mount on SUSE
# 1  
Old 01-09-2006
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

mount: block device /dev/fd0 is write-protected, mounting read-only
/dev/fd0: Invalid argument
mount: /dev/fd0: can't read superblock

/etc/fstab doesn't have an entry for floppy. It almost looks like it doesn't see the hardware however when I run YaST hardware info it finds floppy disk controller OK. How can I fix this?

PS. I tried to reboot - same result
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

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 mount /dev/fd0... (23 Replies)
Discussion started by: BrentBANKS
23 Replies

2. OS X (Apple)

howto mount mac volume on suse 11

as the title states, i cant mount suse of apple volumes on either box. have tryed afpfs-ng but no love. anyone have a suggestion than samba (because i dislike MS) and NFS because i don't know jack about it..... yet thanks in advance julz (4 Replies)
Discussion started by: biorhythm
4 Replies

3. UNIX for Advanced & Expert Users

SuSe Linux Mount

Hi everyone, I am new to Linux and I hope to have some advise. Suppose I have 2 differnt users who require differnt mount drives. When user1 logs in, his required drives are mounted. When user2 logs in, user1's drives are unmounted and user2's drives are mounted. May I know how I can achieve... (2 Replies)
Discussion started by: viper81
2 Replies

4. 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

5. UNIX for Dummies Questions & Answers

How do i access (mount, read & write) a floppy disk from the console, not being root?

welll, the title quite explains what i want to do thanks for your time! (4 Replies)
Discussion started by: kfaday
4 Replies

6. 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

7. UNIX for Dummies Questions & Answers

Suse Floppy not available

HI, I installed Suse 8.1 on an Emachine with a Cyrix processor equivelent to Pentium II. The dmesg reveals that the floppy was recognised, and there is an icon on the desktop for it, but when I trey to access it, it is not available. If I access it from a terminal window, the error I get... (7 Replies)
Discussion started by: Sonshyne5
7 Replies

8. UNIX for Advanced & Expert Users

Suse Linux mount problems ?

We are experiencing several startup problems at boot time. In our /etc/rc.d/boot script we have "swapon -a -v &> /dev/null/' (without the quotes). We have also added echo statements to make it visible on the HMC during IPL. The echo statements are seen but there no messages for the swapon... (1 Reply)
Discussion started by: darthur
1 Replies
Login or Register to Ask a Question
pods::SDL::CDTrack(3pm) 				User Contributed Perl Documentation				   pods::SDL::CDTrack(3pm)

NAME
SDL::CDTrack -- SDL Bindings for structure SDL_CDTrack CATEGORY
Core, CDROM, Structure SYNOPSIS
use SDL; use SDL::CDROM; use SDL::CD ':status'; use SDL::CDTrack; SDL::init( SDL_INIT_CDROM ); my $drives = SDL::CDROM::num_drives(); if( $drives > 0 ) { my $CD = SDL::CD->new(0); #first drive's CD if($CD) { if( $CD->status != CD_TRAYEMPTY ) { my $track = SDL::CD->track(0); } } } CONSTANTS
The constants are exported by default. You can avoid this by doing: use SDL::CDTrack (); and access them directly: SDL::CDTrack::SDL_AUDIO_TRACK; or by choosing the export tags below: Export tag: ':type' SDL_AUDIO_TRACK SDL_DATA_TRACK METHOD
id $track->id() # 0-99 Track number type $track->type() # SDL_AUDIO_TRACK or SDL_DATA_TRACK Type of track length $track->length() Length, in frames, of this track offset $track->offset() Frame offset to the beginning of this track SEE ALSO
SDL::CDROM, SDL::CD AUTHORS
See "AUTHORS" in SDL. perl v5.14.2 2012-05-28 pods::SDL::CDTrack(3pm)