- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Increasing file size on /
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
06-13-2000 12:05 PM
06-13-2000 12:05 PM
Much appreciated,
Dimitri
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2000 12:38 PM
06-13-2000 12:38 PM
Re: Increasing file size on /
It is a product on the Application CDs and does not require a codeword.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2000 12:48 PM
06-13-2000 12:48 PM
Re: Increasing file size on /
Tommy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2000 12:55 PM
06-13-2000 12:55 PM
Re: Increasing file size on /
http://www.software.hp.com/products/IUX/index.html
Tommy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2000 08:55 PM
06-13-2000 08:55 PM
Re: Increasing file size on /
It is bit difficult to increase the size of the root filesystem dynamically.
Reason is root should be contigous. If there is no other filesystem created after root in the root disk you can do the following way.
reboot the system in maintanance mode.
ISL> hpux -lm
# lvextend -L XXX /dev/vg00/rroot
XXX - new capacity of the filesystem.
# extendfs /dev/vg00/rroot
# fsck /dev/vg00/rroot
# lvlnboot -b /dev/vg00/stand
# lvlnboot -r /dev/vg00/root
# lvlnboot -s /dev/vg00/swap
# lvlnboot -d /dev/vg00/swap
# lvlnboot -R
# reboot
Hope this can help you
regards
venu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2000 02:49 AM
06-14-2000 02:49 AM
Re: Increasing file size on /
If so, you might find that you can get away with removing your previous kernel file (or moving somewhere else if you are ultra cautious) (/stand/vmunix.prev) as this gets overwritten anyway.
When generating a new kernel, the patching process needs enough room (temporarily) for three copies of the kernel (new, current and previous) it then moves new to current and current to previous so you end up with two copies.
Simply removing /stand/vmunix.prev before swinstall is a lot simpler than creating a whole new boot disk!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2000 05:20 AM
06-14-2000 05:20 AM
Re: Increasing file size on /
Much Appreciated
Dimitri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2000 06:33 AM
06-14-2000 06:33 AM
Re: Increasing file size on /
have you tried the "cleanup" utility for patches? It allows you to remove all old filesets that were patched if you do not plan to roll back to previous state.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2000 06:08 AM
06-15-2000 06:08 AM
Solution1. Make a new logical volume of the desired size making sure you follow the directions for creating a bootable volume.
2. Make that logical volume an alternate boot volume.
3. Copy all of your current root volume over to the newly created root volume.
4. reboot and interact with the IPL telling it to boot off the alternate boot lv.
5. remove the original root volume (lvrmboot).
6. make sure the new boot volume shows up as the only boot volume.
7. try rebooting on the new logical volume.
I'm not sure that coming up in maintenance mode will work. (Although I would be happy to be corrected in this.) Even in maintenance mode it would seem that the root lv would have to be mounted. A mounted lv can be extended but the filesystem on it cannot. Basically you have to find a way to unmount the root lv in order to extend it. The same problem holds true with other "busy" logical volumes such as /var /opt /tmp /home & etc. but they are much easier to deal with by manipulating the /etc/fstab.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2000 07:17 AM
06-19-2000 07:17 AM
Re: Increasing file size on /
make_recovery -AvC
This will create a tape using /dev/rmt/0m
If your DAT drive is not 0m use:
make_recovery -AvCd /dev/rmt/1m
fill in the correct device number.
Reboot your system and interupt the boot. Boot from the tape device. Do not use the automatic recovery. Go into interactive and you will be able to work through several screens where you can resize your logical volumes. Give them new values as needed and then let it go. It will reload everything and your system will be back as it was, with the changes you gave it.
I've done it several times and it works very well.