If this is your first visit, be sure to
check out the FAQ. You will have to register
before you can post. To start viewing messages,
select the forum that you want to visit from the selection below.
Please do not use the CODE tag when pasting content that contains formatting (colored, bold, underline, italic, etc).
The CODE tag displays all content as plain text, including the formatting tags, making it difficult to read.
kubunu keeps telling me i dont have enough space left to save anything even though i know for a fact i have atleast one gig left. I tried ubuntu and it did the same thing.
I assume that you use ext3 as filesystem. If not, the below might not apply..
It may be that you have about 1gb left on the drive, that you cannot use as a regular user.
This is because the root account has a certain amount of harddrive space reserved that is not accessible to other users. It is a security/stability measure to make sure the system is able to save to disk even if it is full, as not to harm the installation.
(Sorry for my bad explanation)
From the mke2fs man-page:
-m reserved-blocks-percentage
Specify the percentage of the filesystem blocks reserved for the
super-user. This avoids fragmentation, and allows root-owned
daemons, such as syslogd(8), to continue to function correctly
after non-privileged processes are prevented from writing to the
filesystem. The default percentage is 5%.
There is a utility "tune2fs" to change the amount of reserved space, you can read more about it by typing "man tune2fs" in a terminal.
Be careful though when using tune2fs. If you do something wrong you may lose your files!! But you probably know this =)
Comment