Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
3k views

linux: getting umask of an already running process?

How can I check the umask of a program which is currently running? [update: another process, not the current process.]
6
votes
5answers
2k views

In linux, is there a way to set a default permission for newly created files and directories under a directory?

I have a bunch of long-running scripts and applications that are storing output results in a directory shared amongst a few users. I would like a way to make sure that every file and directory created ...
3
votes
2answers
176 views

When is umask() useful?

umask(0); fd = open("/dev/null", O_RDWR); Here's man 2 umask: umask() sets the calling process’s file mode creation mask (umask) to mask & 0777. But it doesn't make sense for me,as when we ...
2
votes
1answer
81 views

File creation mode mask

I'm struggling to understand why would a Unix daemon set the file creation mode mask to 0. I'll be thankful if someone can demystify the umask function.
2
votes
1answer
465 views

Setting umask in Git / Gitolite

I have set up Git and Gitolite, and at some point I recall having seen an "umask" setting, in one of the configuration files. Does this set the permissions for all files I sync using Git? That is ...
2
votes
2answers
2k views

PHP mkdir() and fopen() does not work - permissions problem? umask problem?

The following PHP script fails to create the directory. It will also fail to create the file (when the directory already exists). ini_set('error_reporting', E_ALL); define('ABSPATH', ...
1
vote
1answer
110 views

How do I set directory permissions in maven output?

I am using the maven-assembly-plugin to package my build. I am able to perform some copying of file sets and modify file permissions fine, but I am unable to modify directory permissions. From the ...
1
vote
2answers
207 views

Setting the umask for the desktop user under Mac OS X

I've set the umask to 002 in the files launchd.conf and launchd-users.conf. So if i copy/create within the terminal everything is fine and the umask is working as it should be. But when i ...
0
votes
0answers
141 views

apache and sftp permissions for wordpress automatic update in ubuntu

It's my first time trying to set up Wordpress or any website on a cloud hosting. I am on Ubuntu server, and Wordpress is located in var/www/mydomain/public folder. What I want to achieve is this: ...
0
votes
1answer
37 views

Does umask affects message queues

In linux,Ubuntu, does changing umask of the system(by calling umask() function in a a program for example), affects the creation and usage of the ipc facilities like message queues on the system?
0
votes
3answers
889 views

java set file permissions to 777 while creating a file object [closed]

Possible Duplicate: How can I set the umask from within java? How do you set file permissions to 777(or any other arbitrary permission) while creating a file object in java?
0
votes
1answer
371 views

Changing umask of apache on ArchLinux

This didn't work: Setting the umask of the Apache user Arch doesn't have a /etc/apache2/envvars file, and changing the /etc/rc.d/httpd script didn't change anything. Maybe someone can enlighten me ...
0
votes
1answer
232 views

Configure for a directory specific chmod for new created files and subdirectories

Hello I would like to create a directory in which new created files have chmod 640. directories will have chmod 750. The user's global umask is not changed. The correct chmod for new created files is ...
0
votes
4answers
2k views

scp file not setting correct owner

Does SCP have a problem setting file permissions or have I misconfiguration my server? Updated (19/Mar/09): Actually: There is no problem - I have just misunderstood the way permissions work - they ...