Disk Utilization

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Disk Utilization
# 1  
Old 03-15-2012
Disk Utilization

Hi,

Can anybody explain why my newly created 120G FS shows 100% utilization when only 113G of disk space has been used? ......


Code:
# df -h .
Filesystem            Size  Used Avail Use% Mounted on
/dev/mapper/vg01-lvol0
                      119G  113G     0 100% /u02
#du -h /u02
16K     /u02/lost+found
112G    /u02/bckups/rmanfull
112G    /u02/bckups
112G    /u02

R,
D.

Last edited by Duffs22; 03-15-2012 at 07:00 AM..
# 2  
Old 03-15-2012
Reserved blocks?

Code:
tune2fs -l /dev/mapper/vg01-lvol0 | grep "Reserved block"

This User Gave Thanks to Scott For This Post:
# 3  
Old 03-15-2012
Hi,

Code:
# tune2fs -l /dev/mapper/vg01-lvol0 | grep "Reserved block"
Reserved block count:     1952816
Reserved blocks uid:      0 (user root)
Reserved blocks gid:      0 (group root)

Cheers!
# 4  
Old 03-15-2012
You can modify the reserved blocks, but they are often used by root to fix problems like this. I tend to reduce the 5% overhead when I am dealing with disks of over 100GB. 5GB is a large amount to allow for cleanup. When dealing with 1TB LUNs it is even more important to not bother with 5% waste, as those resources can be expensive.

look for the -m option in tune2fs
This User Gave Thanks to mark54g For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. HP-UX

How to check overall hard disk utilization in UNIX?

how to check overall hard disk utilization in unix? we use bdf command to find the utilized space for the particular path bdf filepath how can i find overall hard disk utilization? (4 Replies)
Discussion started by: ashwanthfrq
4 Replies

2. Shell Programming and Scripting

Need simpler way to find all my disk space utilization using df -h

Hi All, I am using SSH Tectia terminal to get the disk space utilization of a particular folder /opt/logs in all the servers one by one using the command df -h and looking through the list of folders manually to get /opt/logs folder disk space used percentage . The problem here is , it... (2 Replies)
Discussion started by: aakhan2011
2 Replies

3. Shell Programming and Scripting

TOP IO DISK Utilization scripting

Hi Fiends, I am new to scripting., I want to calculate the 2nd column in the below output and print the average for each hdisk. Below is the output of sar command, hdisk0 0 hdisk0 2 hdisk0 0 hdisk1 2 hdisk1 2 hdisk1 2 hdisk2 1 hdisk2 0 hdisk2 0 Thanks, Srinivasan (3 Replies)
Discussion started by: Srini.rk1983
3 Replies

4. UNIX for Dummies Questions & Answers

Disk utilization

Hi, I have hundred folders under a fs /apps which is used by different users and they upload their data to these folders on a daily basis. Using du -sk gives me complete structure of the filesystem but i want to find out day to day utlization of the top ten highest accoriding to size wise ... (4 Replies)
Discussion started by: chetansingh23
4 Replies

5. Infrastructure Monitoring

Disk Utilization between Global + Zone

Dear Gentleman in my environment I have Solaris10 OS Box in Global Zone with 136 GB and mount point from SAN Storage 500 GB (Orastorage) Zone1 mounted on /Zones folder with 66 GB when I run zpool list output -bash-3.00$ zpool list NAME SIZE ALLOC FREE CAP HEALTH... (0 Replies)
Discussion started by: Hosam
0 Replies

6. Shell Programming and Scripting

disk space utilization script

Hi, I wrote the following script for monitoring disk space and inform the concerned team accordingly. But script gives me below error syntax error at line 70 : `<' unmatched #!/bin/ksh . /home/scr/.profile . /home/scr/.infa_env # Get the list of Integration Services ... (6 Replies)
Discussion started by: svajhala
6 Replies

7. Shell Programming and Scripting

need help for scrip to monitor disk utilization

Hi, I need help to write a script which will monitor disk utilization. Please suggest the best approach to achive this. I am thinking of having sleep inside the script which will run for(eg.) 60 secs and then disk utilization will be checked and depends on the % usage of disk mail will... (1 Reply)
Discussion started by: sunilmenhdiratt
1 Replies

8. Red Hat

Disk Utilization is very high

Hi, I have monitored that disk utilization is very high on one of red hat linux VM. Would like to know how to find out that issue of high disk utilization is because of disk or Installed Application on that server is causing the problem. Regards, Manoj (1 Reply)
Discussion started by: manoj.solaris
1 Replies

9. UNIX for Advanced & Expert Users

File disk utilization for 10 days prior

Hi I have a requirement to list the files & the total disk utilization they have which are 10 prior to current date. I tried couple of options in combinations of find mtime, ctime with du -m, but no luck. Could you please help me in this ? (2 Replies)
Discussion started by: videsh77
2 Replies

10. AIX

Historical Disk bandwidth utilization

Early this morning our sar reports show that WIO on the system was over 50% for about an hour. We also had some users complain about response time problems during this time. Is there a way I can go back and check what disks were busy during this time (something like topas but for historical data)? (1 Reply)
Discussion started by: 2dumb
1 Replies
Login or Register to Ask a Question