Answer by Jacob Stern for File create permission error although dir has 777...
I ran into this issue as well. For me, the problem was that I had given the necessary rwx permissions to the parent directory:chmod 777 parent_dirbut I was trying to touch a file in a subdirectory that...
View ArticleAnswer by William Sandin for File create permission error although dir has...
Possibly it is overriden by a filesystem access control list. Possibly Linux ACL? You may determine that by using lsfacl. Get current ACL - You can check permissions for any file or directory with...
View ArticleAnswer by Sahil Aggarwal for File create permission error although dir has...
Some time you have sufficient permission on the current directory in which you want to create file but don't have permission on parent directories in hierarchy . Please see that once , if there are...
View ArticleFile create permission error although dir has 777 permission
On running command touch fileI am getting errortouch: cannot touch 'file': permission deniedAlthough I have 777 permissions on the dir where I am trying to create file but still not able to create file...
View Article