The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    NTFS formatted thumb drive, issues in Ubuntu

    Discussion in 'Linux Compatibility and Software' started by talin, Jun 21, 2011.

  1. talin

    talin Notebook Prophet

    Reputations:
    4,694
    Messages:
    5,343
    Likes Received:
    2
    Trophy Points:
    205
    Hi, I'm having trouble using my thumb drive that's formatted in NTFS. When I insert it, I get an error that says "unable to mount read only volume".
    If I have the read only switch unset, of course it mounts it fine. However if it's formatted as FAT32 it has no problem mounting it if it's read only.
    I know ubuntu has no trouble writing to NTFS volumes as I've done it many times. Any ideas?
     
  2. ALLurGroceries

    ALLurGroceries  Vegan Vermin Super Moderator

    Reputations:
    15,730
    Messages:
    7,146
    Likes Received:
    2,343
    Trophy Points:
    331
    Do you have a usb stick with a write protection switch? That would be it.

    Otherwise try mounting it manually either from the terminal or disk utility.
     
  3. talin

    talin Notebook Prophet

    Reputations:
    4,694
    Messages:
    5,343
    Likes Received:
    2
    Trophy Points:
    205
    Yes, it has a write protection switch. But what I was saying was, Ubuntu has no trouble mounting it (in read only mode) if it's formatted as FAT32, but if it's NTFS it says it can't mount it. I just tried in disk utility, it still says cannot mount it. :confused: :(
     
  4. ALLurGroceries

    ALLurGroceries  Vegan Vermin Super Moderator

    Reputations:
    15,730
    Messages:
    7,146
    Likes Received:
    2,343
    Trophy Points:
    331
    where /dev/sdb1 is your usb stick and /media/usb is your folder to mount it:

    sudo mount -t ntfs-3g -o ro /dev/sdb1 /media/usb
     
  5. talin

    talin Notebook Prophet

    Reputations:
    4,694
    Messages:
    5,343
    Likes Received:
    2
    Trophy Points:
    205
    Thanks, I'll try that in a bit. But that means I'll have to do that every time. :( Thanks as always for your helpful answers. :)
     
  6. ALLurGroceries

    ALLurGroceries  Vegan Vermin Super Moderator

    Reputations:
    15,730
    Messages:
    7,146
    Likes Received:
    2,343
    Trophy Points:
    331
  7. talin

    talin Notebook Prophet

    Reputations:
    4,694
    Messages:
    5,343
    Likes Received:
    2
    Trophy Points:
    205
    Well it worked. Thanks. :)

    Edit: Do you know if this issue is present in 11.04?