# Linux squezze 2.6.32-5-xen-amd64 # install needed packages apt-get install -y wget apt-get install -y build-essential apt-get install -y linux-headers-$(uname -r) # get fcpci sources wget --no-check-certificate http://belug.de/~lutz/pub/fcpci/fritz-fcpci-2.6.31.tar.bz2 -O /tmp/fritz-fcpci-2.6.31.tar.bz2 # extract tar xjf /tmp/fritz-fcpci-2.6.*.tar.bz2 -C /tmp/ # override fcpci-lib.o for 64 bit systems if [ $(uname -m) == "x86_64" ]; then cd /tmp/fritz-fcpci-*/lib/ ln -sf /tmp/fritz-fcpci-*/lib/64_fcpci-lib.o /tmp/fritz-fcpci-*/lib/fcpci-lib.o fi # compile cd
Installation (tested on Linux squezze 2.6.32-5-xen-amd64)
apt-get install -y wget capiutils
wget http://dl.dropbox.com/u/4170695/www/fcpci.tar.gz -O /tmp/fcpci.tar.gz
tar xzf /tmp/fcpci.tar.gz -C /tmp/
/tmp/fcpci/install.sh
#!/bin/bash # If you use Ubuntu Gutsy you don´t need to compile the fcusb2 driver at self, follow this howto # it will automaticly download and configure all needed files # be sure that you running this script as root if [ "$USER" != "root" ]; then sudo $0 exit 0 fi # install needed packages apt-get install -y avm-fritz-firmware linux-restricted-modules-$(uname -r) wget # install avm firmware #wget http://www.avm.de/files/cardware/fritzcrdusb.v20/linux/suse.93/fcusb2-suse93-3.11-07.tar.gz -P /tmp #tar -xzf /tmp/fcusb2-suse93-3.11-07.tar.gz -C /tmp #mkdir /usr/share/isdn/
#!/bin/bash # note # successfully tested on Ubuntu Gutsy 7.10, this driver currently dont work with Hardy 8.04 apt-get install -y wget rpm build-essential linux-headers-$(uname -r) avm-fritz-firmware wget http://opensuse.foehr-it.de/rpms/10_3/src/fcusb2-0.1-0.src.rpm -P /tmp cd /tmp rpm2cpio fcusb2-0.1-0.src.rpm | cpio -i --make-directories if [ $(uname -m) == "x86_64" ]; then # amd64 tar -xzf fcusb2-suse93-64bit-3.11-07.tar.gz cd /tmp/fritz/src/ patch -p2 < /tmp/fritz-usb.diff patch -p2 < /tmp/fritz_init_work.diff patch -p2 < /tmp/fritz_urb.diff patch -p2 < /tmp/f
# install apps
apt-get install -y linux-restricted-modules linux-ubuntu-modules-$(uname -r) avm-fritz-firmware
modprobe capidrv
modprobe capi
# avm firmware
wget http://mirrors.kernel.org/ubuntu/pool/restricted/l/linux-meta/avm-fritz-firmware_2.6.24.24.26_amd64.deb -P /tmp
Ubuntu Gutsy fcusb2 kernel modules
fcusb2.tar.bz2