List commands executed on a server


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers List commands executed on a server
# 1  
Old 10-31-2014
List commands executed on a server

Hi All, how to list all the commands executed by users on a linux server.... I dont have access to others .bash_history. and i am not root user.. Please help.. Thanks in advance..
# 2  
Old 10-31-2014
Hi,

If you are unable to see the history files of other users (this is correct) then you have limited options.

There is the "who" command that will show you who is actually logged on and the "ps" command that you can use to see what is "currently" running on the system.

Regards

Dave
This User Gave Thanks to gull04 For This Post:
# 3  
Old 10-31-2014
Thanks Dave, this looks good to current users.. but i need to know what commands were run yesterday. i suspect that user (dont know who) has ran a command and deleted a directory and few other files and the server and db was hung. pls suggest Thanks in advance!!
# 4  
Old 10-31-2014
If you don't have those permissions by default, that will be for a reason. If you now have good reasons for the research, the system admins will help you by either looking themselves or (temporarily?) granting the neccessary privileges.
This User Gave Thanks to RudiC For This Post:
# 5  
Old 10-31-2014
Hi,

If you think that a dirctory has been deleted, either by mistake or maliciosly - then you'll need to take this to the systems admins. You could request that people send you the output from the "history" command.

But it would be better to let the systems admins do their job, find out why or how the directory was deleted - if it was. Then they should provide user guidance and if required education.

Regards

Dave
This User Gave Thanks to gull04 For This Post:
# 6  
Old 10-31-2014
Okay... I thought to give a try and wanted to learn... Thank you ..!!
# 7  
Old 10-31-2014
Quote:
Originally Posted by nanz143
Okay... I thought to give a try and wanted to learn... Thank you ..!!
There is nothing to learn, given the circumstances. There are certain system administration privileges and they are given to certain persons - all that for a reason! If you do not have these privileges you either need to get them (temporarily or permanent) or you should not get them.

In other words: get root privileges and you are able to exercise them or don't get root privileges and subsequently don't exercise them. It would only mean that the system is poorly set up if you could do something which should only be available to root without actually being root.

UNIX systems (and Linux systems in this respect are UNIX systems too) are very secure designwise. It is possible to set up a UNIX system with poor security, but all the means to get a very secure system are there and can be used if the owner of a system wants that. Even the default setup of systems is - designwise - secure. What you wanted would be a severe breach of security. It is possible to get that but only if the system is very poorly set up and some default security means are purposefully worked over to allow for that mode of operation.

I hope this helps.

bakunin
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to time stamp executed commands?

Hi guys, I am executing a pretty long ksh script and need to time stamp every command which runs inside. Unfortunatly 'echo date' is not the option here. May be someone knows another way or utility which can be used to log executed command and timestamp next to it. Thanks PS I work in ksh88 (4 Replies)
Discussion started by: aoussenko
4 Replies

2. UNIX for Dummies Questions & Answers

Clearing history of commands executed

Hi, I have cleared the commands by using >$HOME/.sh_history. But if i issue HISTORY it shows some reference numbers but not the commands executed. But i want to truncate those line numbers too. May i know how i can achieve this? Thanks (1 Reply)
Discussion started by: pandeesh
1 Replies

3. UNIX for Dummies Questions & Answers

Commands will be executed using /usr/bin/sh

Hi, how to overcome this warning issue. code: #echo 'ls > /home/rxcprod/a.out' | at -q a now warning: commands will be executed using /usr/bin/sh job 1318943704.a at Tue Oct 18 09:15:04 2011 (4 Replies)
Discussion started by: tushar_spatil
4 Replies

4. Shell Programming and Scripting

To inform the executed commands

Dear friends, Whenever I do logout from a session initiated by ssh/su, I need to print a small report which says the login time, logout time, commands got executed.. How can it be done? I know when doing ssh, .profile file will get executed. Shall we do something with the help of it. (1 Reply)
Discussion started by: nagalenoj
1 Replies

5. UNIX for Dummies Questions & Answers

multiple commands to be executed at the same time

how to execute more than one command at the same time in unix .. (4 Replies)
Discussion started by: hemaa
4 Replies

6. Shell Programming and Scripting

Viewing the commands executed

Hi, I have executed a set of commands on the linux server and later rebooted the server. Is it possible to get the details of the commands I executed prior to the reboot? If yes please let me know how? Thanks. (1 Reply)
Discussion started by: yoursdavinder
1 Replies

7. UNIX for Dummies Questions & Answers

How does the internal commands are executed?

Hi all, I am new to unix OS. Commands(external commands) given by the user are examined by shell and later executed by kernel. Now I want to know how the internal(built in) commands are executed. Please clarify whether they are executed directly by shell or by kernel. Thanks in... (2 Replies)
Discussion started by: chaitra
2 Replies

8. Solaris

whole day commands executed by particular user

Hi all I want to know the commands executed a by particular user .. for the whole day on my machine. I have checked out with the commad $lastcomm <user> It is throwing an error called: .. /var/adm/pacct: No such file or directory Can u help me in this regard.. Thank U Naree (1 Reply)
Discussion started by: naree
1 Replies

9. Solaris

I want to know whole day commands executed by particular user

Hi all I want to know the commands executed a by particular user .. for the whole day on my machine. I have checked out with the commad $lastcomm <user> It is throwing an error called: .. /var/adm/pacct: No such file or directory Can u help me in this regard.. Thank U... (3 Replies)
Discussion started by: naree
3 Replies

10. UNIX for Advanced & Expert Users

Capturing commands executed by user

Hello Unix Champs, For keeping audit trail, I want to log the commands entered by the normal users, on their terminal into a text file. I tried putting a "script -a username.timestamp.txt" in the user profile file, but script command stops execution when user types exit or presses CTRL+D... (3 Replies)
Discussion started by: bhaven.haria
3 Replies
Login or Register to Ask a Question