- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: force unmount
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
тАО05-01-2007 02:11 PM
тАО05-01-2007 02:11 PM
HPUX 11i v2 initial release note says,
VERITAS File System (VxFS/HP OnlineJFS/JFS) 3.5: New version contains new and changed features, including new and/or enhanced tunable parameters, enhanced VxFS commands, new I/O error handling policy, new default intent log mode, new default system block size, VxFS system activity reporter, forced unmounts, and more. Enables creation of file systems up to 4 TB (maximum file size is 2 TB).
All the subsequent release notes confirms that the previous features are retained. Now coming to my question. I was trying to force unmount without much luck.
:/#->swlist |grep HPUX11i
HPUX11i-OE-Ent B.11.23.0609 HP-UX Enterprise Operating Environment Component
:/#->
OnlineJFS01 4.1.008 Online features of the VxFS File System
Now there are no references to the force unmount options in the umount (both 1m and 2) manpages. However the usage of the command suggests otherwise.
:/#->umount
usage: umount [-V] [-v] [-f] [-s] { special | directory }
umount [-F FStype] [-v] [-f] [-s] [-h host] -a
:/#->
I tried -f without much help. I am sure someone would have gotten to the bottom of it. I might be missing something!!!
Thanks in advance,
Naveej
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-01-2007 04:52 PM
тАО05-01-2007 04:52 PM
Re: force unmount
# fuser -cu /mount_point
# kill -9 pid
and then try unmount.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-01-2007 05:15 PM
тАО05-01-2007 05:15 PM
Re: force unmount
I am aware of fuser -k and kill -9. Here I am specifically looking for the force unmount.
Thanks,
Naveej
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-01-2007 05:51 PM
тАО05-01-2007 05:51 PM
Re: force unmount
umount -f does not exist in hpux it exist in linux so manually you need to kill all the process.
# for F in `bdf|awk '$NF~/oracle/ {print $NF}`
> do
> umount ${F}
done
FYI: In the above example mount point is /oracle
you can try the above script I think which will help you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-01-2007 05:57 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-01-2007 06:08 PM
тАО05-01-2007 06:08 PM
Re: force unmount
http://nixdoc.net/man-pages/HP-UX/man1m/vxumount.1m.html
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1079780&admit=-682735245+1178085744318+28353475
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-02-2007 07:20 AM
тАО05-02-2007 07:20 AM
Re: force unmount
NM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-02-2007 11:41 AM
тАО05-02-2007 11:41 AM
Re: force unmount
vxumount works!!
(and I am aware of the possible FS corruption)
Cheers,
Naveej
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-02-2007 11:56 AM
тАО05-02-2007 11:56 AM
Re: force unmount
Naveej