File System Utilization


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users File System Utilization
# 1  
Old 01-01-2011
File System Utilization

Hi All

This is a simple question, but I am confused

As netbackup user: the netbackup directory size is :
Code:
idcxpr0012: cd /opt/VRTSnbu
idcxpr0012: du -sh ./*
0K   ./bi
302M   ./db
0K   ./kms
758K   ./local
18M   ./lost+found
110G   ./netbackup
0K   ./replication_status
593K   ./var
5.4M   ./volmg
92M   ./vxul
92M   ./vxul.tar.gz

While checking a a root user the netbackup directory size is much bigger[/SIZE]
Code:
idcxpr0012# du -sh ./*
0K ./bin
308M ./db
0K ./kms
758K ./local
18M ./lost+found
761G ./netbackup
0K ./replication_status
593K ./var
5.4M ./volmgr
92M ./vxul
92M ./vxul.tar.gz


May i know the technical reason behing this.This urgent..I would be very much thankful to all of you..


Moderator's Comments:
Mod Comment please use "code" tags instead of color and/or font tags!

Last edited by DukeNuke2; 01-01-2011 at 05:41 PM..
# 2  
Old 01-01-2011
I will bet good money, 5cents :-), that it is permissions.

To found out what is different, run the same command again as the netbackup user and as root, but without the "-s" options, then compare the sorted results. So as netbackup:
Code:
cd /opt/VRTSnbu
du -h ./* | sort -k 2 > /tmp/xn

then as root:
Code:
cd /opt/VRTSnbu
du -h ./* | sort -k 2 > /tmp/xr

then use comm or diff to determine what is different.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

CPU Utilization and Memory Utilization of Services and Applications

Hi, i am new to linux/RHEL 6.0 and i have two questions. 1) How to get the CPU utilization and Memory Utilization of all Services running currently? 2) How to get the CPU utilization and Memory Utilization of all Applications running currently? Please help me to find the script. ... (2 Replies)
Discussion started by: nossam
2 Replies

2. Solaris

I/O Utilization of Specific File System

Hello there, Below is the output of df -kh: Filesystem size used avail capacity Mounted on /dev/md/dsk/d0 12G 8.8G 2.7G 77% / /devices 0K 0K 0K 0% /devices ctfs 0K 0K 0K 0% ... (2 Replies)
Discussion started by: infinitydon
2 Replies

3. Shell Programming and Scripting

[Solved] Getting the CPU utilization in a file periodically

Hi, I am trying to create a script that will run for every 5 mins to grep the CPU utilization. I have 6 instances running on a single unix server for which I have to export the individual utilizations periodically. Can we fetch the utilization of 6 instances in separate files using top... (8 Replies)
Discussion started by: jhilmil
8 Replies

4. Shell Programming and Scripting

UNIX file system to Linux file system migration

We would be migrating UNIX file system to Linux file system. We do have many directory and sub directories with files. after migrating unix to linux file system , i want to make sure all the files has been copied ? What would be the best approach to validate directory ,sub-directory and file... (1 Reply)
Discussion started by: balajikalai
1 Replies

5. HP-UX

how to mount a file system from a solaris server into an hp-ux system

Hi all I wonder if its possible to mount on a hp-ux server a file system that was previously mounted on a solaris 10 server. The LUN is on NetApp stoarge. The problem on hp-ux I cannot do pvcreate on the lun (disk) because contains data. Any help will be appreciated FR (2 Replies)
Discussion started by: fretagi
2 Replies

6. Solaris

"file system is full up to 90% how can i set the file system to 60%"

hi every one "plz any one can give solution to my problem" my problem is my filesystem is full in os level i have to decrease it to 60% how can i? plz help me Thank you for your response (6 Replies)
Discussion started by: sivajerripothul
6 Replies

7. SCO

file system not getting mounted in read write mode after system power failure

After System power get failed File system is not getting mounted in read- write mode (1 Reply)
Discussion started by: gtkpmbpl
1 Replies

8. 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

9. UNIX for Dummies Questions & Answers

how to mount a file system of a remote machine to local file system

Hi friends, In my case, there are serveral PCs running Linux in a LAN. I would like to to mount the directory /A_river of machine-A to the file system of another machine machine-B so that I can access files in that directory. I do not know how to do this. The situation is complicated by... (2 Replies)
Discussion started by: cy163
2 Replies

10. UNIX for Dummies Questions & Answers

CPU FILE SYSTEM UTILIZATION & %

Hi Everyone - I using unix (AIX Version 5.2). What command should I use to see the CPU utilization & how many bytes, %every file in the system is using to see if it needs to be reorganized/resized. Thanks a lot for your help! Ann. :eek: (1 Reply)
Discussion started by: Ann22
1 Replies
Login or Register to Ask a Question