Size of Mount Point


 
Thread Tools Search this Thread
Operating Systems Solaris Size of Mount Point
# 8  
Old 04-29-2010
Quote:
Originally Posted by Reboot
I don't think that "du -h" shows you the size or any information about hidden file or directory.So, may be there is some large hidden file or directory containing large files.
Sorry, I was wrong as I analysed the result of :

du -h * ----->>> When executed in a directory having hidden files will not tell the size of those hidden files...


Thanks jlliagre for making me correct...SmilieSmilie
# 9  
Old 04-29-2010
Your test was only showing "*" doesn't expand to hidden files but this is a shell feature unrelated to "du".

Proper ways are to run:
Code:
du -h /u02

or
Code:
cd /u02
du -h .

# 10  
Old 04-29-2010
Code:
df -k | grep /u02

/dev/dsk/emcpower0a  516326993 387990416 123173308    76%    /u02

# 11  
Old 04-29-2010
If you can reboot you System then this problem can be resolved.But this should be last option.
# 12  
Old 04-29-2010
So there is no overlay mount. Have a look at pfiles output as I already suggested.
# 13  
Old 04-29-2010
I have checked and there are just couple of processes and each one has opened 1 or 2 files. Any other suggestions please?

regards
# 14  
Old 04-29-2010
One or two files can make 259 GB. Alternatively, you might have a corrupted filesystem.

Please post these commands output:
Code:
df -h /u02
du -hs /u02
mount -p | grep /u02
mount -v | grep /u02
ls -sl /proc/*/fd/* | sort -n | tail -20

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to create a new mount point with 600GB and add 350 GBexisting mount point? IN AIX

How to create a new mount point with 600GB and add 350 GBexisting mount point Best if there step that i can follow or execute before i mount or add diskspace IN AIX Thanks (2 Replies)
Discussion started by: Thilagarajan
2 Replies

2. AIX

How to change the mount point of LV?

I have situation where my disk upon reboot, has its mount point as # LOGICAL VOLUME: disk4vol VOLUME GROUP: disk4vg LV IDENTIFIER: 00f609aa00004c0000000152414b786c.1 PERMISSION: read/write VG STATE: active/complete LV STATE: closed/syncd TYPE: jfs2 WRITE VERIFY: off MAX LPs: 512 PP SIZE: 512... (1 Reply)
Discussion started by: mrmurdock
1 Replies

3. UNIX for Beginners Questions & Answers

Can we have 2 mount point under the same name but at different directory?

guys i would like to know can we have 2 mount point which is same name but on different directory? (3 Replies)
Discussion started by: leecopper
3 Replies

4. Red Hat

NFS mount point

Hi, Can you tell me something about NFS mount point ? Regards, Maddy (3 Replies)
Discussion started by: Maddy123
3 Replies

5. Red Hat

Increase mount point size after linux installation !

Dear Friends , I have to install Redhat Ent Linux 5.0 (RHEL 5) in my machine . My HDD space is total 40 GB . During installation , I give three partitions , '/' = 30GB, 'swap'=2GB, 'home' =1GB. Now my HDD remaining space is 7 GB . After installation , I need to increase the home... (4 Replies)
Discussion started by: shipon_97
4 Replies

6. Solaris

Mount Point Sorting?

Dear Gurus, Could it be possible to have the output of df -k sorted? The df -k output messed up after recent power trip. Also, is there any folders that I should look into to reduce the root size (other than /var/adm and /var/crash) after server crash? Many thanks in advance. ... (2 Replies)
Discussion started by: honmin
2 Replies

7. UNIX for Advanced & Expert Users

Mount point options

Hello all, I'm sharing 1 volume from a Sun Storage array (6130), out to 2 servers. Created a slice on one server and mounted a filesystem. On the other server the disk already sees the created slice from the other server (shared throught the storage array, so mounted this filesystem as well. ... (1 Reply)
Discussion started by: Sunguy222
1 Replies

8. UNIX for Dummies Questions & Answers

concept of mount point

Hi All I Know it is a really basic and stupid question perhaps...But I am going bonkers.. I have following valid paths in my unix system: 1. /opt/cdedev/informatica/InfSrv/app/bin 2. /vikas/cdedev/app Both refer to the same physical location. So if I created one file 'test' in first... (3 Replies)
Discussion started by: Vikas Sood
3 Replies

9. UNIX for Dummies Questions & Answers

mount point

hi people, I'm trying to create a mount point, but am having no sucess at all, with the following: mount -F ufs /dev/dsk/diskname /newdirectory but i keep getting - mount-point /newdirectory doesn't exist. What am i doing wrong/missing? Thanks Rc (1 Reply)
Discussion started by: colesy
1 Replies

10. UNIX for Dummies Questions & Answers

Recover mount point

A disk was sliced into 6 slices with m01 being the mount point for one of the slices. This mount point was deleted with rmdir (ie. rmdir m01). What is the easiest way to recover this mount point? (1 Reply)
Discussion started by: here2learn
1 Replies
Login or Register to Ask a Question