getgid(2) System Calls Manual getgid(2)Name
getgid, getegid - get group identity
Syntax
#include <sys/types.h>
#include <unistd.h>
gid = getgid()
gid_t gid;
egid = getegid()
gid_t egid;
Description
The system call returns the real group ID of the current process, and the call returns the effective group ID.
The real group ID is specified at login time.
The effective group ID is more transient and determines additional access permission during execution of a ``set-group-ID'' process. The
call is most useful with processes that are ``set-group-ID.''
Environment
Differs from the System V definition in that the return values are of type int, instead of type unsigned short.
See Alsogetuid(2), setregid(2), setgid(3)getgid(2)
Check Out this Related Man Page
GETGID(2) BSD System Calls Manual GETGID(2)NAME
getgid, getegid -- get group process identification
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
#include <sys/types.h>
#include <unistd.h>
gid_t
getgid(void);
gid_t
getegid(void);
DESCRIPTION
The getgid() system call returns the real group ID of the calling process, getegid() returns the effective group ID of the calling process.
The real group ID is specified at login time.
The real group ID is the group of the user who invoked the program. As the effective group ID gives the process additional permissions dur-
ing the execution of ``set-group-ID'' mode processes, getgid() is used to determine the real-user-id of the calling process.
ERRORS
The getgid() and getegid() system calls are always successful, and no return value is reserved to indicate an error.
SEE ALSO getuid(2), issetugid(2), setgid(2), setregid(2)STANDARDS
The getgid() and getegid() system calls are expected to conform to ISO/IEC 9945-1:1990 (``POSIX.1'').
BSD June 4, 1993 BSD
How can I check if there is only one row in the file? If there are more than one rows, I need to send an email and if there is only one row, do not do anything.
Thanks in anticipation (7 Replies)
Hello,
I have a client with an 18 year old SCO Openserver 5.0.5 server.
They can't find their installation media.
They are experiencing an error at login:
*LOGIN: ERROR- Failed to initialize policy manager. (IFOR_PM_FATAL)
The status from the policy manager daemon (PMD -... (10 Replies)
Hello
My system is Debian-503-amd64. After I installed the "lpr" package, I found that some files with SUID bit come from this package. As:
ls -l /usr/bin/lp*
....
-rwsr-sr-x 1 root lp 31800 2008-05-20 /usr/bin/lpq
-rwsr-sr-x 1 root lp 28504 2008-05-20 /usr/bin/lpr
-rwsr-sr-x 1... (1 Reply)
Hello all.
Despite the exec man page, the exec system call seems to turn my effective-user-id into my real-user-id.
I coded and compiled 2 very simple c programs as user 1 (uid=501)
The first one (A) prints real and effective user IDs and then execs the second one (B), which in turn prints... (7 Replies)
Hello All,
Sendmail takes too long to start and the host is unable to send emails, below are the steps followed, Please let me know if I'm missing anything, is there a debug mode for mailx?
# time service sendmail restart
Shutting down sm-client:
Shutting... (6 Replies)
I have created a shell scrit to run the informatica workflows sequentially.In the script i am executing 7 workflows sequentially after running 4 workflows the scrpt getting stop and it is not continuing next step evn it is updating logs.4th workflow will take more time to finish is that making... (1 Reply)
hello
my script is submitting POST-data to a site
(its not my first script, i've done these before many times (include parsing scripts) but this one is tough)
so the problem is i'm submitting a form with firefox
and in firebug i see WHAT exactly i'm submitting
then
when i do EXACTLY the... (28 Replies)
Hello all,
I have read just about every rpcbind not starting thread and article on the internet it seems, but I have not found a solution to my problem as of yet. I have a solaris 10 server that has been running with no problems for a while. The other day it crashed and would not boot to the gui... (2 Replies)
Hi,
I am trying to set ulimit for soft stack unlimited, but this is not taking effect, after tracing the ulimit -a unlimited command, the below output was generated, which i am unable to comprehend. Could any one help me with this?
prcbap1-r10prod: truss -d ulimit -s unlimited
Tue Dec 30... (2 Replies)
Hello all,
I've got a production system that the DBA complained that the vi command was no longer working for the oracle service account for a particular instance. When I logged in as myself, I noticed that it wasn't working for my user either.
When invoked, it just returns to the prompt with an... (21 Replies)
Hi Forum.
I have an XML file with the following requirement to move the <AdditionalAccountHolders> tag and its content right after the <accountHolderName> tag within the same file but I'm not sure how to accomplish this through a Unix script.
Any feedback will be greatly appreciated.
... (19 Replies)