- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How to increase space
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
12-19-2000 02:38 AM
12-19-2000 02:38 AM
I have enought space left (not asigned) on disk.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2000 02:43 AM
12-19-2000 02:43 AM
Solutionfor example, hav eregular files been placed in /dev?
do du -s /dev
it should be fairly small number, if not then someone may have done something redirecting to what they THOUGHT was a device, but did a typo.
common ones are /dev/rmt/om instead of /dev/rmt/0m, or /dev/nul instead of /dev/null.
Also check for multiple vmunix* files in /standor /stand/build.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2000 02:46 AM
12-19-2000 02:46 AM
Re: How to increase space
First check what files/directories have grown up your fs:
du -kx / |sort -n
If you found some dirs you can create a new lvol and mount it to them.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2000 03:19 AM
12-19-2000 03:19 AM
Re: How to increase space
In order to extend / you will have to use Ignite-Ux, do a make_recovery -A and use the freshly generated DAT to extend /, for that you will have to reboot from the DAT, press return to interrupt batch mode, now you can install again HP-UX with new params (change file system size).
As you can see Melvyn and Rainer are right check first why / is 100% full by following theyr advices and if you have no other alternative now you know what you are to do
You may have to download and install Ignite-Ux, its free , make a search on the forum...
Here are size of vg00 fs on one of my D230...
/dev/vg00/lvol3 86016 28618 53876 35% /
/dev/vg00/lvol1 67733 36654 24305 60% /stand
/dev/vg00/lvol8 716800 579032 129196 82% /var
/dev/vg00/lvol7 606208 451612 145000 76% /usr
/dev/vg00/lvol6 667648 588618 74690 89% /opt
Good luck
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2000 03:38 AM
12-19-2000 03:38 AM
Re: How to increase space
You can create the simbolic link to the another filesystem, and move some data there.
For increase the "/" filesystem the problem is it must be contiguous extents. May be you can increase it if boot your system from the another boot disk, and remove the used space after "/" , and increase it. First make a backup !
Please create link to another fylesystem.
Saa
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2000 04:31 AM
12-19-2000 04:31 AM
Re: How to increase space
Do find / -xdev -size +1,000,000c -exec ll {} \\; to find core dumps of files mistakenly copied to / root.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2000 04:53 AM
12-19-2000 04:53 AM
Re: How to increase space
Unless you have installed HP-UX with a really small / filesystem, you shouldn't need to increase its size because it's not suppposed to grow.
Make sure you have separate filesystems for
/tmp
/var
/usr
/opt
If /tmp is not on its own filesystem, clean all files older than 3 days with:
find /tmp -type f -mtime +3 -exec rm {} \;
Check if the / filesystem contains any large file that shouldn't be there (core dumps, a.out, *.tmp, *.log) with
find / -xdev -size +1000 -exec ll {} \;
will show you all files larger than 1000 blocks (512Kbytes)
Best regards,
Dan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2000 08:47 AM
12-19-2000 08:47 AM
Re: How to increase space
As a side note I am slightly annoyed that HP seem to use /etc as a config area for uucp, ppp, printers, resmon. Alright these should not be too big but if you do have a system with a lot of modems or printers then it may start to impact on your / filesystem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2000 09:54 AM
12-19-2000 09:54 AM
Re: How to increase space
# find / -name "core" -type f -exec rm {} \;
Find big files ????
# find / -size +1000000c | pg