Is there someway to set the default file permission in Linux? That is, the file permission for a newly created file (regardless of the context for which it was created ). I know about putting umask in the shell startup but that only works for shell sessions. When I transfer files to a Linux box using pscp, the file is always created with permissions of 664 (rw-rw-r--). The has occurred across every flavor of Linux that I've used. This is especially annoying when I pscp a file to shared Linux machine (like my ISP). Until I can shell in and chmod the permission, the file is basically sitting there with read access for everyone, which is not exactly secure.

link|improve this question

71% accept rate
I'm not going to close this but I will say that I'm not sure this is programming related.. – SCdF Oct 23 '08 at 4:32
I'll say that the first answer posted is a programming related answer. If you toss out script files executed by bash, zsh, and tcsh, then you have to toss out script files executed by cmd.exe, IIS, PowerShell, VBA, etc. – Windows programmer Oct 23 '08 at 4:42
@SCdF: why is this not related to programming? It seems within bounds to me. – Jonathan Leffler Oct 23 '08 at 16:55
Did my answer work for you? You might consider accepting it, or posting more info about your problem if you're still stuck. – Matt Curtis Oct 23 '08 at 22:30
It didn't work. I have umask 077 in various (.bash_profile, .tcshrc, .cshrc) startup files but it still defaults to 664. The problem is that I don't know what startup file the pscp server is using. – Steve Kuo Oct 26 '08 at 22:41
show 2 more comments
feedback

2 Answers

Put the umask in the non-interactive shell startup (.bash_profile, .zshenv, .tcshrc depending on your shell). Then it'll run for non-login sessions.

link|improve this answer
How do I know what shell the pscp server is going to use? – Steve Kuo Oct 26 '08 at 22:42
When you log on (with putty), what shell does it start up? Or, if you're logged on, "grep yourname /etc/passwd" and see what the last entry on that line is ("/bin/bash", for example.) – Matt Curtis Nov 1 '08 at 5:58
this didn't work for me. I put it in my .bash_profile and still have the same problem – eviljack Sep 30 '09 at 20:02
@eviljack: can you tell me what shell you're using (grep yourname /etc/passwd)? Can you tell whether anything from .bash_profile runs when pscp connects? (Maybe put an "echo" in the file, and try plink, it might help diagnose the problem.) – Matt Curtis Oct 14 '09 at 5:02
feedback

If you want to affect the whole system, you can also put it in /etc/profile

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.