Installing an AVM Fritz!Card 2.0

At first ... put the Card in! :-) Next I installed the following packages and all required dependencies: # aptitude install capiutils isdnactivecards \ isdnlog isdnlog-data isdnutils-base libcapi20-2 Now I got the source of the module from AVM [ftp://ftp.avm.de/cardware/fritzcrd.pci/linux/suse.91/fcpci-suse9.1-3.11-02.tar.gz]…

Securing Proftpd

You can put these lines into /etc/proftpd.conf > DefaultRoot ~ IdentLookups off ServerIdent on "FTP Server ready."…

Getting started with Subversion

Today I thought about how to have different revisions of my project documentation which is a condition precedent to my degree. After weighting up CVS [https://www.cvshome.org/] and Subversion [http://subversion.tigris.org/] I decided to use Subversion. It wasn't such short like it looks here…

BIND chrooted on Debian Sarge

# /etc/init.d/bind9 stop We need to edit /etc/default/bind9 to run the daemon as the unprivileged user bind and chrooted to /var/lib/named, change the content to > OPTS="-u bind -t /var/lib/named". Creating all directories under /var/lib: # mkdir -p /var/…

Remove all packages of one source

> #!/usr/bin/perl # # Author: Florian Ragwitz # E-Mail: florian@gnoppix.org # die("Packagelist needed") if(!@ARGV); while(<>) { if(/^Package: (.*)$/) { print $1."n"; system("apt-get remove $1"); } } As argument is a file with package informations needed (can be found in /var/lib/apt/…

Linksys lspci

> 00:00.0 RAM memory: Broadcom Corporation: Unknown device 0803 00:01.0 Ethernet controller: Broadcom Corporation: Unknown device 4711 00:02.0 Ethernet controller: Broadcom Corporation: Unknown device 4713 00:03.0 Modem: Broadcom Corporation: Unknown device 4712 00:04.0 USB Controller: Broadcom Corporation: Unknown device 4715…