- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: /var/adm/sw/save
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
02-01-2004 10:16 PM
02-01-2004 10:16 PM
/var/adm/sw/save
I used cleanup but without succesfull and I haven't disk space free.
Can I move save directory to another file system and then create a link?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2004 10:20 PM
02-01-2004 10:20 PM
Re: /var/adm/sw/save
what is the O.S. version? How to you launch cleanup command?
Check this thread:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=181709
I hope this helps you.
Best regards,
Ettore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2004 10:31 PM
02-01-2004 10:31 PM
Re: /var/adm/sw/save
check using as what is utilizing the space
du -k /var|sort -nr|more
check for
/var/crash,
/var/adm
/var/mail
/var/tmp
/var/preserve.
Revert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2004 10:35 PM
02-01-2004 10:35 PM
Re: /var/adm/sw/save
cd /var/tmp
find . -mtime +7 -exec rm {} \;
Mark Syder (like the drink but spelt different)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2004 11:27 PM
02-01-2004 11:27 PM
Re: /var/adm/sw/save
# Cleanup patches that have been superceded twice
0 0 1 * * echo "y" | /usr/sbin/cleanup -c 2 > /var/adm/cleanup.log 2>&1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2004 02:39 AM
02-02-2004 02:39 AM
Re: /var/adm/sw/save
Since you used 'cleanup' command already, I would try to see what is occupying /var filesystem.
cd /var
du -sk * |sort -n
and see the the directory that offends the space much. /var contains most of the log files and deleting opened files can cause confusion on space.
Regarding the other question, you *cannot* remove save directory. But you can move the it to another filesystem and then create a link. However, make sure this filesystem is accessible in single user mode. You will need to have this directory if you have to backout patches.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2004 02:56 AM
02-02-2004 02:56 AM
Re: /var/adm/sw/save
cat /dev/null > /var/adm/wtmp
Good Luck