x2go domU

# set domU parameter
[ -z $DOMAIN_NAME ] && DOMAIN_NAME=x2go
[ -z $DOMAIN_MAC ] && DOMAIN_MAC=00:00:00:a0:b0:c0
[ -z $DOMAIN_RAM ] && DOMAIN_RAM=1Gb
[ -z $DOMAIN_HDD ] && DOMAIN_HDD=8Gb

# create domU
http://www.panticz.de/Xen-domU-ubuntu-jaunty
or
http://www.panticz.de/Ubuntu-Karmic-domU-under-Debian-Lenny-Dom0

# add to autostart (optional)
ln -s /etc/xen/${DOMAIN_NAME} /etc/xen/auto

# start domU
xm create -c ${DOMAIN_NAME}

# old # apt-get install gnome-desktop-environment
apt-get install debconf-utils

apt-get -y install ubuntu-desktop

# new
gpg --keyserver

Hylafax to Email

# configure dispatch
cat < /etc/hylafax/FaxDispatch
SENDTO=YOU@YOUR_DOMAIN
FILETYPE=pdf
TEMPLATE=de
EOF

# configure postfix
postconf -e 'smtp_sasl_security_options = noanonymous'
postconf -e 'smtp_sasl_password_maps = hash:/etc/postfix/sasl_password'
postconf -e 'smtp_sasl_auth_enable = yes'
postconf -e 'relayhost = smtp'
echo "smtp faxmaster:faxmaster" > /etc/postfix/sasl_password
postmap /etc/postfix/sasl_password
/etc/init.d/postfix restart

# get sender name from url (optional)
cat < /etc/hylafax/FaxDispatch
SENDTO=YOU@YOUR.DOMAIN
FILETYPE=pdf
TEMPLATE=de

Reboot all Phones

#!/bin/bash

cp /etc/asterisk/sip_notify.conf /etc/asterisk/sip_notify.conf.back.$(date -I)

cat <> /etc/asterisk/sip_notify.conf
[reboot-snom]
Event=>reboot
Content-Length=>0
EOF

cat < /etc/asterisk/extensions.reboot.conf
exten => 666,1,System(/usr/sbin/asterisk -rx "sip notify reboot-snom pako sip2 sip3")
exten => 666,n,Hangup()
EOF

add "#include extensions.reboot.conf" to /etc/asterisk/extensions.conf

# Links
http://www.voip-info.org/wiki/view/Asterisk+phone+snom
http://das-asterisk-buch.de/2.1/telefone-snom.html

Ubuntu DVD-RAM

apt-get install dvd+rw-tools udftools

cat <> /etc/fstab
/dev/pktcdvd/0 /media/dvdram udf defaults,noauto,user 0 0
EOF

cat < /etc/default/udftools
DEVICES="/dev/sr0"
UDEV=true
NEWINT=true
EOF

/etc/init.d/udftools restart

/etc/init.d/udftools stop
#mkudffs --udfrev=0x0150 --media-type=dvdram /dev/sr0
sudo mkudffs --udfrev=0x0150 --media-type=dvdram --vid=mr_300dpi_1 --lvid=vid=mr_back_300_1 /dev/sr0
/etc/init.d/udftools start
eject

mount /dev/sr0 /mnt/

chmod 777 /mnt/

# format dvd-ram (optional)
dvd+rw-format -force=full -ssa=default /

Kino

# grab dv tape
apt-get install -y dvgrab
dvgrab -opendml -size 0 -autosplit -t

# install kino
sudo apt-get install kino ffmpeg

# fix export scripts
wget http://surfnet.dl.sourceforge.net/project/kino/kino/1.3.4/kino-1.3.4.tar.gz -P /tmp
tar xzf /home/pako/Desktop/kino-1.3.4.tar.gz -C /tmp
sudo mv /usr/share/kino/scripts/exports/ /usr/share/kino/scripts/exports.old
sudo mv /tmp/kino-1.3.4/scripts/exports/ /usr/share/kino/scripts/

# links
https://launchpad.net/ubuntu/+source/kino/+bugs