- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Extending root filesystem
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
03-13-2004 10:42 AM
03-13-2004 10:42 AM
I have a HP9000 system with mirrored root disks having lots of space left over.In this root filesystem is 99% and frequently fills
up to 100%.
Can any one give brief steps to extend root filesystem size?
Thanks in Advance.
With Regards
R.Mahendran.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2004 10:57 AM
03-13-2004 10:57 AM
Re: Extending root filesystem
Please check this link:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=91185
hth,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2004 02:13 PM
03-13-2004 02:13 PM
SolutionHere is the only way I know to do it.
make_tape_recovery to tape
Boot system at console
Intervent with a key at the 10 second prompt.
sea
You will see a sequential device, thats your tape drive
if its P2 type this command
boot P2
N To the interact question
Watch the screen, Intervent when prompted by Ignite. Increase the size of root.
Allow the Ignite to complete the installation.
SEP
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
03-13-2004 05:31 PM
03-13-2004 05:31 PM
Re: Extending root filesystem
Create a make_tape_recovery tape. If you have Online-JFS, then you can try this. Since root has to be contiguous, you 'adjust' the contiguous space.
1. Find out the next logical volume to your root file system. Say lvol4.
2. Reduce the mirrors on lvol4.
lvreduce -m 0 /dev/vg00/lvol4 /dev/dsk/cxtydz
where cxtydz is the primary disk. This will free up space after lvol3, your root logical volume.
3. Now you can extend root as it has the contiguous space available.
lvextend -L new_size_in_mb /dev/vg00/lvol3
fsadm -b
This should extend the filesystem.
4. Extend the mirror back to primary on lvol4.
lvextend -m 1 /dev/vg00/lvol4 /dev/dsk/cxtydz
You may have to turn-off "strict" on lvol4 if it gives you any error.
If you don't have onlineJFS or if you have any doubts, use make_tape_reocvery process.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2004 09:57 AM
03-14-2004 09:57 AM
Re: Extending root filesystem
du -kx / | sort -rn | more
/sbin will be the largest directory, just about 20 megs. Anything larger than /sbin is stored in the wrong location. If /dev is much larger then 20 Kb, then look for files that don't belong in /dev:
find /dev -type f -exec ll {} \;
Look for some applications that were mis-installed in / rather than /opt.
Bill Hassell, sysadmin