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-30-2003 03:50 PM
01-30-2003 03:50 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2003 03:52 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2003 04:08 PM
01-30-2003 04:08 PM
Re: umount
# umount /fred
umount: cannot unmount /fred : Device busy
# fuser /dev/vg01/fred
1234c
Once the process has been terminated, you can unmount the filesystem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2003 04:10 PM
01-30-2003 04:10 PM
Re: umount
An easier fuser command to user to find who is using a mount point:
# fuser -cu /mountpoint_name
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2003 04:15 PM
01-30-2003 04:15 PM
Re: umount
If vg is in deactivated state, how would file system be in mounted state?
-Sri
PS: One of the tongue slips?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2003 04:22 PM
01-30-2003 04:22 PM
Re: umount
If a VG is NOT activated, a filesystem CAN NOT be mounted, hence no reason to use umount.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2003 06:47 PM
01-30-2003 06:47 PM
Re: umount
fuser -cuk /mountpoint
That will kill everything. Don't do it on var.
Sounds like the problem definisiton is confusing people. Details please.
P
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2003 12:01 AM
01-31-2003 12:01 AM
Re: umount
It seems you want to do something like
fsck with your file system. So you can
do this with umounted fs & activated VG.
Simply do
#umount -F ...
#fsck -p
If you need to manipulate with VG like
vgextend, lvextend, extendfs ... :
#umount -F ...
#vgextend ....
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2003 03:44 AM
01-31-2003 03:44 AM
Re: umount
If you are trying with a vg00 basic operating system file system I recommend you set your system in single user mode. If you want do this in others files systems you must ensure that is not busy by your own session or by any SAM session (i.e. listing current VG/LV configuration), etc.
An effective way to free your FS is the following:
#fuser -ku /dev/vg[nn]/lvol[n];umount /
This execute umount command immediately after the fuser command minimizing the possibility that it is busy again.
Rgds.