Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Inherit Group File Permission Post 302189880 by Perderabo on Monday 28th of April 2008 06:13:07 AM
Old 04-28-2008
It is not possible a uid from a directory. A new file will always have the uid of the process which created it.
 

10 More Discussions You Might Find Interesting

1. AIX

Group permission not working

Please forgive me, but I am not a Unix expert. I'm supporting SAP r/3 and we are trying to run an external command from SAP to read a file at the unix level. When we perform the more command on the following two files, we are succesful in reading the bws file, but unsucessful in reading the bws1... (13 Replies)
Discussion started by: bbauerle
13 Replies

2. UNIX for Dummies Questions & Answers

group permission

I have an executable that had permissions set to 700. I changed this to 770 and added a user to the group in an attempt to allow that userds to run the file. Obviously this didnt work or I wouldnt be here. Do I need to cause the group file to be re-read and if so how, or am I misunderstanding... (6 Replies)
Discussion started by: thumper
6 Replies

3. Shell Programming and Scripting

permission, owner and group

hello I search a script (ksh for Aix 5.3) to save all permissions, groups and owner for all files. Because we work much to change it, and a mystake ......! So i want execute this script to save/ execute permissions for all files. If you have this script, thank you for your help ;) best... (2 Replies)
Discussion started by: pascalbout
2 Replies

4. UNIX for Dummies Questions & Answers

how to add permission of directory to a group

Hi, A simple and silly question on Unix. I have a directory named "a" and I would like to grant permission to group name "text" to access, read and execute my directory. Could anyone help me? Thanks. (2 Replies)
Discussion started by: ahjiefreak
2 Replies

5. Shell Programming and Scripting

Find all files with group read OR group write OR user write permission

I need to find all the files that have group Read or Write permission or files that have user write permission. This is what I have so far: find . -exec ls -l {} \; | awk '/-...rw..w./ {print $1 " " $3 " " $4 " " $9}' It shows me all files where group read = true, group write = true... (5 Replies)
Discussion started by: shunter63
5 Replies

6. Solaris

Can't sudo Using Group Permission

All: I'm having a problem with sudo on Solaris 5.10 that is giving me fits (and BTW, I'm a Linux admin by trade...). The issue is that I have a number of users (myself included) that cannot sudo to root to complete user admin tasks. Assuming the user is jdoe, and the group with the elevated... (3 Replies)
Discussion started by: rjlohman
3 Replies

7. Solaris

Solaris group ID permission drwxrwS--x

why is the group id in capital S and not lowercase s ? I have a directory with the following permissions: drwxrws--x when I remove the group id and add it again with g+s or chmod 2765 , it displays the group ID in capital "S" instead of lowercase "s" tried to find this out on Google, but... (2 Replies)
Discussion started by: misterx12345
2 Replies

8. Linux

new file group permission of CIFS mount

After switching from smbfs mount, the dmask/dir_mode and fmask/file_mode no longer have an effect on the newly created files. It seems to use the system umask instead. I need the group to have write permissions without changing the root umask on the system. Any ideas? example fstab: ... (0 Replies)
Discussion started by: gadgetx23
0 Replies

9. UNIX for Beginners Questions & Answers

Asking about the permission inherit from the parent directory

Asking about the permission inherit from the parent directory I am running the web app with tomcat8, I did use umask 007 to set permission for folder which enable the sub files and folder inherit the permission from the parent directory, I was successful which some directories but the directories... (1 Reply)
Discussion started by: janecaongoc
1 Replies

10. UNIX for Beginners Questions & Answers

Asking about the permission inherit from the parent directory

Asking about the permission inherit from the parent directory I am running the web app with tomcat8, I did use umask 007 to set permission for folder which enable the sub files and folder inherit the permission from the parent directory, I was successful which some directories but the directories... (2 Replies)
Discussion started by: janecaongoc
2 Replies
mkdir(2)							System Calls Manual							  mkdir(2)

NAME
mkdir - Creates a directory SYNOPSIS
#include <sys/stat.h> #include <sys/types.h> int mkdir ( const char *path, mode_t mode ); STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: mkdir(): XSH5.0 Refer to the standards(5) reference page for more information about industry standards and associated tags. PARAMETERS
Specifies the name of the new directory. [Tru64 UNIX] If NFS is installed on your system, this path can cross into another node. In this case, the new directory is created at that node. If the final component of the path parameter refers to a symbolic link, the link is traversed and pathname resolution continues. Specifies the mask for the read, write, and execute (RWX) flags for owner, group, and others. DESCRIPTION
The mkdir() function creates a new directory with the following attributes: The owner ID is set to the process's effective user ID. The group ID is set to the group ID of its parent directory. [Tru64 UNIX] However, if the sys_v_mode tunable is set, then the group ID of the file is set to the effective group ID of the process. With exception, if the S_ISGID bit of the parent directory is set, the group ID of the file is set to the group ID of the parent directory and its S_ISGID bit is set. If the group ID of the new file does not match the effective group of the process or one of the supplementary group IDs of the process, the S_ISGID bit of the new file is cleared. Permission and attribute bits are set according to the value of the mode parameter modified by the process's file creation mask (see the umask() function). This parameter is constructed by logically ORing values described in the sys/mode.h header file. The new directory is empty, except for . (dot) and .. (dot-dot). To execute the mkdir() function, a process must have search permission to get to the parent directory of the path parameter and write per- mission in the parent directory of the path parameter with respect to all of the system's configured access control policies. Upon successful completion, the mkdir() function marks the st_atime, st_ctime, and st_mtime fields of the directory for update, and marks the st_ctime and st_mtime fields of the new directory's parent directory for update. RETURN VALUES
Upon successful completion, the mkdir() function returns a value of 0 (zero). If the mkdir() function fails, a value of -1 is returned, and errno is set to indicate the error. ERRORS
If the mkdir() function fails, the directory is not created and errno may be set to one of the following values: Creating the requested directory requires writing in a directory with a mode that denies write permission, or search permission is denied on the parent directory of the directory to be created. The process does not have write access to the parent directory with respect to one of the system's access policies. The directory in which the entry for the new link is being placed cannot be extended because the user's quota of disk blocks or i-nodes on the file system containing the directory is exhausted. The named file already exists. The path parameter is an invalid address. The owner or group ID is not a value that is supported by this implementation. A physical I/O error has occurred. Too many links were encountered in translating path. The link count of the parent directory would exceed LINK_MAX. The length of the path parame- ter exceeds PATH_MAX or a pathname component is longer than NAME_MAX. A component of the path parameter does not exist or points to an empty string. Unable to allocate a directory buffer. The file system does not contain enough space to hold the contents of the new direc- tory or to extend the parent directory of the new directory. A component of the path prefix is not a directory. The named file resides on a read-only file system. [Tru64 UNIX] For NFS file access, if the mkdir() function fails, errno may also be set to one of the following values: Indicates either that the system file table is full, or that there are too many files currently open in the system. Indicates a stale NFS file handle. A client cannot make a directory because the server has unmounted or unexported the remote directory. RELATED INFORMATION
Commands: chmod(1), mkdir(1), mknod(8) Functions: chmod(2), mknod(2), rmdir(2), umask(2) Standards: standards(5) delim off mkdir(2)
All times are GMT -4. The time now is 08:31 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy