1825667 Members
4294 Online
109686 Solutions
New Discussion

Re: file system

 
SOLVED
Go to solution
Indrajit Bhagat
Regular Advisor

file system

There is one ticket on file system breached.
But in that particular folder. i am not able to login. the error comes like, there is not enough space on the login in the particular direcotory. so how can i anlyze it.
6 REPLIES 6
Steven E. Protter
Exalted Contributor
Solution

Re: file system

Shalom,

log in at console.

Worst case, boot the system at console to single user mode.

du -k | sort -rn | more
# in single user mode mount /usr first

This will let you know where to trim.

The most likely cause of this is a full / filesystem or /var

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
AwadheshPandey
Honored Contributor

Re: file system

have u checked space on that filesystem?
paste the bdf output and full path of partical dir.
It's kind of fun to do the impossible
James R. Ferguson
Acclaimed Contributor

Re: file system

Hi:

In Unix, the correct term is "directory"! A "folder" is a Windows' term for "directory". When in Rome, do as the Romans do!!!

Regards!

...JRF...
Trng
Super Advisor

Re: file system

Indrajit,

what kind of fileystem ? is it OS or Database ?

rgds
suresh
administrator
tsf_1
Frequent Advisor

Re: file system

Check using 'bdf', which filesystem that is near to 100% at the %used colume.

For example if /abc is almost full, do these:
(1) search for huge file that can be deleted
# find /abc -xdev -size +10000000c (To list around 10MB file)
(2) extend the filesytem if needed
-check 'vgdisplay vgxx',for available PE
-then using 'lvextend' to extend the filesystem

"man vgdisplay" to see more info.
"man lvextend" to see more info.
be willing to do, be happy to bear
tsf_1
Frequent Advisor

Re: file system

Check using 'bdf', which filesystem that is near to 100% at the %used colume.

For example if /abc is almost full, do either of these:
(1) search for huge file that can be deleted
# find /abc -xdev -size +10000000c (To list around 10MB file)
(2) extend the filesytem if needed
-check 'vgdisplay vgxx',for available PE
-then using 'lvextend' to extend the filesystem

"man vgdisplay" to see more info.
"man lvextend" to see more info.
be willing to do, be happy to bear