1838665 Members
5704 Online
110128 Solutions
New Discussion

DISK SPACE

 
JOSE CALVILLO FELIX
New Member

DISK SPACE

How will free space on file system /usr?
Iam have a problem because I can?t modify then file system.
JOSE
2 REPLIES 2
Sachin Patel
Honored Contributor

Re: DISK SPACE

Hi Jose,
You mean you want some more space on /usr?
remove unwanted files. find core files and remove it.
#find /usr -name core -print.

#du -sk /usr/* shows you who is holding more space.

Sachin
Is photography a hobby or another way to spend $
someone_4
Honored Contributor

Re: DISK SPACE

cd in usr and run
find * -type f -size +1000000c | xargs ll | sort -n +4.0

this will find the biggest files in any dir that you run. the command in

Richard