Based on the replies I'm guessing you are using Gnome, but if you were running I'd point out a few things you could try.
I'll assume your taskbar is configured somewhat the same.
If you have an external floppy diskette drive, you could plug it in after you login, and up on the right side of the screen, you'll have a pop-up showing recently plugged-in devices. If so, you can select the floppy drive from the list. Otherwise, you can take a look at the USB symbol on the bottom right of the taskbar to bring-up the list.
When it pops-up, select file manager. When that happens, you should be able to read/write to the floppy drive.
If you go to the KDE System settings, you should be able to preconfigure KDE to automatically login external drives for you. May be useful.
Other things to look for:
What I've noted with the latest distro versions is that the floppy drive is now more normally mounted in /media instead of /mnt
If you begin a terminal Konsole shell, you can take a look in /media, my suggestion is use the -l option when using ls to see ownership
- Code: Select all
[ ~]$ ls -l /media/
drwx------ 3 you audio 7168 Dec 31 1969 DM60_DISK_2/
[ ~]$
What you may notice is that the ownership belongs only to one person if you've mounted an external USB floppy drive. This may be part of your problem. Check to see if it is you or root that owns it. You'll notice in my example above, ownership is me, plus group 'audio', but audio has no permissions to access it anyways.
You could probably configure other options with MCC (Mageia Control Center), by looking in the hardware tab, and looking at configuring the floppy hardware.
For the internal floppy drive, you either go into the MCC, hardware, floppy, and configure it there to give permissions for other users, or you can modify /etc/fstab so that other users can use it.
In terms of modifying /etc/fstab, currently, the computer I'm using at the moment does not have a floppy drive, but you will first need to identify what piece of hardware is the floppy drive, then modify /etc/fstab accordingly. These are some 'old' examples from prior installations to give you some ideas of what needs doing. For example, a combination floppy drive that has high density 100M or 120M floppy disks is also seen as a harddrive 'hdX' or 'sdX', you would append:
- Code: Select all
/dev/hdc /mnt/floppy120 supermount user,exec,dev,suid,rw,fs=vfat 0 0
A more normal floppy drive would be more liker appending:
- Code: Select all
/dev/fd0 /mnt/floppy supermount owner,noexec,suid,ro,fs=vfat 0 0
#/dev/fd0 /mnt/floppy vfat nosuid,noauto,nodev,user 0 0
At the terminal, you can get more help by typing 'man mount' and/or 'man fstab' then press esc or q to exit those help manuals.
Where most problems seem to happen is ownership, and you can check that out using 'ls -l' to see how ownership is configured. MCC also has a graphical method to add yourself to additional groups like audio or cdrom id root is owner, but cdrom or another group is also a group user.