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-14-2000 11:11 AM
12-14-2000 11:11 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2000 11:16 AM
12-14-2000 11:16 AM
Re: /var
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2000 11:19 AM
12-14-2000 11:19 AM
Re: /var
You could always create a new filesystem and mount it under /var somewhere - I would suggest going with /var/adm/sw. ie. create a filesystem say /tempfs ; mount it and copy all the contents of /var/adm/sw to /tempfs ; umount /tempfs ; remove all files in /var/adm/sw ; mount the new filesystem under /var/adm/sw (remember to make the changes in your /etc/fstab)
the files that are expendible are in /var/tmp
you may also want to use
cd /var
du -a | sort +n
or
find /var -size +1000000c -print
to see a listing of really large files.
Good luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2000 11:25 AM
12-14-2000 11:25 AM
SolutionCheck under /var/tmp for any temp files you can get rid of...things like exclude.temp and include.temp are leftovers from your make_recovery...ok to remove.
Check for any log files under /var (omniback puts alot of stuff here)....reduce the size of these.
tail -100 logfile.log > tmp.log then move tmp.log back to logfile.log
Another thing you might want to check on doing (if you haven't in awhile) is cleanup....it will clean up old patches from system. I think it's cleanup -i (but double check man cleanup to be sure...)
Hope this helps ya,
/rcw
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2000 11:30 AM
12-14-2000 11:30 AM
Re: /var
...Madhu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2000 11:38 AM
12-14-2000 11:38 AM
Re: /var
swmodify -y PH[CKNS][SOEL]_*.* PH[CKNS][SOEL]_*
cd /var/adm/sw/patch
rm -r *
Second: with freedisk you can remove unused software.
Third: with du -ks * |sort -nr in a dir, you can see which dir consumes most space.
Good luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2000 11:40 AM
12-14-2000 11:40 AM
Re: /var
the swmodify -y ... should be swmodify -u ...