PDA

View Full Version : [ubuntu] Ubuntu 10.4 on a netbook . . .



ThePossum
July 21st, 2010, 01:09 PM
Have a problem with my current installation of 10.4 on my netbook. Seems the netbook has suddenly run out of HD space. In terminal it is only showing like 7GB of HD space total but the netbook actually has a 40GB drive.

So I want to reinstall 10.4 on it again hoping that it will fix my problem. My question is can I safely install the decktop version or should I install the Netbook Edition. I do like the on screen desktop of the Decktop version much better than the one on the Netbook edition.

Which should I use to possibly avoid the full disk problem?

tommcd
July 21st, 2010, 07:56 PM
Which should I use to possibly avoid the full disk problem?
Neither one will avoid this, because we don't even know why you have run out of disk space.
To try to find out where all of your space went, try running in the terminal:

sudo du -csh /*
This will take a bit of time to run. You can run that command without sudo, but you will get "permission denied" messages on files belonging to root. If you see that a certain directory, like /var for example, seems to be unusually large, you can run:

sudo du -csh /var/*
This will help you drill down to find exactly what directory is eating up space.
To see a summary of your partitions and how much space has been used, and how much is available, run:

df -h
Have you been running the system as root??? Have you enabled the root account???

Otherwise, you can install the desktop or the netbook version. It is always your choice.

ThePossum
July 22nd, 2010, 11:28 AM
Will give that a try. Thanks