Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Simple mount question

  • 23-04-2007 07:29PM
    #1
    Registered Users, Registered Users 2 Posts: 1,102 ✭✭✭


    Hi all,
    I'm trying to figure out how to set a user as the owner of a dev when it's automounted. Its an ntfs drive fstab entry as follows
    /dev/sda1       /windows/C       ntfs    auto,user,ro,noexec 0   0
    
    However, when ever I try to view it through natilus (Ubuntu) I get a access denied message.
    I can type /windows$ sudo chown -hR karl:users C and it seems to run through the files (but each has the warning readonly file system)

    how can I set me as the owner when mounting, or how can I start a superuser graphical file management?

    Thanks


Comments

  • Registered Users, Registered Users 2 Posts: 1,110 ✭✭✭Skrynesaver


    You can't write to an NTFS partition, so you can't change the ownership.

    You can however install ntfs-3g
    sudo apt-get install ntfs-3g
    
    and change the line in your /etc/fstab to read:
    /dev/sda1       /windows/C ntfs-3g    defaults,locale=en_IE.utf8    0    0
    
    Then
    sudo mount -a
    


Advertisement