Steffen Hi, the name's Steffen and I'm writing about the Web, programming and all those things coming to my mind. Enjoy your stay.

I'm currently working on fabidoo.com - 3D Printing for everyone!

Archive for the ‘Linux’ Category

Random lockups/freezes on nForce4 solved

Saturday, April 28th, 2007

I’ve had trouble with random lockups/freezes on my nForce4 based Asus A8N-SLI Premium mainboard since the beginning. I first thought it was related to my Asus 6600 graphics card - using the open-source nv driver instead of the proprietary Nvidia driver on Linux made things better, but didn’t solve it completely. The system simply stopped responding once in a while and a hard reset was necessary.

A month ago I changed the HyperTransport frequency from 1 GHz to 800 MHz in the BIOS and everything works smoothly since. So if you experience similar problems - give it a try.

Tags: , , , ,

Is your web server secure?

Tuesday, August 15th, 2006

Well, no one can tell for sure. But if you don’t want to have the most obvious security holes in your configuration, Nikto may be one of your friends. Once you have it installed (check out your Linux distro repository for details), it can be easily started via

nikto -h <your.host>

or sometimes

perl nikto.pl -h <your.host>

There’s one issue with Apache that, from my knowledge, can only be solved partly. TRACE should not be allowed as an HTTP request method. Unfortunately it can’t be turned off. It is however possible to almost disable it. Put the following configuration lines inside your “virtual host” section:

RewriteEngine On
RewriteCond %{REQUEST_METHOD} ^TRACE
RewriteRule .* - [F]

Tags: , , ,

Support for Opacity in Modern Browser

Tuesday, April 25th, 2006

I did some research about the support for opacity in modern Browser. Opacity means, that parts of your web page (DIVs, images and other elements) may be semi transparent so you can, potentially partly, see the background behind them.

(more…)

You are currently browsing the archives for the Linux category.

18378