- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Help! how to find out who is holding this link fil...
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
03-22-2002 01:24 AM
03-22-2002 01:24 AM
Help! how to find out who is holding this link file?
lrwxrwxrwx 1 root root 20 Feb 24 03:55 /interface
#fuser /interface
/interface: stat: I/O error
fuser: could not find or access file /interface.
#rm /interface
rm: /interface not removed. Device busy
May I know how can I find out which process is holding this link file?
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2002 01:36 AM
03-22-2002 01:36 AM
Re: Help! how to find out who is holding this link file?
Then use
# fuser -u ....... <- the exact mount point
to get the information. Then use
# fuser -k
to kill the process id. Then try to umount the mount point.
Hope this helps.
Kenny.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2002 01:49 AM
03-22-2002 01:49 AM
Re: Help! how to find out who is holding this link file?
Any solution besides reboot?
#fuser -u /interface
/interface: stat: I/O error
fuser: could not find or access file /interface.
#rm /interface
rm: /interface not removed. Device busy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2002 01:53 AM
03-22-2002 01:53 AM
Re: Help! how to find out who is holding this link file?
this could be a nfs mount (Version 2) which cannot be satisfied.
Check with bdf or mount if this is the case.
You could also look in /etc/auto_master if this is a automounted entry.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2002 03:11 AM
03-22-2002 03:11 AM
Re: Help! how to find out who is holding this link file?
do bdf /interface to see where it is mounted. If it is NFS , then it could be a issue with mount.
try lsof /interface too. Lsof is a free tool .
HTH
raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2002 03:18 AM
03-22-2002 03:18 AM
Re: Help! how to find out who is holding this link file?
# fuser -c -u /usr
-c to see which processes are using this mounted device wherever in the tree
# lsof -f /usr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2002 08:56 AM
03-22-2002 08:56 AM
Re: Help! how to find out who is holding this link file?
Regards,
Jason V.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2002 09:00 AM
03-22-2002 09:00 AM
Re: Help! how to find out who is holding this link file?
fuser -f /interface
or simply use:
fuser -fk /interface
and then delete it.
I hope that this helps.
Regards,
Jason V.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2002 04:22 AM
03-25-2002 04:22 AM
Re: Help! how to find out who is holding this link file?
#fuser -cu
will give you who are on the file.
Magdi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2002 04:25 AM
03-25-2002 04:25 AM
Re: Help! how to find out who is holding this link file?
Be sure that your working directory of the actual session is not in the /interface directory !
It's the case in most time.
Magdi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2002 04:36 AM
03-25-2002 04:36 AM
Re: Help! how to find out who is holding this link file?
If fuser does not provide you with the process that is holding /interface and when you are sure it is not a mountpoint (check with bdf /interface) you can try to remove the file with "unlink" , see man 1m unlink.
HtH,
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2002 04:28 PM
03-25-2002 04:28 PM
Re: Help! how to find out who is holding this link file?
We have already rebooted the server and fixed this problem.
Thank you a lot for your response.