Sponsored Content
Operating Systems AIX How to find the log for executed command in IBM AIX? Post 302666537 by admin_xor on Wednesday 4th of July 2012 04:16:47 PM
Old 07-04-2012
I do not think without the auditing subsystem if this is possible. But, if your users are honest and if you are root or have root like privileges, you can find /home/username/.sh_history file which contains the executed commands history.
 

10 More Discussions You Might Find Interesting

1. AIX

Analogue of Format Command in AIX for IBM

I need to install AIX 5.3 on an RS/6000 Server. When i boot from an AIX 5.3 CD i get an option to upgrade to 5.3 from 5.2(existing OS). Is there a way by which i can force AIX to perform a new install with creating new partitions. I am looking for the analogue of 'Format' command in AIX that... (2 Replies)
Discussion started by: bestoption
2 Replies

2. UNIX for Dummies Questions & Answers

how to find the exit status for the last executed command

I am executing a find command in my script i.e find $2 -type f -name '*.gif' -mtime +$1 -exec rm {} \; how do i check that this command is executed properly.. i would lke t trap the errror and display my error message kinly help.. this is an urgent issue. (1 Reply)
Discussion started by: vijay.amirthraj
1 Replies

3. Cybersecurity

Help Required: Command to find IP address and command executed of a user

Hi, I am trying to write a script which would figure out who has run which command and their IP. As i dont have any clue as to which commands would do this job, i request some gurus to help me on this. Thanks Vishwas (2 Replies)
Discussion started by: loggedout
2 Replies

4. AIX

Command for changing date in IBM AIX

Hello everybody, plz tell me the command for chaging the date paramater in IBM AIX.. (3 Replies)
Discussion started by: oracle_rajesh_k
3 Replies

5. UNIX for Dummies Questions & Answers

HP Tru 64 & IBM AIX -- Few How to find

Anyone of you , Could you pls give me the command on HP Tru64 and IBM -AIX for below ? 1) How to find number of CPU & Number of core 2) Free RAM 3) How to get previously executed commands from history 4) Which process consumes more cpu resource? ( Similar to TOP in Linux/Solaris) (1 Reply)
Discussion started by: johnveslin
1 Replies

6. UNIX for Advanced & Expert Users

Using SCP command in IBM AIX to download file from remote to local system

Hi, When i run the code in solaris unix machine, the file from remote server is getting downloaded. but when i use the same code in IBM AIX remote machine, it is not running. It is saying "Erro during scp transfer." Below is the code. Please give some resolution. SCPClient client = new... (1 Reply)
Discussion started by: gravi2020
1 Replies

7. AIX

IBM AIX on IBM Eseries & x series server

Hi, I want to know whether IBM AIX can be installed on the IBM e series and x series server hardware? Thanks & Regards Arun (2 Replies)
Discussion started by: Arun.Kakarla
2 Replies

8. Shell Programming and Scripting

I want a script to view the complete log information of data stage job from UNIX IBM AIX.

Hi, I am working on data stage 8.7 version and I want a script a to view the all log information of the data stage job from UNIX environment. Can you please help me out by give the script. Thanks in advance... (7 Replies)
Discussion started by: victory
7 Replies

9. UNIX for Dummies Questions & Answers

Set Command to output a log of every command executed in the script

Hi Guys, I like to output every command executed in the script to a file. I have tried set -x which does the same. But it is not giving the logs of the child script which is being called from my script. Is there any parameters in the Set command or someother way where i can see the log... (2 Replies)
Discussion started by: mac4rfree
2 Replies

10. UNIX for Beginners Questions & Answers

Find Original user who executed the command

Hi Team, Please help me with the below question. SunOS 5.10 Shell: -bash I am trying to find the original user who executed a command on my development server. In my dev server users login using their personal id and sudo to a common id using 'sudo -u commonid -i'. Once logged in as... (6 Replies)
Discussion started by: sam99
6 Replies
SU(1)							    BSD General Commands Manual 						     SU(1)

NAME
su -- substitute user identity SYNOPSIS
su [-dfKlm] [-c login-class] [login[:group] [shell arguments]] su [-dfKlm] [-c login-class] [:group [shell arguments]] DESCRIPTION
su allows one user to become another user login without logging out and in as the new user. If a group is specified and login is a member of group, then the group is changed to group rather than to login's primary group. If login is omitted and group is provided (form two above), then login is assumed to be the current username. When executed by a user, the login user's password is requested. When using Kerberos, the password for login (or for ``login.root'', if no login is provided) is requested, and su switches to that user and group ID after obtaining a Kerberos ticket granting ticket. A shell is then executed, and any additional shell arguments after the login name are passed to the shell. su will resort to the local password file to find the password for login if there is a Kerberos error. If su is executed by root, no password is requested and a shell with the appropri- ate user ID is executed; no additional Kerberos tickets are obtained. Alternatively, if the user enters the password "s/key", authentication will use the S/Key one-time password system as described in skey(1). S/Key is a Trademark of Bellcore. By default, the environment is unmodified with the exception of LOGNAME, USER, HOME, SHELL, and SU_FROM. HOME and SHELL are set to the tar- get login's default values. LOGNAME and USER are set to the target login, unless the target login has a user ID of 0, in which case they are unmodified. SU_FROM is set to the caller's login. The invoked shell is the target login's. With the exception of SU_FROM this is the tra- ditional behavior of su. The options are as follows: -c Specify a login class. You may only override the default class if you're already root. See login.conf(5) for details. -d Same as -l, but does not change the current directory. -f If the invoked shell is csh(1), this option prevents it from reading the ``.cshrc'' file. If the invoked shell is sh(1), or ksh(1), this option unsets ENV, thus preventing the shell from executing the startup file pointed to by this variable. -K Do not attempt to use Kerberos to authenticate the user. -l Simulate a full login. The environment is discarded except for HOME, SHELL, PATH, TERM, LOGNAME, USER, and SU_FROM. HOME, SHELL, and SU_FROM are modified as above. LOGNAME and USER are set to the target login. PATH is set to the path specified in the /etc/login.conf file (or to the default of ``/usr/bin:/bin:/usr/pkg/bin:/usr/local/bin'' ). TERM is imported from your current envi- ronment. The invoked shell is the target login's, and su will change directory to the target login's home directory. - Same as -l. -m Leave the environment unmodified. The invoked shell is your login shell, and no directory changes are made. As a security precau- tion, if the target user's shell is a non-standard shell (as defined by getusershell(3)) and the caller's real uid is non-zero, su will fail. The -l and -m options are mutually exclusive; the last one specified overrides any previous ones. Only users in group ``wheel'' (normally gid 0), as listed in /etc/group, can su to ``root'', unless group wheel does not exist or has no mem- bers. (If you do not want anybody to be able to su to ``root'', make ``root'' the only member of group ``wheel'', which is the default.) For sites with very large user populations, group ``wheel'' can contain the names of other groups that will be considered authorized to su to ``root''. By default (unless the prompt is reset by a startup file) the super-user prompt is set to ``#'' to remind one of its awesome power. CUSTOMIZATION
Changing required group For the pam(8) version of su the name of the required group can be changed by setting gname in pam.conf(5): auth requisite pam_group.so no_warn group=gname root_only fail_safe For the non pam(8) version of su the same can be achieved by compiling with SU_GROUP set to the desired group name. Supplying own password su can be configured so that users in a particular group can supply their own password to become ``root''. For the pam(8) version of su this can be done by adding a line to pam.conf(5) such as: auth sufficient pam_group.so no_warn group=gname root_only authenticate where gname is the name of the desired group. For the non pam(8) version of su the same can be achieved by compiling with SU_ROOTAUTH set to the desired group name. Indirect groups This option is not available with the pam(8) version of su. For the non pam(8) version of su, if SU_INDIRECT_GROUP is defined, the SU_GROUP and SU_ROOTAUTH groups are treated as indirect groups. The group members of those two groups are treated as groups themselves. EXIT STATUS
su returns the exit status of the executed subshell, or 1 if any error occurred while switching privileges. ENVIRONMENT
Environment variables used by su: HOME Default home directory of real user ID unless modified as specified above. LOGNAME The user ID is always the effective ID (the target user ID) after an su unless the user ID is 0 (root). PATH Default search path of real user ID unless modified as specified above. TERM Provides terminal type which may be retained for the substituted user ID. USER The user ID is always the effective ID (the target user ID) after an su unless the user ID is 0 (root). EXAMPLES
To become user username and use the same environment as in original shell, execute: su username To become user username and use environment as if full login would be performed, execute: su -l username When a -c option is included after the login name it is not a su option, because any arguments after the login are passed to the shell. (See csh(1), ksh(1) or sh(1) for details.) To execute arbitrary command with privileges of user username, execute: su username -c "command args" SEE ALSO
csh(1), kinit(1), login(1), sh(1), skey(1), setusercontext(3), group(5), login.conf(5), passwd(5), environ(7), kerberos(8) HISTORY
A su command existed in Version 5 AT&T UNIX (and probably earlier). BSD
October 27, 2007 BSD
All times are GMT -4. The time now is 06:26 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy