memtest86+ PXE boot

apt-get install -y pxelinux

# check for current version
# http://www.memtest.org/#downiso

URL=http://www.memtest.org/download/5.01/memtest86+-5.01.bin

wget -q ${URL} -P /tmp/

mkdir /var/lib/tftpboot/memtest
mv /tmp/memtest86+-*.bin /var/lib/tftpboot/memtest
cd /var/lib/tftpboot/memtest
ln -s memtest86+-*.bin memtest86+

echo "confiure tftpboot..."
mkdir -p /var/lib/tftpboot/pxelinux.cfg
cat < /var/lib/tftpboot/pxelinux.cfg/memtest86+.conf
LABEL linux
MENU LABEL memtest86+
KERNEL /memtest/memtest86+
EOF

echo "MENU INCLUDE pxelinux.cfg/memtest86+.conf" >

CUPS

# view all available printer
lpstat -p -d

# enable webadmin
vi /etc/cups/cupsd.conf
#Listen localhost:631
Listen 0.0.0.0:631

Allow From 192.168.1.0/24

Allow From 192.168.1.0/24

# print file from command line
lpr -P DeskJet_695C YOUR_FILE.pdf

# parallel
# install DeskJet_695C
sudo lpadmin -p HP695C -v parallel:/dev/lp0 -E -P /tmp/DeskJet_695C.ppd

# usb
hp:/usb/hp_business_inkjet_2300?serial=CN39E130GB

# PDF printer
sudo apt-get install cups-pdf
lpadmin -p PDF -v cups-pdf:/ -E -P /usr/share/ppd/cups-pdf

Ekiga 3.0 snapshot

#!/bin/bash

sudo su

# add intrepid repository
cat < /etc/apt/sources.list.d/jaunty.list
deb http://archive.ubuntu.com/ubuntu/ jaunty main restricted
deb-src http://archive.ubuntu.com/ubuntu/ jaunty main restricted
EOF

# run update
apt-get update
apt-get install ekiga

# remove repository
rm /etc/apt/sources.list.d/jaunty.list
apt-get update

# LINKS
http://snapshots.ekiga.net/
http://packages.ubuntu.com/jaunty/ekiga

### OLD ###

wget http://ge.archive.ubuntu.com/ubuntu/pool/main/e/evolution-data-server/libedataserver1.2-9_2.22.3-0ubuntu2_i386.deb -P /tm

connectToVPN.sh

#!/bin/bash

# get current dir
DIR=${0%/*}

# read host list from file
HOSTS=$(cd $DIR; ls)

# get host ip
VPN=$(zenity --list --height 400 --column "Name" ${HOSTS})

# check if chosen dir exists
if [ !

Install osCommerce

wget http://www.oscommerce.com/ext/oscommerce-2.2rc2a.zip

unzip oscommerce-2.2rc2a.zip

cd oscommerce-2.2rc2a

chmod 777 catalog/includes/configure.php
chmod 777 catalog/admin/includes/configure.php

apt-get install php5-curl

# create db
mysql -u root -p
create database oscommerce;
CREATE USER oscommerce IDENTIFIED BY 'PASS';
grant all on oscommerce.* to 'oscommerce'@'%' identified by "PASS";
commit;
quit;

http://YOUR_SERVER/oscommerce-2.2rc2a/catalog/install/install.php

rm -r catalog/install/

chmod a-wx catalog/includes/configure.php

http://YOUR_SERVER/oscommer

Etope-O-Mat.sh

#!/bin/bash

# get image name
if [ -z $1 ]; then
# read from dialog
INPUT=$(zenity --title "Etope-O-Mat" --entry --text "Bildname:")
else
# copy input from command line
INPUT=$@
fi

for IMAGE in $INPUT; do
# convert image name to lower case
IMAGE=$(echo ${IMAGE} | tr "[:upper:]" "[:lower:]")

# add .jpg file extension if not already exists
IMAGE="${IMAGE/.jpg}.jpg"

# set input and output
PATH_IN=/media/bilder/300dpi
PATH_OUT=/home/$USER/200px
FILE_IN="${PATH_IN}/${IMAGE}"
FILE_OUT="${PATH_OUT}/${IMAGE}"

# check dirs
[ !

Create XEN Torrent Domain

DOMAIN_NAME=torrent

xen-create-image --hostname=$DOMAIN_NAME --ip=192.168.1.123 --gateway=192.168.1.5 --netmask=255.255.255.0 \
--dir=/home/xen --dist=hardy --mirror=http://archive.ubuntu.com/ubuntu/ \
--size=4Gb --memory=128Mb --swap=128Mb

sed -i 's|file:|tap:aio:|g' /etc/xen/$DOMAIN_NAME.cfg
mv /etc/xen/$DOMAIN_NAME.cfg /etc/xen/$DOMAIN_NAME

apt-get install -y wget rtorrent

cat <> ~/.rtorrent.rc
upload_rate = 16
port_range = 7000-7200
EOF

# todo
mount /home/xen/domains/$DOMAIN_NAME/disk.img /mnt -o loop
chroot /mnt

umount /mnt/

cat ~/.rtorrent.rc
up

Ubuntu USB boot (Ubuntu Live CD boot from USB)

#!/bin/bash

DEVICE=/dev/sdb
ISO=ubuntu-16.10-desktop-amd64.iso
VOLUME=BOOTUSB

# install needed apps
sudo apt-get install -y syslinux mbr mtools dosfstools

# OPTIONALY format drive
# sudo umount ${DEVICE}1
# sudo mkfs.vfat -n ${VOLUME} ${DEVICE}1

# install mbr and syslinux
mkdir /tmp/${VOLUME}
sudo mount ${DEVICE}1 /tmp/${VOLUME}
sudo install-mbr ${DEVICE}

sudo mkdir /tmp/${VOLUME}/boot
sudo syslinux -f ${DEVICE}1 -d boot
#sudo syslinux -f ${DEVICE}1
#sudo syslinux -smf ${DEVICE}1

sudo cp /usr/lib/syslinux/modules/bios/vesamenu.c32 /tmp/${VOLUME}/boot/

sudo mkdi