View Full Version : [all variants] How to mount ntfs if I want the one user to have read-write access
anonymous01
May 13th, 2009, 08:33 AM
How to mount ntfs if I want the one user to have read-write access but other users have read only acess
iaculallad
May 13th, 2009, 08:46 AM
Editing /etc/fstab file for auto mounting NTFS partition for read/write access is possible but you can't apply Linux partitions on it by trying to limit other users on from accessing it:
Such as:
sudo chown -R username:username /media/NTFS_Partition
sudo chmod -R 700 /media/NTFS_Partition
Commands above cannot be applied on NTFS partitions.
anonymous01
May 13th, 2009, 08:49 AM
I want is that only root have read-write access and other users have read access only. Any help?
iaculallad
May 13th, 2009, 08:54 AM
But placing Umask would probably solve that issue. Try:
sudo mount -t ntfs -o ro,noauto,umask=022 /dev/xxx /media/mount_point
Change xxx with the drive/partition device name. Also, change /media/mount_point with the mount point you created for that partition.
Russell Burrows
May 13th, 2009, 09:04 AM
I limit other users to read only via selection in system administration users and groups users settings manage groups.
Hope this helps.
anonymous01
May 13th, 2009, 09:15 AM
I want to have permanent mount with the root have rw access and other users have ro access
saivin
May 13th, 2009, 09:22 AM
But placing Umask would probably solve that issue. Try:
sudo mount -t ntfs -o ro,noauto,umask=022 /dev/xxx /media/mount_point
Is 'ro' option appropriate above? umask=022 means read access to others and full access to root right? Also, I think its better to use ntfs-3g.
I can't check and confirm as I don't have windoz... :)
anonymous01
May 13th, 2009, 09:39 AM
But placing Umask would probably solve that issue. Try:
sudo mount -t ntfs -o ro,noauto,umask=022 /dev/xxx /media/mount_pointChange xxx with the drive/partition device name. Also, change /media/mount_point with the mount point you created for that partition.
Thank you problem solve.
Powered by vBulletin® Version 4.2.2 Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.