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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

2 GB File Limit Report Script

Status
Not open for further replies.

Fixles

Programmer
Jan 24, 2002
36
GB
Hi All,

I'm a newbie SCO administrator running a couple of SCO Openserver 5.0.6 servers and just found out to my horror that it has a 2GB file limit!

One of the servers is running a flat file database and 8 of the files are running at 1.8GB. I can create some additional files to be used so this isnt such a problem but I was wondering if anyone had a script or command I can enter that will search and entire directory and sub directories (My /data partition) for files above a specified size?

Many Thanks,

James
 
man find

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Problems posting earlier. Sorry if this is duplicated:

You can run this command to specifically locate files larger than 1.5GB. Adjust the number to suit your needs.

# find / -type f -size +3000000 -print

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top