LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 08-21-2008, 11:07 AM   #1
drjoewebb
LQ Newbie
 
Registered: Aug 2008
Location: Rhode Island
Distribution: Kubuntu, Ubuntu-eee, PCLinuxOS
Posts: 11

Rep: Reputation: Disabled
Kubuntu slow system -- now get "low disk space" error


My system has been quite sluggish of late, with apps taking a while to load. Using Kubuntu 8.04.1

I got an error message that my home partition only had 4% space left. Certainly this explains the behavior!

But when I got my disk info I got this

Filesystem Size Used Avail Use% Mounted on
/dev/sda1 229G 149G 69G 69% /
varrun 503M 156K 503M 1% /var/run
varlock 503M 0 503M 0% /var/lock
udev 503M 44K 503M 1% /dev
devshm 503M 0 503M 0% /dev/shm
lrm 503M 44M 459M 9% /lib/modules/2.6.24-19-generic/volatile

Any ideas what this might be? Should I suspect that my hard drive might be dying?
 
Old 08-21-2008, 04:18 PM   #2
gruby12
LQ Newbie
 
Registered: Aug 2005
Location: Poland
Distribution: SUSE 10.1, Mandriva 2008.1
Posts: 26

Rep: Reputation: 15
Try to clenup /var directory, by deleting unused files.
You have less than 1% free space on it.
 
Old 08-21-2008, 09:52 PM   #3
drjoewebb
LQ Newbie
 
Registered: Aug 2008
Location: Rhode Island
Distribution: Kubuntu, Ubuntu-eee, PCLinuxOS
Posts: 11

Original Poster
Rep: Reputation: Disabled
This is what i get when I run df

Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sda1 239282940 166594232 60629520 74% /
varrun 514528 156 514372 1% /var/run
varlock 514528 0 514528 0% /var/lock
udev 514528 44 514484 1% /dev
devshm 514528 0 514528 0% /dev/shm
lrm 514528 45040 469488 9% /lib/modules/2.6.24-19-generic/volatile
/dev/sdb1 61724 5039 56685 9% /media/disk

I've never run cleanup /var before; suggestions appreciated
 
Old 08-21-2008, 10:16 PM   #4
AceofSpades19
Senior Member
 
Registered: Feb 2007
Location: Chilliwack,BC.Canada
Distribution: Slackware64 -current
Posts: 2,079

Rep: Reputation: 58
put the output from df in tags, it makes it alot easier to read
 
Old 08-22-2008, 12:42 AM   #5
gruby12
LQ Newbie
 
Registered: Aug 2005
Location: Poland
Distribution: SUSE 10.1, Mandriva 2008.1
Posts: 26

Rep: Reputation: 15
You have /var and /home on the same partiton (/) so
so big files in /var or /tmp , have impact on size of /home (which realy is not partition ,
on your system , but only directory). You should check this two (/var and /tmp)

Last edited by gruby12; 08-22-2008 at 12:48 AM.
 
Old 08-22-2008, 07:26 AM   #6
drjoewebb
LQ Newbie
 
Registered: Aug 2008
Location: Rhode Island
Distribution: Kubuntu, Ubuntu-eee, PCLinuxOS
Posts: 11

Original Poster
Rep: Reputation: Disabled
Sorry, but I have little understanding of what is being suggested. In poking around another forum, I did

sudo apt-get clean
sudo apt-get autoclean

I'm not certain what to do next.

My df currently reads as

Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sda1 239282940 168063852 59159900 74% /
varrun 514528 152 514376 1% /var/run
varlock 514528 0 514528 0% /var/lock
udev 514528 44 514484 1% /dev
devshm 514528 0 514528 0% /dev/shm
lrm 514528 45040 469488 9% /lib/modules/2.6.24-19-generic/volatile

re "put the output from df in tags, it makes it alot easier to read" do you mean to put it in quotes? if so, here it is

Quote:
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sda1 239282940 168063852 59159900 74% /
varrun 514528 152 514376 1% /var/run
varlock 514528 0 514528 0% /var/lock
udev 514528 44 514484 1% /dev
devshm 514528 0 514528 0% /dev/shm
lrm 514528 45040 469488 9% /lib/modules/2.6.24-19-generic/volatile

Last edited by drjoewebb; 08-22-2008 at 07:27 AM. Reason: fix incorrect item pasted
 
Old 08-22-2008, 08:07 AM   #7
drjoewebb
LQ Newbie
 
Registered: Aug 2008
Location: Rhode Island
Distribution: Kubuntu, Ubuntu-eee, PCLinuxOS
Posts: 11

Original Poster
Rep: Reputation: Disabled
This is the result of "cat /etc/fstab" which someone suggested running

# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# /dev/sda1
UUID=c7709eb9-5cfc-471c-8038-27fc718c596a / ext3 relatime,errors=remount-ro 0 1
# /dev/sda5
UUID=b7fab884-72f1-4daf-9688-e4a02aa8ddd4 none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0


I also ran a search for large files (more than 10mb) and now I suspect I may be my own worst enemy, especially since I'm such a newbie at this. I have all of my work in folders on my Desktop. From looking at the Desktop, it's stored in /home. I wonder if I should just make a new folder somewhere else in the file system and remove all of my work there.

I have run
sudo apt-get clean, autoclean, and autoremove, with no changes to my disk usage.

If I do move things out of the Desktop, where should I create a new directory?
 
Old 08-22-2008, 11:21 AM   #8
drjoewebb
LQ Newbie
 
Registered: Aug 2008
Location: Rhode Island
Distribution: Kubuntu, Ubuntu-eee, PCLinuxOS
Posts: 11

Original Poster
Rep: Reputation: Disabled
i consulted with my in-house i.t. expert (a teenager) and we suspect that with my dislike of the amd64 version of kubuntu that re-installing with the 32 version and partitioning at the same time (after i backup all of my work) may be the cleanest and most satisfying way to do this.

with the 233gb usable, how large should the kubuntu partition be? the rest of the hard drive, of course, would be for my work.

all advice appreciated....

jww
 
Old 08-23-2008, 06:28 PM   #9
drjoewebb
LQ Newbie
 
Registered: Aug 2008
Location: Rhode Island
Distribution: Kubuntu, Ubuntu-eee, PCLinuxOS
Posts: 11

Original Poster
Rep: Reputation: Disabled
as this soap opera has unfolded, i did find the source of my problem, and i did not reinstall. i am a heavy user of audacity, and i had about 20,000 *.au files on my system ranging from 0.8-1.2mb each. they have all been backed up and now deleted from my system.

now the system is fast again.

i will add a second drive to the system where i can keep all of my work.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Cedega "Disk space required for the installation exceeds available disk space" Solved Spewdemon LinuxQuestions.org Member Success Stories 1 10-18-2007 07:19 PM
"System timer resolution is set too low..."any help out there? Thanks ubuntuuser1 Linux - Software 8 03-03-2007 06:16 PM
Red Hat 6.2 disk space error - "Freeing blocks not in datazone" richfink Linux - Software 2 08-26-2006 05:08 PM
Error when trying to install FC4: "not enough disk space" Josh1billion Linux - Distributions 3 03-14-2006 04:00 PM
REd hat linux 8.0 installation fail with error message "insufient disk space" drweirdow Linux - Newbie 1 07-16-2003 08:51 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 11:53 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration