Find the answer to your Linux question:
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 13
I have 2 NTFS Partitions which are not shown automatically at the Konqueror home page when I log into my account. When I mount them to /windows/c and /windows/d they ...
  1. #1
    Linux Newbie
    Join Date
    Apr 2007
    Posts
    117

    Angry NTFS Mounting

    I have 2 NTFS Partitions which are not shown automatically at the Konqueror home page when I log into my account. When I mount them to /windows/c and /windows/d they appear normally, but I cannot browse them b/c of permissions. Only by being root I can browse into them, but I want to be able to do that as a regular user too. How can I do that?
    Ubuntu 8.04 [32bit] @ Gateway MX6453 Notebook

  2. #2
    Just Joined! DarthOpto's Avatar
    Join Date
    Apr 2007
    Posts
    33

    NTFS 3G is your answer

    NTFS 3g, is something which you will want to check out. I found that this was fairly simple to setup follow the instructions on their site. This will allow you to mount and read/write to your ntfs partitions.

  3. #3
    Linux Newbie
    Join Date
    Apr 2007
    Posts
    117
    Quote Originally Posted by DarthOpto View Post
    NTFS 3g, is something which you will want to check out. I found that this was fairly simple to setup follow the instructions on their site. This will allow you to mount and read/write to your ntfs partitions.
    The problem is about permissions. As "root" I can read them (which is my main concern right now), but as a regular user I cannot read them. As far as writting to them is concerned, that I let for another time.
    Ubuntu 8.04 [32bit] @ Gateway MX6453 Notebook

  4. #4
    Just Joined!
    Join Date
    Jan 2007
    Posts
    17
    As root you should be able to add your other non-root account as a user of the NTFS drive. Right click on the drive and look for permissions. You will probbaly have to go into the advanced tab. Or you can just allow anyone access to the drive.

  5. #5
    Linux Newbie
    Join Date
    Apr 2007
    Posts
    117
    Quote Originally Posted by linoleum13 View Post
    As root you should be able to add your other non-root account as a user of the NTFS drive.
    How can I do that? I think it would be better just to have one user to be able to read the ntfs partitions, not everyone.
    Ubuntu 8.04 [32bit] @ Gateway MX6453 Notebook

  6. #6
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    in /etc/fstab file, add uid and gid of user to whom you want to give NTFS read/write access.
    execute 'id' command and note down uid and gid.
    eidt /etc/fstab file
    Code:
    /dev/<partition>  <mount_point>   ntfs-3g   defaults,uid=xxx,gid=xxx  0 0
    OR add umask=0 to enable full access to all users.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  7. #7
    Linux Newbie
    Join Date
    Apr 2007
    Posts
    117

    Thumbs up

    /dev/hda1 /windows/XP ntfs-3g main,users 0 0
    /dev/hda2 /windows/D ntfs-3g main,users 0 0
    /dev/hda3 / ext3 acl,user_xattr 1 1
    ............. (cont'd)
    Is that correct?
    Ubuntu 8.04 [32bit] @ Gateway MX6453 Notebook

  8. #8
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    /dev/hda1 /windows/XP ntfs-3g main,users 0 0
    what is main? if you want to give Full access to all users, add umask as i suggested earlier.
    Code:
    /dev/hda1    /windows/XP   ntfs-3g     defaults,umask=0    0   0
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  9. #9
    Linux Newbie
    Join Date
    Apr 2007
    Posts
    117
    "Main" is the name of the user. I did as you told me but the same problem. Cannot enter the partitions. I think the problem is that I created (as root) the folders /windows, /windows/C, and /windows/D
    As "main" user I cannot enter them due to permissions. What should I do?
    Ubuntu 8.04 [32bit] @ Gateway MX6453 Notebook

  10. #10
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    execute this
    Code:
    id main
    note down uid and gid of user main.
    edit /etc/fstab file
    Code:
    /dev/hda1        /windows/XP    ntfs-3g    defaults,umask=0,uid=xxxx gid=xxxx 0 0
    replace xxxx with actual uid and gid of user main.
    Last edited by devils casper; 05-30-2007 at 02:06 PM.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

Page 1 of 2 1 2 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...