[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [cobalt-users] getting low on memory message each morning at 4:00am



*****************************************
Vidar Ligard
RHEMA Bible Church - Computer Information Systems
918 258 1588 x2490
*****************************************


> -----Original Message-----
> From: cobalt-users-admin@xxxxxxxxxxxxxxx 
> [mailto:cobalt-users-admin@xxxxxxxxxxxxxxx] On Behalf Of wcstaff
> Sent: Wednesday, October 22, 2003 12:50 PM
> To: cobalt-users@xxxxxxxxxxxxxxx
> Subject: RE: [cobalt-users] getting low on memory message 
> each morning at 4:00am
> 
> 
> > What do you get with
> > ls -l /
> > ls -l /home
> > 
> > Is /opt already symlinked??
> > 
> > -Vidar
> > 
> 
> When I do  ls -l / I get  opt -> /home/opt
> 
> When I do ls -l /home I get opt
> 
> So it looks like opt is already moved or at least copied?
> .
Your /opt directory is already moved over to /home
You need to find something else to move over.
If you do
du -h -s /*
	-or-
du -h -s /usr/*
You will find how much space each directory is using.
Find something you want to move.
For example /usr/src on mine is 86Mbytes

So I would (as root)
mkdir /home/usr
mv /usr/src /home/usr; ln -s /home/usr/src /usr/src

Then do
ls -l /usr
And make sure /usr/src point to --> /home/usr/src

HTH,
Vidar