Setup a Local DNS on Debian using bind9 in a chroot

On the Debian system download the bind9 package with: sudo apt-get install bind9 dnsutils Next, follow what’s in this script (or type them in one at a time): chroot-bind.sh #!/bin/bash #—————— Variables——————- # ME=`/usr/bin/whoami` DIRECTORY=/etc/bind #————————————————# # Some Error Checking # if [ $UID -ne 0 ]; then echo “Sorry but you must be root … Read more

Acer revo 3610 with ArchLinux and xbmc

First step is to ensure your pacman configuration is good.  So view your /etc/pacman.conf.  Then do the following: pacman -Syy # (Forces a reload of the package repositories) pacman -Syu # (Update the installed packages) groupadd xbmc useradd -m -d /home/xbmc -g xbmc -G audio,video xbmc passwd xbmc New Password: xxxxx pacman -S xbmc # … Read more