- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Cannot remove mount point.
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
07-18-2001 01:22 PM
07-18-2001 01:22 PM
I have a /net mount point that came from somewhere I do not know. It is not in fstab and when I try to umount it says cannot find in /etc/mnttab.
When I try to do a rmdir /net I get Cannot remove mountable directory.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2001 01:36 PM
07-18-2001 01:36 PM
Re: Cannot remove mount point.
This might be an automount mount point. When you say it is a mountpoint do you mean that it
appear when you do a bdf command?
If not is it simply a directory.
If this is an automount directory, kill automount and it should disappear.
Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2001 01:39 PM
07-18-2001 01:39 PM
Re: Cannot remove mount point.
Do a fuser -c /net and get the list of process running with the mountpoint. It can be possible that u dont need to delete it at all . Just after killing those processes just umount /net .
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2001 01:45 PM
07-18-2001 01:45 PM
Re: Cannot remove mount point.
The '/net' directory is a special one used by the automounter of NFS (network file systems). See the man pages for 'automount' for a bit more detail.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2001 02:49 PM
07-18-2001 02:49 PM
SolutionBy default the automounter daemon is enabled.
The /net will not disappear until you either 1) reboot the system, or 2) stop and restart the NFS daemons.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2001 10:28 PM
07-19-2001 10:28 PM
Re: Cannot remove mount point.
Hi
Normally filesystem will get mounted thru two files. One is /etc/fstab, and the other is /etc/auto.direct.
First U make sure that this particular entry is not there in /etc/fstab.
Secondly edit /etc/auto.direct and see whether entry is there or not. If yes, remove that line.
Then got /sbin/init.d directory do this
#nfs.client stop
#nfs.clent start
Now try removing mount point. If still problem exists U will have to reboot to solve this. Once U reboot problem will get solved.
Bets of luck
Shahul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2001 12:40 PM
07-20-2001 12:40 PM
Re: Cannot remove mount point.
Thanks for all the help.