- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- what is the purpose of the command "fuser"
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
Discussions
Discussions
Discussions
Forums
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
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
тАО09-08-2009 09:33 AM
тАО09-08-2009 09:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-08-2009 09:36 AM
тАО09-08-2009 09:36 AM
Re: what is the purpose of the command "fuser"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-08-2009 09:37 AM
тАО09-08-2009 09:37 AM
Solutionmain use of this command is to eliminate the processes holding a filesystem from being unmounted.
'man fuser' can tell you much more than that but this is just the gist of it.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-08-2009 09:39 AM
тАО09-08-2009 09:39 AM
Re: what is the purpose of the command "fuser"
The purpose is to list tasks using files in file system .
please enter the command
man fuser
to get all the details
lsof is more reliable though
you can down load it form the porting and archiving centre
mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-08-2009 09:41 AM
тАО09-08-2009 09:41 AM
Re: what is the purpose of the command "fuser"
As usual, do a 'man fuser' and find out more than I can type in a reasonable time.
If for some reason you don't have the manpages installed or if you are not near a server, use your favorite web browser to look to:
http://www.docs.hp.com/en/index.html
There are manpages for every supported release there!
You should learn to ask the manpages _FIRST_.
http://www.docs.hp.com/en/B2355-60130/fuser.1M.html
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-08-2009 04:50 PM
тАО09-08-2009 04:50 PM
Re: what is the purpose of the command "fuser"
>>what is the purpose of the command "fuser" <<
man fuser "will give much information"
fuser command is issued to check "which process currently holding on to you said file system"
example:-
fuser -u /tmp --> to check
fuser -k /tmp --> to kill curreny procees holding /tmp file system
Rgds,
Johnson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-10-2009 12:03 AM
тАО09-10-2009 12:03 AM
Re: what is the purpose of the command "fuser"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-10-2009 09:52 PM
тАО09-10-2009 09:52 PM
Re: what is the purpose of the command "fuser"
I thought that it was a test to see if the
user knew enough to use "man".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-11-2009 08:12 PM
тАО09-11-2009 08:12 PM
Re: what is the purpose of the command "fuser"
fuser ├в list processes using a file or file structure
Do a 'man fuser' and find out all your requirements. Or you can run through below links:
http://docs.hp.com/en/B2355-90691/fuser.1M.html
Rgds-Kranti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2009 07:08 AM
тАО09-12-2009 07:08 AM
Re: what is the purpose of the command "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.
you can see which user is accessing this disk
fuser -cu /dev/dsk/c201d1s
same as you can check on FS which user is using home
fuser -cu /home
you can kill all user who is using /home
fuser -ku /home
for more information see the man page or fuser
Suraj