1752604 Members
4766 Online
108788 Solutions
New Discussion юеВ

Re: file sytem is full

 
SOLVED
Go to solution
Nshenba
Occasional Advisor

Re: file sytem is full

the current size is /dev/vg00/lvol1 1048576 822505 214508 79% /usr
Sunny123_1
Esteemed Contributor

Re: file sytem is full

Hi

Firstly it was 95% now it is 79%

did you removed something????


Regards
Sunny
Nshenba
Occasional Advisor

Re: file sytem is full

Hi prasanthi

find /usr -size +10000000 -print , in this command 10000000 means what it is kb or mb, see for example i want to find the file having the size more than 2 Gb, what command i have to execute. please let me know.. points assured
Prashantj
Valued Contributor
Solution

Re: file sytem is full

Nshenba,
use
* find /usr -size +2000000000c -print for 2GB

Prashant
Good judgment comes from experience and experience comes from bad judgment.
Nshenba
Occasional Advisor

Re: file sytem is full

So could anyone tell me how to increase the /usr file system without online JFS.. please reply with the steps and commands to execute... Thanks in advance
Yashwant
Valued Contributor

Re: file sytem is full

Check reply in new thread
subodhbagade
Regular Advisor

Re: file sytem is full

Hi,

Please check all core file in /usr with command:---

(1)find /usr - name core*

(2)du * | sort -rn | head

(3) du -kx | sort -rn | more ( This will give you the max space utilization of sub dir and file in descending order)

(4) Otherwise extend the /usr logical volume

(a) Interrupt the boot sequence and go into single user mode
(b)you will find only root and /stand file system mounted
(c)Lvextend -L final size /dev/vg/lvol
(d)extendfs -F /dev/vg/rlvol
(e) mount /dev/vg/lv /mnt point
(f) check with bdf command

Regards,
Subodh.