- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to increase the size of /usr ?
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
05-29-2005 01:50 AM
05-29-2005 01:50 AM
How to increase the size of /usr ?
===========================
# umount /usr
umount: cannot unmount /usr : Device busy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2005 01:58 AM
05-29-2005 01:58 AM
Re: How to increase the size of /usr ?
If you have OnlineJFS, you can do it online.
swlist -l product | grep -i online
To find out whether you have OnlineJFS.
Then run
lvextend -L
fsadm -F vxfs -b
If you don't have OnlineJFS, reboot the system and interupt the autoboot. Interact with ISL. (In BDC>"bo pri" Interact with ISL "y")
From ISL>"hpux -lm" to boot the system in LVM maintenance mode.
Vgchange -a y /dev/vg00
lvextend -L
extendfs /dev/vg00/rlvolx
Reboot once done with this.
Refer to coresponding manpages for more details.
Regds
TT
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2005 02:07 AM
05-29-2005 02:07 AM
Re: How to increase the size of /usr ?
The procedure told above is enough to achive this. Find online JFS on user machine by
#swlist -l product|grep -i online
OnlineJFS B.11.11 Online features of the VxFS File System
If you get similar output, you have it and can use the first step otherwise use the second option which involves reboot.Prior to reboot also find that your vg00 has enough free space for file system to be extended by
#vgdisplay -v /dev/vg00 |more
In the output look for Free PE and PE Size. Your vg has free space in MB which equals to the number obtained by multiplying these two nos.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2005 07:10 AM
05-29-2005 07:10 AM
Re: How to increase the size of /usr ?
With Online JFS
#lvextend -L
#fsadm -L
Regards,
SK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2005 10:55 PM
05-29-2005 10:55 PM
Re: How to increase the size of /usr ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2005 02:39 AM
05-30-2005 02:39 AM
Re: How to increase the size of /usr ?
Kev.