Finding users currently accesing a directory


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Finding users currently accesing a directory
# 1  
Old 11-13-2001
Finding users currently accesing a directory

Is there any command/script to find a list of all users accessing a particular directory (from all machines on the network??)
# 2  
Old 11-14-2001
Well, there is fuser... On a Linux system:
Code:
$ fuser -u LivinFree /home/goober
/home/goober:          16979c(goober)

Also, lsof (not installed at all sites, but you can install it).

I'm sure it's possible to whip up a little script to connect to several hosts, and run a specific command.
# 3  
Old 11-29-2001
Re: Finding users currently accesing a directory

dont know if this is the right answer, but i hope i can help you:

type "w" in the shell and press return. from the manuals: ...the "w" utility prints a summary of the current activity of the system...displays who is logged in and what they are doing...

for more information "man w"
# 4  
Old 11-29-2001
Thanks for the response. The fuser command for some reason is not showing all processes that are accessing the directory.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

finding users first name and last name

an someone help me how do i do this.. Display user id, first and last names of all the members of your CIS132 class in alphabetical order by last name. Hint: • All classmate names are in the file /etc/passwd • the first 5 characters in the user id are the same for all class members. (s132a) ... (0 Replies)
Discussion started by: an2up
0 Replies

2. Shell Programming and Scripting

finding users first name and last name

can someone help me how do i do this.. Display user id, first and last names of all the members of your CIS132 class in alphabetical order by last name. Hint: • All classmate names are in the file /etc/passwd • the first 5 characters in the user id are the same for all class members. (s132a) (1 Reply)
Discussion started by: an2up
1 Replies

3. Shell Programming and Scripting

Finding the list of users who modified a file

Dear all, Need a quick help/suggestion on monitoring a particular directory . We have a deployment directory say (/users/integration/deploy ) under this there are several files which can be edited by a number of users - We need to write a script which will check this deployment directory... (5 Replies)
Discussion started by: jambesh
5 Replies

4. UNIX for Dummies Questions & Answers

Finding out all users and their UNIX groups??

Is there a way to find out all users and the UNIX groups they belong to?? :) (3 Replies)
Discussion started by: Hangman2
3 Replies

5. Shell Programming and Scripting

accesing a value

hi while do if then echo QManager Name $1 fi if then echo Cluster Name$2 fi if (( $count != 0 && $count != 1 )) then echo Queue Name `$($count)` fi ... (3 Replies)
Discussion started by: satish@123
3 Replies

6. IP Networking

Finding all users on a LAN and their IP

On a local network, how can I generate a list that includes all usernames with their current ip? I get this list in Apple Remote Desktop but it would be much more handy to be able to get this kind of a list in Terminal. Using Terminal on a Mac. Thanks for this awesome forum! (2 Replies)
Discussion started by: sigurarm
2 Replies

7. Shell Programming and Scripting

finding idle users

I am trying to write a script that will list the idle users on my system which is running HPUX 11.11. The script is currently written as : who -u > /home/rfm/scripts/user.txt echo " There are currently... " wc -l /home/rfm/scripts/user.txt echo " User logins on System : `uname -n` ... (3 Replies)
Discussion started by: rfmurphy_6
3 Replies

8. UNIX for Dummies Questions & Answers

Finding last time users logged in

I would like to find out the last time all users have logged in or out. I tried the last command, but it could not find the wtmp file in /var/adm (I searched in othe directories also). This is an AIX rs6000 4.2.1 system. We are moving our applications from this system to an AIX 5.2 system and I... (11 Replies)
Discussion started by: jyoung
11 Replies

9. UNIX for Dummies Questions & Answers

Finding out users

Hi. After using the command 'who' and getting all used accounts on current machine - how can i found out who are the users? (2 Replies)
Discussion started by: roco
2 Replies

10. Shell Programming and Scripting

Finding valid users

Is there a way to determine the names of valid system users? I know that last, finger, and who will give you the names of users who have accessed the system and / or those who are currently logged onto the system. I was trying to determine a way to find the names of any valid user whether or not... (5 Replies)
Discussion started by: jrdnoland1
5 Replies
Login or Register to Ask a Question