With the fstab file, how can I mount my /dev/sda3 NTFS partition at boot with full access by any user?
Asked
Active
Viewed 5,756 times
2
-
1try this http://askubuntu.com/questions/18052/exe-file-permission-fail – Prashant Chikhalkar Aug 06 '15 at 11:23
1 Answers
2
You should add this line to your fstab
:
/dev/sda3 /Acer ntfs-3g defaults,user,rw,umask=000 0 0

meskobalazs
- 2,913
-
I have a similar problem with Kubuntu 14.04 (dual boot with Windows7); but why do you need the ntfs-3g rather than just ntfs and is this likely to be the same with my desktop? – WGCman Jan 10 '16 at 08:53
-
1@WGCman You don't necessarily need to use
ntfs-3g
,ntfs
is most likely an alias for it. – meskobalazs Jan 11 '16 at 09:03