0

I have a data partition with ntfs filesystem. But when I want extract a file in that partition I get permission errors like:

enter image description here

ntfs3-g is installed and I ran on terminal

sudo chmod -R 777 /media/ntfs/

without results. With sudo tar -x I haven't got problems, but It is boring this issue. I don't want move the file on my home folder like in this discussion. How can I solve?

muru
  • 193,181
  • 53
  • 473
  • 722
linofex
  • 554
  • 9
  • 28
  • 2
    Possible duplicate of [How do I use 'chmod' on an NTFS (or FAT32) partition?](http://askubuntu.com/questions/11840/how-do-i-use-chmod-on-an-ntfs-or-fat32-partition) – muru Jan 23 '16 at 20:46

1 Answers1

0

I solved reading this discussion. Changing my fstab file from

/dev/sda3    /media/ntfs ntfs-3g silent,noatime,discard,umask=000,locale=it_IT.utf8 0 0

to

 /dev/sda3    /media/ntfs ntfs-3g exec,permissions,auto,silent,noatime,discard,umask=000,locale=it_IT.utf8 0 0

I added exec,permissions,auto

linofex
  • 554
  • 9
  • 28