FS space usage


 
Thread Tools Search this Thread
Operating Systems AIX FS space usage
# 1  
Old 03-07-2012
FS space usage

Hello.
I have a clean-up script that deletes > 5days old files on /archive/idocs directory. This script runs twice a week, Tuesday and Friday. This creates a log file that shows the current space usage before and after the files were deleted from the directory.
On Feb 3, the script ran and generated the below log file:
Code:
Before execution ...
Filesystem    512-blocks      Free %Used    Iused %Iused Mounted on
ppdd:/archive.shr    1179648     10200  100%       49     3% /archive
.
.

After execution ...
    Filesystem    512-blocks      Free %Used    Iused %Iused Mounted on
    ppdd:/archive.shr    1179648     10192  100%       51     4% /archive

As you can see, when the script ended, space usage was at 100%.
The next time the script ran, on Feb 7, the log showed (before execution) that space usage was at 91% and not 100%.
Code:
Before execution ...
Filesystem    512-blocks      Free %Used    Iused %Iused Mounted on
ppdd:/archive.shr    1179648    112208   91%       49     1% /archive
.
.
After execution ...
    Filesystem    512-blocks      Free %Used    Iused %Iused Mounted on
    ppdd:/archive.shr    1179648    214296   82%       49     1% /archive

How come the space usage before execution was at 91% instead of 100%? I have confirmed with our AIX team that no files were manually deleted from the directory before Feb 7. Instead, another batch of arc* files were written to the directory on Feb 4, days before the script ran on Feb 7.

Thank you in advance.

Last edited by Corona688; 03-07-2012 at 03:39 PM.. Reason: illegible font
# 2  
Old 03-08-2012
what does 5 days old mean - last accessed 5 days ago or created 5 days ago - in the second case it might be that something was still using it while your script run first time - but the process finished and released the space before you run your script again.

Regards
zxmaus
# 3  
Old 03-12-2012
thanks for the reply.
5 days old meant created 5 days ago.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help with script to display space usage

Hi all, I am looking for help with a script for displaying the space available from a df - h command for / (root). The problem is: If it is below 700 MB I have jobs that are failing... Is there a way I can do a calculation? If it above 700 MB it is good, if it is below 700 MB it will fail.... (5 Replies)
Discussion started by: gartie
5 Replies

2. Red Hat

Phantom space usage in /

Hi everyone, Got an interesting one (well, interesting to me) I have a box with a 5Gb / mount point. Checking for large files I found nothing and in fact when I did a full du I found that there was only 1.6Gb in use! And yet 100% used in / So there's an unaccounted 3.4Gb somewhere! The... (3 Replies)
Discussion started by: keefbaker
3 Replies

3. HP-UX

Space usage in MB or GB

hi, In HP unix, how can check the space usage in Mb bdf will give me the output in Bytes i guess. Also, how can i check the directory size in hp unix. Thx (4 Replies)
Discussion started by: bang_dba
4 Replies

4. UNIX for Dummies Questions & Answers

Command to display the space usage (memory usage) of a specific directory.

Hi all, Can you please tell me the command, with which one can know the amount of space a specific directory has used. df -k . ---> Displays, the amount of space allocated, and used for a directory. du -k <dir name> - gives me the memory used of all the files inside <dir> But i... (2 Replies)
Discussion started by: abhisheksunkari
2 Replies

5. UNIX Desktop Questions & Answers

Issue with disk space usage

Issue with disk space usage I have the following line in my "df -h" output: Filesystem Size Used Avail Capacity Mounted on /dev/ad4s1a 496M 495M -39M 109% / What is the issue with having 9% excess utilisation? How can I find out what this partition is... (2 Replies)
Discussion started by: figaro
2 Replies

6. Shell Programming and Scripting

Disk Usage - Space Used

Hi all, FreeBSD7.1 @ sh. In a backup script I am trying to get the blocks used by the backup once completed. I am using the function: #!/bin/sh spaceused() { du -d 0 "${1}" | awk -F"+" '{ print $1 } } to return the blocks used of said directory and contents. Via. command line... (7 Replies)
Discussion started by: Festus Hagen
7 Replies

7. HP-UX

how can I find cpu usage memory usage swap usage and logical volume usage

how can I find cpu usage memory usage swap usage and I want to know CPU usage above X% and contiue Y times and memory usage above X % and contiue Y times my final destination is monitor process logical volume usage above X % and number of Logical voluage above can I not to... (3 Replies)
Discussion started by: alert0919
3 Replies

8. UNIX for Dummies Questions & Answers

how to determine the disk space usage

how can we determine the disk space used by a certain directory? (1 Reply)
Discussion started by: gfhgfnhhn
1 Replies

9. UNIX for Dummies Questions & Answers

finding disk space usage

How would I go about finding the about of disk space occupied by a certain directory? For example, /u1/cvera => 530 MB Thanks =) (3 Replies)
Discussion started by: cvera8
3 Replies

10. UNIX for Dummies Questions & Answers

formatting space usage/available reports

I'm really, really new to writing scripts, but have been asked to generate a report that will show available space for a disk, space used by particular subdirectories on the disk and totals. I can get the information I need with du and df and output it to a text file but I'm stumped as to how to... (3 Replies)
Discussion started by: DesperateDBA
3 Replies
Login or Register to Ask a Question