- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Extending the root file system
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
08-18-2004 01:53 AM
08-18-2004 01:53 AM
Extending the root file system
I want to extend the root (/) file system, i have applications installed on the system. kindly help me with the procedure carry out this activity.
thanks in advance.
Govind.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 01:59 AM
08-18-2004 01:59 AM
Re: Extending the root file system
The easiest way is to create a bootable ignite tape and restore your OS to a larger filesystem.
Iginite can be downloaded from
http://www.software.hp.com/portal/swdepot/displayProductInfo.do?productNumber=IGNITEUXB
Hope this helps,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 02:08 AM
08-18-2004 02:08 AM
Re: Extending the root file system
use Ignite (make_tape_recovery)
Regards
Franky
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 02:11 AM
08-18-2004 02:11 AM
Re: Extending the root file system
#make_tape_recovery -I -v -x inc_include=/dev/vg00 -a /dev/rmt/?mn
I=interactive recovery
?mn= 0mn or 1mn ....etc.
regards,
Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 02:18 AM
08-18-2004 02:18 AM
Re: Extending the root file system
I agree that Ignite is the (only) way to go.
But I would also caution you *strongly* to not load apps in vg00, let alone in /....and now you no one of the main reasons - space. The other is that if they go awry & corrupt the VG they live in, you're liable to have an unbootable system.
Since you have to use Ignite to extend /, you can use the opportunity to create another VG (if you have the spare disk(s)) & have that VG/LV mount to the location where the apps currently reside.
Use fbackup and create a tape of the apps only & then when you create the make_tape_recovery tape exclude the apps. Then lay down the recovery tape - creating the new VG/LV/FS at that time & simply restore the fbackup data to that new structure.
MORAL: Don't mix OS & application on the same VG.
My 2 cents,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 02:37 AM
08-18-2004 02:37 AM
Re: Extending the root file system
Look to see if you have some log files being written in vg00, or a core file that dumped, or somebody is redirecting output into the vg00. Look into the /var/adm area, you have the syslog.log and mail.log and the various sar files in this area as well. This could be taking lots of room on vg00. Also see if you can run the cleanup utility on some older, superceded patches. This can be vg00 as well.
Ignite is the way to make the / filesystem bigger but see if there is something taking the space before hand. It will be much easier (and no downtime) to see if you can clean up in the / filesystem than to re-ignite a system.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 03:27 AM
08-18-2004 03:27 AM
Re: Extending the root file system
Try this command to identify you worse offenders:
From the root directory (/)
# du . -x -ka | sort -nr | more
This will identify the biggest to smallest file in the root filesystem area.