Intranet: [ArchLinux] Setup a DNSCACHE for your network using DJBDNS

This is a version of this post http://blog.portnumber53.com/2012/01/15/intranet-setup-a-dnscache-for-your-network-using-djbdns/ for the ArchLinuxARM:   Essentials: # pacman -Syu fakeroot patch make gcc dnsutils   Daemontools installation $ wget https://aur.archlinux.org/packages/da/daemontools/daemontools.tar.gz $ tar -xvzf daemontools.tar.gz $ cd daemontools $ nano PKGBUILD ——————– arch=('arm') ——————– $ makepkg $ sudo pacman -U daemontools-0.76-5-arm.pkg.tar.xz   You shoould… Continue reading

Code:: css-form

I just started a Google Code hosted project since I'm always in need of pretty forms for my HTML things. Let me know if you want/can contribute to it. It's currently licensed under GPL 2.0 Here's the address: http://code.google.com/p/css-form     Why: I want to keep my css/javascript/html 5 knowledge current

(ve) Installing LAMP on Debian Squeeze – 64bit

aptitude update aptitude safe-upgrade aptitude install mysql-server mysql-client       NGINX aptitude install libpcre3-dev build-essential libssl-dev sudo cd /opt/ http://nginx.org/en/download.html wget http://nginx.org/download/nginx-1.0.8.tar.gz tar -xvzf nginx-1.0.8.tar.gz cd nginx-1.0.8 ./configure –prefix=/opt/nginx –user=nginx –group=nginx –with-http_ssl_module –conf-path=/etc/nginx/nginx.conf –error-log-path=/var/log/nginx/error.log –http-log-path=/var/log/nginx/access_log –with-http_ssl_module –with-http_geoip_module –pid-path=/var/run/nginx.pid nginx path prefix: “/opt/nginx” nginx binary file: “/opt/nginx/sbin/nginx” nginx configuration prefix:… Continue reading