learn linux and unix commands - unix shell scripting

The EA Roadmap to Rationalize, Standardize, and Consolidate the IT Portfolio

 
Thread Tools Search this Thread
# 1  
Old 01-31-2011
The EA Roadmap to Rationalize, Standardize, and Consolidate the IT Portfolio

An effective rationalization, standardization, and consolidation process can help organizations understand their current Enterprise Architecture maturity level and move forward on the appropriate roadmap, says author Alan Levine.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. Red Hat

Roadmap to upgrade from RHEL 5.8 to 6.6

Hello, We are thinking about upgrading our RHEL platform from 5.8 to 6.6 but we've been advised we need to build new servers from scratch. For us this approach is not feasible as it requires new hardware and our servers are 1-year old. I was wondering if somebody has done or planned for a... (2 Replies)
Discussion started by: fabiogilr
2 Replies
Login or Register to Ask a Question
setreuid(2)							System Calls Manual						       setreuid(2)

NAME
setreuid - set real and effective user IDs SYNOPSIS
DESCRIPTION
The function sets the real and effective user IDs of the current process to the values specified by the ruid and euid arguments. If ruid or euid is -1, the corresponding effective or real user ID of the current process is left unchanged. A process with appropriate privileges can set either ID to any value. An unprivileged process can only set the effective user ID if the euid argument is equal to either the real, effective, or saved user ID of the process. It is unspecified whether a process without appropriate privileges is permitted to change the real user ID to match the current real, effective or saved user ID of the process. RETURN VALUE
Upon successful completion, 0 is returned. Otherwise, -1 is returned and is set to indicate the error. ERRORS
The function will fail if: [EINVAL] The value of the ruid or euid argument is invalid or out-of-range. [EPERM] The current process does not have appropriate privileges, and either an attempt was made to change the effective user ID to a value other than the real user ID or the saved set-user-ID or an attempt was made to change the real user ID to a value not permitted by the implementation. SEE ALSO
getuid(2), setuid(2), <unistd.h>. CHANGE HISTORY
First released in Issue 4, Version 2. setreuid(2)