Home Linux Guides

Linux Guides

Various guides dealing with Linux and Linux applications.

Making Kubuntu 10.04 Not Suck

The new 10.04 release of Ubuntu/Kubuntu bring on a lot of improvements over previous versions. Unfortunately, they also bring a little bit of suck with them as well. This page will document the problems I've run into, along with what I've done to fix them. I will update as new issues are found.

We'll Start With Thunderbird issues and move on to KDE indexing. Shall we begin?

 

No space left on device: mod_rewrite: could not create rewrite_log_lock

Here's  a new one. Apache wouldn't restart on a server complaining thus:

"No space left on device: mod_rewrite: could not create rewrite_log_lock"

 

After some digging around with strace, I saw it was failing to create a semaphore. Evidently, Apache can leave semaphores around after its death, and can cause this mystery problem.

 

So how do you fix it?

 

Like this:

 

 for IPC in $(ipcs -s | grep apache | awk '{print$2}'); do ipcrm -s $IPC; done