Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 10:09 AM
01-29-2002 10:09 AM
my output looks like:
# fuser /home
/home: 6974c 6936c
Can someone explain to me what this output is telling me? What is 6974c and 6936c? how can I trace this back to an app or user?
Thanks,
Bob
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 10:13 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 10:16 AM
01-29-2002 10:16 AM
Re: HELP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 10:17 AM
01-29-2002 10:17 AM
Re: HELP
Try using fuser -cu /home, it will display the processID and the owner...
All the best
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 10:18 AM
01-29-2002 10:18 AM
Re: HELP
From man fuser:
<
The fuser command lists the process IDs of processes that have each specified file open. For block special devices, all processes using any file on that device are listed. The process ID can be followed by a letter, identifying how the file is being used.
c file is its current directory.
r file is its root directory, as set up by the chroot command (see chroot(1M)).
o It has file open.
m It has file memory mapped.
t file is its text file.
<
From your post, 2 processes are "using" /home: 6974 and 6936. ps -ef | grep -e 6974 -e 6936 will show you what that are and who they are running as.
The "c" means the current directory for the processes is /home.
One more item. fuser returns the pids to stdout and the following character ("c" is this case) to stderr.
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 10:22 AM
01-29-2002 10:22 AM
Re: HELP
Take a look at this guide for more information about fuser command:
http://www.docs.hp.com/hpux/onlinedocs/B2355-90681/B2355-90681.html
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 12:07 PM
01-29-2002 12:07 PM
Re: HELP
Another great utility is "lsof", which is light years ahead of fuser:
http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.55/
And there are versions for sun:
http://www.sunfreeware.com/
For sun, On the right had side, sel3ect your OS and then a new list appears on the right below it.
live free or die
harry