Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

File System Full Message on Console

Status
Not open for further replies.

slymac

IS-IT--Management
Sep 20, 2001
36
0
0
CA
Hi I'm a bit of a novice at this. I have a Sun Sparcstation with OS 5.7. A message keeps popping up on the console stating the following:

NOTICE: alloc: /opt: file system full

I have looked at the log files in /opt/local/apache/logs and trimmed them down a number of times but the message eventually comes back. I'm not sure how to search for largefiles. Any help with solving this would be extremely appreciative.
Thanks.
 
One way to search for large files is using the find command:

find /opt -size +8192 -exec ls -l {} \;

This will search for any files under /opt that are greater than 4MB and then execute ls -l for the files found to show their actual size. I personally find this very useful. If nothing is found, try a smaller value instead of 8192. Regards,
Chuck

chuck.spilman@nokia.com
 
try this..
go to /opt directory, perform below command.
#du -sk * |sort -nr

this will display the lagest directory or file in order.

regards
fissa
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top