- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- No unmount command
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-22-2001 12:16 PM
01-22-2001 12:16 PM
No unmount command
Thanks
Andy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2001 12:21 PM
01-22-2001 12:21 PM
Re: No unmount command
is the command you want. A filesystem may not be umounted while it is busy. The fuser command will show you processes attached to a filesysem or logical volume. Also, if you have online JFS on the server it is not necessary to umount the filesystem in order to increase the filesystem. Simply extend the logical volume (using lvextend), then increase the size with the fsadm command (-b flag, size specified in Kb: man fsadm_vxfs for info)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2001 12:22 PM
01-22-2001 12:22 PM
Re: No unmount command
See "man 1M mount" for mount or umount. To un-mount
/usr/sbin/umount
/sbin/umount
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2001 12:31 PM
01-22-2001 12:31 PM
Re: No unmount command
BUT...if your wanting to increase your logical volumes, have you checked to see if you have Online JFS (with this you do NOT need to umount any filesystems).
Do:
swlist | grep -i online
If you do have this than you only need to do the
lvextend ...... command and then
fsadm -F vxfs -b
KB=MB * 1024
If you don't have Online JFS, than YES you will have to umount the filesystem and then extend. If it's on vg00 than I recommend rebooting and going to single user to do your extending.
/rcw
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2001 10:26 PM
01-22-2001 10:26 PM
Re: No unmount command
You're surely not the first one to be confused by the somewhat cryptic Unix names. ;-)
Many people talk about 'unmounting' a filesystem, but the real command name is 'umount' (no N..), located in /usr/sbin.
See man 1M mount as this will give you the umount page as well.
If I were you, I'd create the /usr/lib/whatis database which would allow you to search any command by keyword.
# catman -w
will create the 'whatis' database.
Once created, you may use
# man -k keyword
to search for a given keyword in the whole set of manual pages.
Best regards,
Dan