I have a folder /cygwin/d/myfolder/ And everytime I save files there, from cygwin if i do an ls -la I see that the files are given permission 000. That actually causes me quite a bit of problem as I rsync this folder to my server and none of the files are accessible. How can I get the files to automatically get a reasonable permission?
|
Have a read through the answers at this link: http://old.nabble.com/vim-and-file-permissions-on-Windows-7-td29162830.html The solution there worked for me also: Edit /etc/fstab and add this line at the end of the file:
Then close all Cygwin processes, open a new terminal and ls -l on your files again. |
|||||||||||||
|
|
Check to make sure that your umask is set correctly with the umask command. If your umask is say 0777 that subtracts from the permissions of new files and will end up with 000 permissions. There's probably several other possibilities to consider beyond that. If your id is not set up correctly in /etc/passwd and /etc/group that can also cause ls to show unexpected results. Check the permissions of the folder. Also check the Windows permissions with the getfacl command. Maybe also check the mount command. |
|||
|
|