File System Utilization

Hi All

This is a simple question, but I am confused

As netbackup user: the netbackup directory size is :

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]

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

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:

cd /opt/VRTSnbu
du -h ./* | sort -k 2 > /tmp/xn

then as root:

cd /opt/VRTSnbu
du -h ./* | sort -k 2 > /tmp/xr

then use man comm (linux) or man diff (linux) to determine what is different.