Operating System - Linux
1752571 Members
5359 Online
108788 Solutions
New Discussion юеВ

Re: Finding files to trim

 
SOLVED
Go to solution
Devender Khatana
Honored Contributor

Re: Finding files to trim

Hi,

Apart from this I always use the SAM to trim the log files. This I think is the best way to this, as it also shows you the existing size of all files in one windows itself.

HTH,
Devender
Impossible itself mentions "I m possible"
Yogeeraj_1
Honored Contributor

Re: Finding files to trim

hi,

if you go in SAM, you will get a few system logfiles that you can trim using the same interface. However, the list exclude maybe larger log files that could be generated by application programs.

beware that there are some files that you cannot just delete! You must document yourself fully before doing so. E.g. Oracle Redolog files cannot be just deleted!!

hope this helps too!

kind regards
yogeeraj
No person was ever honoured for what he received. Honour has been the reward for what he gave (clavin coolidge)
Ted Buis
Honored Contributor

Re: Finding files to trim

It is very easy to add files to the list in SAM that can be monitored and trimmed. HP can know which application files you have that may need to be monitored.
Mom 6
TheJuiceman
Super Advisor

Re: Finding files to trim

Thank you all for the help!!! I was able to get what I needed done!!!
Arturo Galbiati
Esteemed Contributor

Re: Finding files to trim

Hi,
cat your_file|xargs -i find . -name {} -exec ll {} \;

this will find the files contained into your_file.

HTH,
ART
TheJuiceman
Super Advisor

Re: Finding files to trim

thanks