- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Removing files from time to time.
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
10-12-2001 01:20 AM
10-12-2001 01:20 AM
I know that there are files ?unbounded?, that is they become large and from time to time you need to delete the content of this files. A good SA, during is working day, what files has to check?
And about Core files? I?d like to know names of this files and dimensions (so after you have to delete them).
Regards, Angelo.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2001 01:30 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2001 01:32 AM
10-12-2001 01:32 AM
Re: Removing files from time to time.
Some files which can grow very large which you may need to check regularly are;
/var/adm/syslog/syslog.log
/var/adm/syslog/mail.log
/var/adm/wtmp
/var/adm/cron/log
/var/adm/lp/log
Also some directories for temporary files;
/var/tmp
/tmp
/var/spool/mqueue (for undelivered mail)
As for core files, these can be as large as a process is in memory. So if you have user application processes which can grow to 50MB (for example) then you can have core files of 50MB. These could cause a space problem, so what we do is create a symbolic link in users home directories called core which points to /dev/null, this way no core files are created which can take up lots of diskspace and we then need to search for and remove. Only if you must keep the corefiles to investigate why they dumped then dont do this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2001 06:23 AM
10-12-2001 06:23 AM
Re: Removing files from time to time.
find / -name *.log -print
find / -name log* -print
find / -name *log* -print
Will bring up alot you may not want, but if you don't know the filename specifics on how an app may store it's logs..you may have need to try any or all of the above to find them.
Just a thought,
Rita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2001 11:17 AM
10-12-2001 11:17 AM
Re: Removing files from time to time.
Richard