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
  • 197,895
  • 55
  • 485
  • 740
linofex
  • 554
  • 9
  • 28

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