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!

Make Files

Status
Not open for further replies.

pezhead

Technical User
May 24, 2001
1
US
I would like to know a command that will let me know if my make files are installed?

Also what is the best way in finding out if I have a disk bottleneck?
 
By make files do you mean that you have typed

touch <filename> etc.....

If you have created files navigate to the correct area and type:

ls -altr
 
For your disk bottleneck question, there are lot's of things you can do and lot's of opinions and guides on what to look for. First of all, here's some good info to read:


It is simple, I know, but I always start out with the good old sar command. sar 1 100
This gives you a check of the system every 1 second for 100 seconds. This is the easiest and quickest way to get a good look at your system.

If your sar output shows your %WIO to consistently be above 40%, you should start looking further with the iostat and check out specific disks. When you start seeing %WIO hitting at 70-80 percent, you will notice a difference in performance. In the 90's and you can really tell there's a problem.

Some misc thoughts on disk I/O:
1. Remember, high wait I/O can be from high paging on memory. So what you think is a disk bottleneck can actually be coming from a memory problem.
2. Doing large FTPs, TARs, RMs, and such during your normal business day (when users are active) is not wise as they are I/O intensive.
3. Look into disk reorging. Especially if you have a high I/O application, either high reads and/or high writes. Check out the placement of your filesytems on your disks. Don't group the filesytems most used together on the same disks.
4. Increase your amount of JFS logs and spread them out.




Remember, amateurs built the Ark, professionals built the Titanic.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top