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 ...
- 05-30-2007 #1Linux Newbie
- Join Date
- Apr 2007
- Posts
- 117
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
- 05-30-2007 #2
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.
- 05-30-2007 #3Linux Newbie
- Join Date
- Apr 2007
- Posts
- 117
- 05-30-2007 #4Just 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.
- 05-30-2007 #5Linux Newbie
- Join Date
- Apr 2007
- Posts
- 117
- 05-30-2007 #6
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
OR add umask=0 to enable full access to all users.Code:/dev/<partition> <mount_point> ntfs-3g defaults,uid=xxx,gid=xxx 0 0
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 05-30-2007 #7Linux Newbie
- Join Date
- Apr 2007
- Posts
- 117
Is that correct?/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)Ubuntu 8.04 [32bit] @ Gateway MX6453 Notebook
- 05-30-2007 #8what is main? if you want to give Full access to all users, add umask as i suggested earlier./dev/hda1 /windows/XP ntfs-3g main,users 0 0
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
- 05-30-2007 #9Linux 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
- 05-30-2007 #10
execute this
note down uid and gid of user main.Code:id main
edit /etc/fstab file
replace xxxx with actual uid and gid of user main.Code:/dev/hda1 /windows/XP ntfs-3g defaults,umask=0,uid=xxxx gid=xxxx 0 0
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


Reply With Quote
