permission to mount floppy denied

Discussion in 'Linux' started by mish2, Dec 10, 2008.

  1. mish2

    mish2

    Joined:
    Sep 27, 2008
    Messages:
    7
    Likes Received:
    0
    I've installed Mtools which should enable my linpus linux aspire one to read ms dos and atari files. I've a USB floppy drive which is recognised by the system which will read floppies formatted in Fat32. If I try to run Mtools though I get a 'you don't have permission' message. What do I do to solve this? (I'm not even sure what mounting is)
     
    mish2, Dec 10, 2008
    #1
  2. mish2

    rbil

    Joined:
    Aug 14, 2008
    Messages:
    730
    Likes Received:
    0
    Location:
    The Wet Coast, Canada
    I don't use mtools, which is really just a collection of utilities, right? Maybe you need to give read/write access to the floppy drive? I'd try this ...

    Make a backup of fstab just in case you want to go back to using the original:

    Code:
    sudo cp /etc/fstab /etc/fstab.original
    Then edit fstab:

    Code:
    sudo mousepad /etc/fstab
    And add a line like this to the end of it:

    Code:
    /dev/fd0 /mnt/floppy auto noauto,users,rw 0 0
    Save the file and either do:

    Code:
    sudo mount -a
    to have the system reread fstab or reboot.

    Cheers.
     
    rbil, Dec 10, 2008
    #2
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.