![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| SUN Solaris The Solaris Operating System, usually known simply as Solaris, is a free Unix-based operating system introduced by Sun Microsystems . |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Increasing swap size | akyuceisik | HP-UX | 1 | 05-09-2008 07:55 AM |
| Help on increasing fs size | kingsto88 | HP-UX | 5 | 02-11-2007 03:37 AM |
| Increasing File Size on AIX | Rosie C | AIX | 1 | 05-12-2006 01:25 AM |
| Increasing the FileSystem Size | aldowsary | AIX | 9 | 07-18-2005 12:59 AM |
| Increasing a directory size | jonest | UNIX for Dummies Questions & Answers | 9 | 06-08-2005 07:26 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
could you please open the message file and see what message they are? I hope it will help you to do RCA.
|
| Forum Sponsor | ||
|
|
|
|||
|
Hi joerge,
i tried ur suggestion in little different way- "du -akdh /var | sort -nr > /tmp/var.out". It works well. Can you tell me also can I see when file has last modified by "du -akdh /var | sort -nr" Is it possible somehow to accomodate 'ls -lhtr' with command du -akdh /var | sort -nr | grep "M ". ?? |
|
|||
|
Hi ThePurple
The fact that your messages.x files are so massive tells me you are logging shedloads of stuff in there. I suggest you make copies of the messages.0 - messages.4 files to an alternative location and then do a # cat /dev/null > messages.0 etc to empty them. This will save you a few hundred MB and give you some breathing space. The next step would be to change your log rotation to rotate your messages files when they get to 10MB or something. Afterwards you should have a look at your /etc/syslog.conf file and amend it to log more efficiently. |
|
|||
|
You can use this command :
#for file in /tmp/var.out; do ls -lrt $file; done --> it will show you the timestamp. If the file /tmp/var.out contain only file name, then use #for file in /tmp/var.out; do find / -t f -name $file -print; done |