file permissions


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting file permissions
# 1  
Old 11-15-2005
Data file permissions

Hi all,

My UNIX box is HP UX - 11.11.

I have got a basic doubt. What are the global permissions for a file and directory?
I set the mask as 111 in my .profile. When I create a new file, it gets created withe -rw-rw-rw- permissions. A directory is created with drw-rw-rw- permissions. So, i thought the global permissions were 777 for both file and directory.
I changed the mask to 002. Now the file got created with -rw-rw-r-- permission and the directory with drwxrwxr-x. Does this mean the file has global permissions of 666 and directory - 777 and setting umask as 111 is not going to alter the global permissions of files being created.

It would be helpful if someone could throw some light on this.

Thanka,
Ranjith
# 2  
Old 11-15-2005
# 3  
Old 11-15-2005
that was very useful

Thanks for the link, Perderabo. It was very useful. But one doubt I still have in my case is that even after setting 'umask 022'; I am getting a file with -rw-rw-rw- permissions. I thought I should get -rwxr-xr-x.
AM I saying something wrong???
# 4  
Old 11-15-2005
You still have it wrong. Reread that article. You should not get what say you expect nor what you say that you get. I get the expected result:

Code:
#
# uname -svr
HP-UX B.11.11 U
# rm testfile
rm: testfile non-existent
# umask 0
# touch testfile
# ls -l testfile
-rw-rw-rw-   1 root       sys              0 Nov 15 11:28 testfile
# rm testfile
# umask 022
# touch testfile
# ls -l testfile
-rw-r--r--   1 root       sys              0 Nov 15 11:29 testfile
#

# 5  
Old 11-16-2005
mistake done

Sorry Perderabo, I posted it wrong and didnt even check that. Well I get the same permissions.
One last question. From what I could interpret, setting - umask 111 will give 666 permissions to all files created.
Setting umask 000 will also give 666 permission to all files created. I hope that is correct. Pls correct me if I have got it wrong.
Thanks a lot for your patience.
# 6  
Old 11-16-2005
You still have it wrong. That link represented my best effort to explain the permissions. I put a lot of time into that and since it is not working for you I must give up.
# 7  
Old 11-16-2005
From Perderabo's handy permissions thread:

Quote:
You can do a "umask 0" to let the program do what it wants as it creates programs
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Changing file permissions of a file created by another user

Hi, I have used expdp for datapump. The .dmp file is created by the "oracle" user. my requirement is to make a zipped file of this .dmp file. What i am trying to do is change the permissions of this .dmp file from 0640 to 0644 and then do a gzip and zip it. Is there any way i can change... (3 Replies)
Discussion started by: qwertyu
3 Replies

2. Shell Programming and Scripting

ksh; Change file permissions, update file, change permissions back?

Hi, I am creating a ksh script to search for a string of text inside files within a directory tree. Some of these file are going to be read/execute only. I know to use chmod to change the permissions of the file, but I want to preserve the original permissions after writing to the file. How can I... (3 Replies)
Discussion started by: right_coaster
3 Replies

3. Filesystems, Disks and Memory

Regarding File permissions

Hi, I have a shellscript.I want to protect the source code. So I gave 711 permission on the file(owner=rwx,group=x,others=x) but still others are not able to execute it. Please help me in protecting the source code.I don't want others to use any cat or vi command on the script but... (1 Reply)
Discussion started by: bishnu.bhatta
1 Replies

4. AIX

File Permissions nobody:nobody

AIX 5.3 environment. On the local system, I am sharing a jfs2 filesystem as an exported filesystem. I have many other AIX 5.3 server mounting to this file system and can create, move, copy, ... data to and from this share. Recently, we've run into a problem. When on another system (okay, all... (5 Replies)
Discussion started by: clking
5 Replies

5. Shell Programming and Scripting

Retain file permissions when saving .sh file from internet [OS X]

Hello. I have written a bash script that I am sharing with an OS X community I am a member of. The purpose of the script is to execute a series of commands for members without them having to get involved with Terminal, as it can be daunting for those with no experience of it at all. I have renamed... (4 Replies)
Discussion started by: baza210
4 Replies

6. HP-UX

To give the "unzip" permissions & "create" file permissions

Hi, I am a Unix Admin. I have to give the permissions to a user for creating new file in a directory in HP-Ux 11.11 system since he cannot able to create a new file in the directory. Thanks in advance. Mike (3 Replies)
Discussion started by: Mike1234
3 Replies

7. UNIX for Dummies Questions & Answers

file permissions: l

Hello, what does the l file permission stands for and in which UNIX systems can it be used? (1 Reply)
Discussion started by: Tobe
1 Replies

8. UNIX for Dummies Questions & Answers

File permissions

Is there any way that I can use the ls command to view the permissions that a group has on a file. I know ls -l file1 will list all the permissions for file1. Would I have to use the following command: ls -l file1 Then grep or sed the output to retrieve what permissions the group has. (5 Replies)
Discussion started by: beginner1
5 Replies

9. UNIX for Advanced & Expert Users

File Permissions

Hi, Though the /etc/profile and .profile have the same umask setting 022, still the directories are created by default with different permissions, how is this possible?? So where should i change what is i want directories to be created with different permissions and files with different... (1 Reply)
Discussion started by: baanprog
1 Replies

10. Shell Programming and Scripting

file permissions

Hi! Is there any shell parameter that I can use in my script to check the file-permissions I have in the currect directory!? The history behind is: My script tries to create some log files in the folder and I want to see whether I have enough permissions to do that. And exit in case I dont... (4 Replies)
Discussion started by: mohanprabu
4 Replies
Login or Register to Ask a Question