Hi I have a directory /home/nvs-upload/media/ImageFtp/
and the directory ImageFTP
have many sub directory. The issue than I have is than a job run and add new sub directory it add to the new directory the permission 755
and the files inside 644
. I will like to add automatically to the new directory and files the permission 777
. not matter the user or group.
what command I have to run to do this action?
--recursive
) but +1 anyway as I was going to say the exact same thing! ;-) – Fabby Oct 24 '18 at 22:59mount
to see what filesystem you are using and then check in/proc/fs/<repective filesystem>/<partition>/options
for anacl
entry. If none is given you might be able to remount with theacl
option - given that the FS supports it. – FelixJN Oct 27 '18 at 12:39