- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Mounting /etc and /sbin outside the root parti...
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-05-2006 02:05 AM
06-05-2006 02:05 AM
I'm planning to upgrade my server from HP-UX 11iv1 to 11iv2.
On the / partition, only 135 MB are available and, when I run update-ux
(# /usr/sbin/update-ux -s /cdrom HPUX11i-OE)
so there is an error message :
ERROR: To perform this OS update, it is required that the / partition have at least 200000 KB of free space and it currently has 135048 KB of free space.
On the / mount partition, sbin uses 37 MB and etc uses 53MB.
I red a lot of articles on how to extend the root partition (in general, the best one is to reinstall or recover the system), but, nowhere I found a response to this question :
is it possible to mount /etc and /sbin in a different mount point than / ?
If I made this new mount points, so my / partition will use only 20 MB and so it should be OK for performing an upgrade.
Your advices ?
Thanks in advance for you replies.
Herve
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2006 02:11 AM
06-05-2006 02:11 AM
SolutionAll the system executables and startup scripts required during boot are stored in /sbin and all system configuration files in /etc - even the fstab file which tell which filesystems to mount is inside etc :)
So NO is the answer.
Regards,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2006 02:13 AM
06-05-2006 02:13 AM
Re: Mounting /etc and /sbin outside the root partition ?
Jeff Traigle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2006 02:16 AM
06-05-2006 02:16 AM
Re: Mounting /etc and /sbin outside the root partition ?
You are better off rebuilding the system prior to upgrade-ux with make_tape_recovery (Ignite) or make_net_re covery
Then you boot of the media, intervene and make root fs bigger.
Better yet is to avoid upgrade-ux at all, because it is classically unreliable.
Your solution to mount /etc /sbin externally will not yield you any disk space, even if you could do it.
You may have a stray file lying around.
cd /etc
du -k | sort -rn | more
cd /sbin
du -k | sort -rn | more
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
06-05-2006 02:25 AM
06-05-2006 02:25 AM
Re: Mounting /etc and /sbin outside the root partition ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2006 02:43 AM
06-05-2006 02:43 AM
Re: Mounting /etc and /sbin outside the root partition ?
Herve