LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Solaris / OpenSolaris (https://www.linuxquestions.org/questions/solaris-opensolaris-20/)
-   -   Hello mates, I am having trouble with my solaris 11 OS root file system. The problem is when I reboot the system, the root file system fills (https://www.linuxquestions.org/questions/solaris-opensolaris-20/hello-mates-i-am-having-trouble-with-my-solaris-11-os-root-file-system-the-problem-is-when-i-reboot-the-system-the-root-file-system-fills-4175730975/)

ajoya 11-18-2023 12:09 AM

Hello mates, I am having trouble with my solaris 11 OS root file system. The problem is when I reboot the system, the root file system fills
 
My actual space is 147 GB and the root file system shows 83% after reboot, as soon as the system is rebooted, the space gets filled to 100%. I have checked the /var, /temp and all other directories are 1 to 2%, the / directory starts to fill up in a couple of minutes ironically.
Could anybody please kindly help me in this regard?

fatmac 11-18-2023 04:49 AM

So, first thing is find out what it is that is filling it, second is to find what is creating it....

(I don't use Solaris, so can't help with specifics.)

smallpond 11-18-2023 04:52 AM

What does lsof show?

MadeInGermany 11-18-2023 05:20 AM

Solaris ships without lsof.

fuser
pfiles
netstat -u

have only a part of its functionality.
Maybe a Solaris binary can be downloaded from a free repository.
And the lsof source code should compile well.

A quick overview of the biggest files:
Code:

du -akx / | sort -n
The recently modified big files:
Code:

find / -xdev -mtime -1 -size +8 -exec ls -sd {} + | sort -n


All times are GMT -5. The time now is 05:45 AM.