--- /dev/null
+#!/bin/sh
+
+DATE=$(date +%Y-%m-%d_%H-%M-%S)
+USRF="/var/tuxbox/config/tobackup.conf"
+
+if [ -e "${USRF}" ]; then
+# read user-files from $USRF
+       TOBACKUP="${USRF}"
+       while read i
+               do [ "${i:0:1}" = "#" ] || TOBACKUP="$TOBACKUP ${i%%#*}"
+               done < $USRF
+
+else
+       TOBACKUP="/var/tuxbox/config/"
+fi
+
+# check existence
+RES=""
+for i in $TOBACKUP
+       do [ -e "$i" ] && RES="$RES $i"
+       done
+
+TOBACKUP=$(echo $RES)
+
+echo Backup to $1/settings_$DATE.tar
+
+tar -cf $1/settings_$DATE.tar $TOBACKUP 2>&1 >/dev/null
 
--- /dev/null
+#!/bin/sh
+cd /media/
+ls | while read i ;
+do
+  if [ -d $i ];then
+    echo $i
+    umount -r /media/$i
+    continue
+  fi
+done
 
--- /dev/null
+#! /bin/sh
+# Copyright (C) 1996-2007, 2008 Free Software Foundation, Inc.
+# This file is part of the GNU C Library.
+
+# The GNU C Library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+
+# The GNU C Library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+
+# You should have received a copy of the GNU Lesser General Public
+# License along with the GNU C Library; if not, write to the Free
+# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+# 02111-1307 USA.
+
+
+# This is the `ldd' command, which lists what shared libraries are
+# used by given dynamically-linked executables.  It works by invoking the
+# run-time dynamic linker as a command and setting the environment
+# variable LD_TRACE_LOADED_OBJECTS to a non-empty value.
+
+# We should be able to find the translation right at the beginning.
+TEXTDOMAIN=libc
+TEXTDOMAINDIR=/usr/share/locale
+
+RTLDLIST=/lib/ld-linux.so.3
+warn=
+bind_now=
+verbose=
+
+while test $# -gt 0; do
+  case "$1" in
+  --vers | --versi | --versio | --version)
+    echo 'ldd (GNU libc) 2.8'
+    printf $"Copyright (C) %s Free Software Foundation, Inc.
+This is free software; see the source for copying conditions.  There is NO
+warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+" "2008"
+    printf $"Written by %s and %s.
+" "Roland McGrath" "Ulrich Drepper"
+    exit 0
+    ;;
+  --h | --he | --hel | --help)
+    echo $"Usage: ldd [OPTION]... FILE...
+      --help              print this help and exit
+      --version           print version information and exit
+  -d, --data-relocs       process data relocations
+  -r, --function-relocs   process data and function relocations
+  -u, --unused            print unused direct dependencies
+  -v, --verbose           print all information
+For bug reporting instructions, please see:
+<http://www.gnu.org/software/libc/bugs.html>."
+    exit 0
+    ;;
+  -d | --d | --da | --dat | --data | --data- | --data-r | --data-re | \
+  --data-rel | --data-relo | --data-reloc | --data-relocs)
+    warn=yes
+    shift
+    ;;
+  -r | --f | --fu | --fun | --func | --funct | --functi | --functio | \
+  --function | --function- | --function-r | --function-re | --function-rel | \
+  --function-relo | --function-reloc | --function-relocs)
+    warn=yes
+    bind_now=yes
+    shift
+    ;;
+  -v | --verb | --verbo | --verbos | --verbose)
+    verbose=yes
+    shift
+    ;;
+  -u | --u | --un | --unu | --unus | --unuse | --unused)
+    unused=yes
+    shift
+    ;;
+  --v | --ve | --ver)
+    echo >&2 $"ldd: option \`$1' is ambiguous"
+    exit 1
+    ;;
+  --)          # Stop option processing.
+    shift; break
+    ;;
+  -*)
+    echo >&2 'ldd:' $"unrecognized option" "\`$1'"
+    echo >&2 $"Try \`ldd --help' for more information."
+    exit 1
+    ;;
+  *)
+    break
+    ;;
+  esac
+done
+
+nonelf ()
+{
+  # Maybe extra code for non-ELF binaries.
+  return 1;
+}
+
+add_env="LD_TRACE_LOADED_OBJECTS=1 LD_WARN=$warn LD_BIND_NOW=$bind_now"
+add_env="$add_env LD_VERBOSE=$verbose"
+if test "$unused" = yes; then
+  add_env="$add_env LD_DEBUG=\"$LD_DEBUG${LD_DEBUG:+,}unused\""
+fi
+
+# The following use of cat is needed to make ldd work in SELinux
+# environments where the executed program might not have permissions
+# to write to the console/tty.  But only bash 3.x supports the pipefail
+# option, and we don't bother to handle the case for older bash versions.
+if x=`set -o` && test "$x" != "${x#*pipefail}" && set -o pipefail ; then
+  try_trace() {
+    eval $add_env '"$@"' | cat
+  }
+else
+  try_trace() {
+    eval $add_env '"$@"'
+  }
+fi
+
+case $# in
+0)
+  echo >&2 'ldd:' $"missing file arguments"
+  echo >&2 $"Try \`ldd --help' for more information."
+  exit 1
+  ;;
+1)
+  single_file=t
+  ;;
+*)
+  single_file=f
+  ;;
+esac
+
+result=0
+for file do
+  # We don't list the file name when there is only one.
+  test $single_file = t || echo "${file}:"
+  case $file in
+  */*) :
+       ;;
+  *) file=./$file
+     ;;
+  esac
+  if test ! -e "$file"; then
+    echo "ldd: ${file}:" $"No such file or directory" >&2
+    result=1
+  elif test ! -f "$file"; then
+    echo "ldd: ${file}:" $"not regular file" >&2
+    result=1
+  elif test -r "$file"; then
+    test -x "$file" || echo 'ldd:' $"\
+warning: you do not have execution permission for" "\`$file'" >&2
+    RTLD=
+    ret=1
+    for rtld in ${RTLDLIST}; do
+      if test -x $rtld; then
+       verify_out=`${rtld} --verify "$file"`
+        ret=$?
+       case $ret in
+       [02]) RTLD=${rtld}; break;;
+       esac
+      fi
+    done
+    case $ret in
+    0)
+      # If the program exits with exit code 5, it means the process has been
+      # invoked with __libc_enable_secure.  Fall back to running it through
+      # the dynamic linker.
+      try_trace "$file"
+      rc=$?
+      if [ $rc = 5 ]; then
+       try_trace "$RTLD" "$file"
+       rc=$?
+      fi
+      [ $rc = 0 ] || result=1
+      ;;
+    1)
+      # This can be a non-ELF binary or no binary at all.
+      nonelf "$file" || {
+       echo $" not a dynamic executable"
+       result=1
+      }
+      ;;
+    2)
+      try_trace "$RTLD" "$file" || result=1
+      ;;
+    *)
+      echo 'ldd:' ${RTLD} $"exited with unknown exit code" "($ret)" >&2
+      exit 1
+      ;;
+    esac
+  else
+    echo 'ldd:' $"error: you do not have read permission for" "\`$file'" >&2
+    result=1
+  fi
+done
+
+exit $result
+# Local Variables:
+#  mode:ksh
+# End:
 
--- /dev/null
+#!/bin/sh
+mount -t nfs -o rw,nolock,rsize=16384,soft,udp $1 $2
+
 
--- /dev/null
+#!/bin/sh
+
+USERAGENT="Simple No-IP Update Script"
+LOGFILE=/tmp/no-ip.log
+SAVEDIP=/tmp/no-ip.savedip
+TIMENOW=/tmp/no-ip.timenow
+TIMESTART=/tmp/no-ip.timestart
+TIMER=/tmp/no-ip.timer
+FAKEIP=1.2.3.4
+ACTUALIP=$(curl -s -k "https://www.wittinobi.de/meine-ip.php")
+. /etc/no-ip.conf
+
+echo "$(date +"%d")" > $TIMENOW
+
+if [ ! -e $SAVEDIP ]; then
+       touch $SAVEDIP
+fi
+
+if [ ! -e $TIMESTART ]; then
+       echo "$(date +"%d")" > $TIMESTART
+fi
+
+if [ ! -e $TIMER ]; then
+       echo "0" > $TIMER
+fi
+
+if [ "$(cat $TIMESTART)" != "$(cat $TIMENOW)" ]; then
+       echo "$(expr $(cat $TIMER) + 1)" > $TIMER
+       echo "$(date +"%d")" > $TIMESTART
+fi
+
+if [ "$(cat $TIMER)" == "$FORCEDUPDATE" ]; then
+       echo "[$(date +"%Y-%m-%d %H:%M:%S")] No IP change 25 days !!!" >> $LOGFILE
+       echo "[$(date +"%Y-%m-%d %H:%M:%S")] Send FAKEIP" >> $LOGFILE
+       IPSTATUS=$(curl -s -k "https://$USERNAME:$PASSWORD@dynupdate.no-ip.com/nic/update?hostname=$HOST&myip=$FAKEIP")
+       echo "[$(date +"%Y-%m-%d %H:%M:%S")] $IPSTATUS" >> $LOGFILE
+       echo "[$(date +"%Y-%m-%d %H:%M:%S")] Send NEWIP" >> $LOGFILE
+       IPSTATUS=$(curl -s -k "https://$USERNAME:$PASSWORD@dynupdate.no-ip.com/nic/update?hostname=$HOST&myip=$ACTUALIP")
+       echo "[$(date +"%Y-%m-%d %H:%M:%S")] $IPSTATUS" >> $LOGFILE
+       echo $ACTUALIP > $SAVEDIP
+       echo "0" > $TIMER
+       echo "$(date +"%d")" > $TIMESTART
+       echo "--------------------------------------------------------" >> $LOGFILE
+       echo "" >> $LOGFILE
+else
+       if [ "$ACTUALIP" != "$(cat $SAVEDIP)" ]; then
+               echo "[$(date +"%Y-%m-%d %H:%M:%S")] IP change !!!" >> $LOGFILE
+               echo "[$(date +"%Y-%m-%d %H:%M:%S")] Send NEWIP" >> $LOGFILE
+               IPSTATUS=$(curl -s -k "https://$USERNAME:$PASSWORD@dynupdate.no-ip.com/nic/update?hostname=$HOST&myip=$ACTUALIP")
+               echo "[$(date +"%Y-%m-%d %H:%M:%S")] $IPSTATUS" >> $LOGFILE
+               echo $ACTUALIP > $SAVEDIP
+               echo "--------------------------------------------------------" >> $LOGFILE
+               echo "" >> $LOGFILE
+       else
+               echo "[$(date +"%Y-%m-%d %H:%M:%S")] No IP change !!!" >> $LOGFILE
+               echo $ACTUALIP > $SAVEDIP
+               echo "--------------------------------------------------------" >> $LOGFILE
+               echo "" >> $LOGFILE
+       fi
+fi
+
+exit 0
 
--- /dev/null
+#!/bin/sh
+echo 1 > /proc/sys/kernel/sysrq
+echo b > /proc/sysrq-trigger
 
--- /dev/null
+#!/bin/sh
+echo Restore settings from $1
+
+tar t -f $1 | grep ^config/ > /dev/null
+if [ $? -eq 0 ]; then
+       cd /var/tuxbox
+else
+       cd /
+fi
+
+tar xf $1
+sync
+sync
+reboot -f
 
--- /dev/null
+#!/bin/sh
+# this is a workaround for a busybox bug
+true
 
--- /dev/null
+#The word of "Default" must not be removed
+Default
+CountryRegion=5
+CountryRegionABand=7
+CountryCode=
+ChannelGeography=1
+NetworkType=Infra
+WirelessMode=5
+Channel=0
+BeaconPeriod=100
+TxPower=100
+BGProtection=0
+TxPreamble=0
+RTSThreshold=2347
+FragThreshold=2346
+TxBurst=1
+PktAggregate=0
+WmmCapable=1
+AckPolicy=0;0;0;0
+DefaultKeyID=1
+Key1Type=0
+Key1Str=
+Key2Type=0
+Key2Str=
+Key3Type=0
+Key3Str=
+Key4Type=0
+Key4Str=
+PSMode=CAM
+AutoRoaming=0
+RoamThreshold=70
+APSDCapable=0
+APSDAC=0;0;0;0
+HT_RDG=1
+HT_EXTCHA=0
+HT_OpMode=0
+HT_MpduDensity=4
+HT_BW=1
+HT_BADecline=0
+HT_AutoBA=1
+HT_AMSDU=0
+HT_BAWinSize=64
+HT_GI=1
+HT_MCS=33
+HT_MIMOPSMode=3
+HT_DisallowTKIP=1
+HT_STBC=0
+EthConvertMode=
+EthCloneMac=
+IEEE80211H=0
+TGnWifiTest=0
+WirelessEvent=0
+MeshId=MESH
+MeshAutoLink=1
+MeshAuthMode=OPEN
+MeshEncrypType=NONE
+MeshWPAKEY=
+MeshDefaultkey=1
+MeshWEPKEY=
+CarrierDetect=0
+AntDiversity=0
+BeaconLostTime=4
+FtSupport=0
+Wapiifname=ra0
+WapiPsk=
+WapiPskType=
+WapiUserCertPath=
+WapiAsCertPath=
+PSP_XLINK_MODE=0
+WscManufacturer=
+WscModelName=
+WscDeviceName=
+WscModelNumber=
+WscSerialNumber=
+RadioOn=1
 
--- /dev/null
+*/5 * * * * /bin/no-ip.sh
 
--- /dev/null
+ext3
+ext2
+vfat
+xfs
+ntfs
+udf
 
--- /dev/null
+# /etc/fstab: static file system information.
+#
+# <file system> <mount pt>     <type>  <options>         <dump> <pass>
+proc           /proc          proc     defaults          0      0
+devpts         /dev/pts       devpts   defaults,gid=5,mode=620   0      0
+tmpfs           /tmp           tmpfs    defaults          0      0
+sysfs           /sys           sysfs    defaults          0      0
+/dev/sda1      /media/sda1     auto    defaults          0      0
+/dev/sdb1      /media/sdb1     auto    defaults          0      0
 
--- /dev/null
+coolstream
 
--- /dev/null
+127.0.0.1       localhost
+127.0.0.1       coolstream
 
--- /dev/null
+#!/bin/sh
+export PATH=/sbin:/bin:/usr/bin:/usr/sbin
 
--- /dev/null
+#!/bin/sh
+export PATH=/sbin:/bin:/usr/bin:/usr/sbin
 
--- /dev/null
+#!/bin/sh
+export PATH=/var/bin:/var/sbin:/var/plugins:/sbin:/bin:/usr/sbin:/usr/bin
+
+/sbin/mknodes 2> /dev/null
+
+/bin/mount /proc
+/bin/mount -a
+hostname -F /etc/hostname
+dmesg -n1
+
+/sbin/insmod cs_frontpanel
+if [ -e /etc/init.d/update.sh ]; then
+       /etc/init.d/update.sh
+fi
+/bin/dt -t"Init hardware"
+/sbin/insmod cnxt_kal
+/sbin/insmod cnxt_base init=0
+/sbin/insmod cnxt_fb cnxtfb_standalone=1 cnxtfb_width=1280 cnxtfb_height=720
+/sbin/insmod cnxt_lnx
+/sbin/insmod cnxt_alsa
+/sbin/insmod cs_control hdd_power=1
+/sbin/insmod cnxt_i2c
+/sbin/insmod cnxt_sata_drv
+
+/sbin/insmod usb-storage
+
+/sbin/insmod 8712u
+/sbin/insmod 8192cu
+/sbin/insmod r8192u_usb
+/sbin/insmod rt2870sta
+#/sbin/insmod rt3070sta
+
+/sbin/ifup -a
+
+/bin/dt -ls01
+/bin/dt -ls02
+/bin/dt -c
+/bin/dt -t"Loading drivers"
+
+/sbin/insmod md4
+/sbin/insmod cifs
+/sbin/insmod fuse
+/sbin/insmod usbserial
+/sbin/insmod ftdi_sio
+
+if [ -e /etc/init.d/rcB.local ]; then
+       /etc/init.d/rcB.local
+fi
+
+/sbin/insmod stv6110 verbose=0
+/sbin/insmod stv090x verbose=0
+/sbin/insmod tda10023
+/sbin/insmod avl2108
+/sbin/insmod max2112
+/sbin/insmod cs_frontend_prop
+/sbin/insmod dvb-core
+/sbin/insmod cs_frontend
+
+. /etc/profile
+
+if [ -e /var/etc/.telnetd ]; then
+       /sbin/telnetd -l /bin/login
+fi
+if [ -e /var/etc/.vsftpd ]; then
+       /sbin/vsftpd
+fi
+#mount -t cifs //NAS_IP/movies /mnt/movies -o user=root,passwd=coolstream // some example for smb NAS
+if [ -e /etc/init.d/rcB ]; then
+       /etc/init.d/rcB
+fi
+if [ -e /etc/init.d/rcS.local ]; then
+       /etc/init.d/rcS.local
+fi
+
+/etc/init.d/upnp.sh &
+/etc/init.d/start_neutrino &
 
--- /dev/null
+#!/bin/sh
+export PATH=/sbin:/bin:/usr/bin:/usr/sbin
+
+#crond starten
+if [ -e /var/etc/.crond ]; then
+       /bin/busybox crond &
+fi
+
+#tuxcal starten
+if [ -e /bin/tuxcald ]; then
+       /bin/tuxcald &
+fi
+
+#tuxmail starten
+if [ -e /bin/tuxmaild ]; then
+       /bin/tuxmaild &
+fi
+
+#no-ip starten
+if [ -e /var/etc/.no-ip ]; then
+       /bin/no-ip.sh &
+fi
+
+#inadyn starten
+if [ -e /var/etc/.inadyn ]; then
+       /bin/inadyn &
+fi
+
+#FritzCallMonitor starten
+if [ -e /var/bin/FritzCallMonitor ]; then
+       /var/bin/FritzCallMonitor &
+fi
+
+#lcd4linux starten
+if [ -e /var/etc/.lcd4linux ]; then
+       /var/lcd/lcdrun.sh &
+fi
 
--- /dev/null
+#!/bin/sh
+export PATH=/sbin:/bin:/usr/bin:/usr/sbin
+
+if [ -e /var/etc/.neutrino_debug ]; then
+       /bin/neutrino -u > /dev/console 2> /dev/console
+else
+       /bin/neutrino -u -v 3 > /dev/null 2> /dev/null
+fi
+
+/bin/sync
+/bin/sync
+#/bin/umount -a
+if [ -e /tmp/.reboot ] ; then
+    /bin/hdd_umount.sh
+    /bin/dt -t"Rebooting..."   
+    /sbin/reboot -f
+else
+    /bin/hdd_umount.sh
+    /bin/dt -t"Panic..."
+    sleep 5
+    /sbin/reboot -f
+fi
 
--- /dev/null
+#!/bin/sh
+export PATH=/sbin:/bin:/usr/bin:/usr/sbin
+
+if [ -e /var/update/uImage ] ; then
+       DEV=`grep -i kernel /proc/mtd | cut -f 0 -s -d :`
+       /bin/dt -ls01
+       /bin/dt -ls02
+       /bin/dt -t"Update KERNEL..."
+       /bin/eraseall /dev/$DEV && /bin/cat /var/update/uImage > /dev/$DEV
+       rm /var/update/uImage && rm /etc/init.d/update.sh && /sbin/reboot -f
+else
+       /bin/dt -t"Skipping Update KERNEL"
+       /bin/dt -c
+       rm /etc/init.d/update.sh
+fi
 
--- /dev/null
+#!/bin/sh
+
+mkdir /media/00upnp
+
+if [ -e /var/etc/.djmount ]; then
+/bin/djmount -o iocharset=utf8 /media/00upnp
+fi
+
+if [ -e /var/etc/.ushare ]; then
+sleep 10
+/bin/ushare -D
+fi
+
+# xupnpd
+if [ -e /var/etc/.xupnpd ]; then
+/bin/xupnpd
+fi
 
--- /dev/null
+# /etc/inittab
+#
+# Copyright (C) 2001 Erik Andersen <andersen@codepoet.org>
+#
+# Note: BusyBox init doesn't support runlevels.  The runlevels field is
+# completely ignored by BusyBox init. If you want runlevels, use
+# sysvinit.
+#
+# Format for each entry: <id>:<runlevels>:<action>:<process>
+#
+# id        == tty to run on, or empty for /dev/console
+# runlevels == ignored
+# action    == one of sysinit, respawn, askfirst, wait, and once
+# process   == program to run
+
+# Startup the system
+::sysinit:/etc/init.d/rcS
+
+# Set up a getty's
+#::once:/sbin/vsftpd
+::askfirst:-/bin/sh
+
+# Stuff to do for the 3-finger salute
+#null::ctrlaltdel:/sbin/reboot
+
+# Stuff to do before rebooting
+#null::shutdown:/usr/bin/killall klogd
+#null::shutdown:/usr/bin/killall syslogd
+#null::shutdown:/bin/umount -a -r
+#null::shutdown:/sbin/swapoff -a
+
+# last line
 
--- /dev/null
+#
+# /etc/modprobe.conf
+#
+#    configuration info for modprobe
+#
+
 
--- /dev/null
+../proc/mounts
\ No newline at end of file
 
--- /dev/null
+#
+# Interfaces to start with ifup -a
+#
+
+#
+# Loopback interface
+#
+auto lo
+iface lo inet loopback
+
+#
+# Ethernet interface (dhcp)
+#
+auto eth0
+iface eth0 inet static
+       address 192.168.220.242
+       broadcast 192.168.220.255
+       gateway 192.168.220.3
+       netmask 255.255.255.0
+
+
+# last line
+
+
+
+
+
+
 
--- /dev/null
+#!/bin/sh
+echo Stopping wlan0
+
+/sbin/wpa_cli terminate
+sleep 2
+
 
--- /dev/null
+#!/bin/sh
+
+echo Starting wlan0
+
+mkdir /var/run/wpa_supplicant
+/sbin/wpa_cli terminate
+sleep 1
+
+#/sbin/wpa_supplicant -B -D wext -i ra0 -c /etc/wpa_supplicant.conf//ralink
+/sbin/wpa_supplicant -D ipw -c /etc/wpa_supplicant.conf -i wlan0 -B
+sleep 8
 
--- /dev/null
+#!/bin/sh
+
+# udhcpc script edited by Tim Riker <Tim@Rikers.org>
+
+[ -z "$1" ] && echo "Error: should be called from udhcpc" && exit 1
+
+RESOLV_CONF="/etc/resolv.conf"
+[ -n "$broadcast" ] && BROADCAST="broadcast $broadcast"
+[ -n "$subnet" ] && NETMASK="netmask $subnet"
+
+case "$1" in
+       deconfig)
+               /sbin/ifconfig $interface 0.0.0.0
+               ;;
+
+       renew|bound)
+               /sbin/ifconfig $interface $ip $BROADCAST $NETMASK
+
+               if [ -n "$router" ] ; then
+                       echo "deleting routers"
+                       while route del default gw 0.0.0.0 dev $interface ; do
+                               :
+                       done
+
+                       metric=0
+                       for i in $router ; do
+                               route add default gw $i dev $interface metric $((metric++))
+                       done
+               fi
+
+               echo -n > $RESOLV_CONF
+               [ -n "$domain" ] && echo search $domain >> $RESOLV_CONF
+               for i in $dns ; do
+                       echo adding dns $i
+                       echo nameserver $i >> $RESOLV_CONF
+               done
+               ;;
+esac
+
+exit 0
 
--- /dev/null
+#config file for /bin/no-ip.sh
+
+USERNAME=username%40web.de
+PASSWORD=password
+HOST=yourhost.no-ip.org
+FORCEDUPDATE=25
 
--- /dev/null
+#
+# /etc/nsswitch.conf
+#
+# An example Name Service Switch config file. This file should be
+# sorted with the most-used services at the beginning.
+#
+# The entry '[NOTFOUND=return]' means that the search for an
+# entry should stop if the search in the previous entry turned
+# up nothing. Note that if the search failed due to some other reason
+# (like no NIS server responding) then the search continues with the
+# next entry.
+#
+# Legal entries are:
+#
+#      nisplus or nis+         Use NIS+ (NIS version 3)
+#      nis or yp               Use NIS (NIS version 2), also called YP
+#      dns                     Use DNS (Domain Name Service)
+#      files                   Use the local files
+#      db                      Use the local database (.db) files
+#      compat                  Use NIS on compat mode
+#      hesiod                  Use Hesiod for user lookups
+#      [NOTFOUND=return]       Stop searching if not found so far
+#
+
+# To use db, put the "db" in front of "files" for entries you want to be
+# looked up first in the databases
+#
+# Example:
+#passwd:    db files nisplus nis
+#shadow:    db files nisplus nis
+#group:     db files nisplus nis
+
+passwd:     files
+shadow:     files
+group:      files
+
+#hosts:     db files nisplus nis dns
+hosts:      files dns
+
+# Example - obey only what nisplus tells us...
+#services:   nisplus [NOTFOUND=return] files
+#networks:   nisplus [NOTFOUND=return] files
+#protocols:  nisplus [NOTFOUND=return] files
+#rpc:        nisplus [NOTFOUND=return] files
+#ethers:     nisplus [NOTFOUND=return] files
+#netmasks:   nisplus [NOTFOUND=return] files     
+
+bootparams: nisplus [NOTFOUND=return] files
+
+ethers:     files
+netmasks:   files
+networks:   files
+protocols:  files
+rpc:        files
+services:   files
+
+netgroup:   nisplus
+
+publickey:  nisplus
+
+automount:  files nisplus
+aliases:    files nisplus
+
 
--- /dev/null
+root:$1$40styOvG$fSZ7tLaQRQFJzycLxWDgt/:0:0::/root:/bin/sh
+sshd:*:65532:65534::/:/bin/false
+ftp:*:65533:65534::/:/bin/false
+nobody:*:65534:65534::/:/bin/false
 
--- /dev/null
+#!/bin/sh
+alias ll='ls -al'
+alias c='cat'
+alias d='date'
+alias g='grep'
+alias m='more'
+alias h='history'
+alias f='file'
 
--- /dev/null
+# /etc/protocols
+ip     0       IP
+icmp   1       ICMP
+igmp   2       IGMP
+ggp    3       GGP
+tcp    6       TCP
+udp    17      UDP
+rdp    27      RDP
 
--- /dev/null
+# generated by neutrino
+nameserver 217.68.161.141
 
--- /dev/null
+#ident "@(#)rpc        1.11    95/07/14 SMI"   /* SVr4.0 1.2   */
+#
+#      rpc
+#
+portmapper     100000  portmap sunrpc rpcbind
+rstatd         100001  rstat rup perfmeter rstat_svc
+rusersd                100002  rusers
+nfs            100003  nfsprog
+ypserv         100004  ypprog
+mountd         100005  mount showmount
+ypbind         100007
+walld          100008  rwall shutdown
+yppasswdd      100009  yppasswd
+etherstatd     100010  etherstat
+rquotad                100011  rquotaprog quota rquota
+sprayd         100012  spray
+3270_mapper    100013
+rje_mapper     100014
+selection_svc  100015  selnsvc
+database_svc   100016
+rexd           100017  rex
+alis           100018
+sched          100019
+llockmgr       100020
+nlockmgr       100021
+x25.inr                100022
+statmon                100023
+status         100024
+bootparam      100026
+ypupdated      100028  ypupdate
+keyserv                100029  keyserver
+sunlink_mapper 100033
+tfsd           100037
+nsed           100038
+nsemntd                100039
+showfhd                100043  showfh
+ioadmd         100055  rpc.ioadmd
+NETlicense     100062
+sunisamd       100065
+debug_svc      100066  dbsrv
+ypxfrd         100069  rpc.ypxfrd
+bugtraqd       100071
+kerbd          100078
+event          100101  na.event        # SunNet Manager
+logger         100102  na.logger       # SunNet Manager
+sync           100104  na.sync
+hostperf       100107  na.hostperf
+activity       100109  na.activity     # SunNet Manager
+hostmem                100112  na.hostmem
+sample         100113  na.sample
+x25            100114  na.x25
+ping           100115  na.ping
+rpcnfs         100116  na.rpcnfs
+hostif         100117  na.hostif
+etherif                100118  na.etherif
+iproutes       100120  na.iproutes
+layers         100121  na.layers
+snmp           100122  na.snmp snmp-cmc snmp-synoptics snmp-unisys snmp-utk
+traffic                100123  na.traffic
+nfs_acl                100227
+sadmind                100232
+nisd           100300  rpc.nisd
+nispasswd      100303  rpc.nispasswdd
+ufsd           100233  ufsd
+pcnfsd         150001  pcnfs
+amd            300019  amq
+sgi_fam                391002  fam
+bwnfsd         545580417
+fypxfrd                600100069 freebsd-ypxfrd
 
--- /dev/null
+# Network services, Internet style
+#
+# Note that it is presently the policy of IANA to assign a single well-known
+# port number for both TCP and UDP; hence, officially ports have two entries
+# even if the protocol doesn't support UDP operations.
+#
+# Updated from http://www.iana.org/assignments/port-numbers and other
+# sources like http://www.freebsd.org/cgi/cvsweb.cgi/src/etc/services .
+# New ports will be added on request if they have been officially assigned
+# by IANA and used in the real-world or are needed by a debian package.
+# If you need a huge list of used numbers please install the nmap package.
+
+tcpmux         1/tcp                           # TCP port service multiplexer
+echo           7/tcp
+echo           7/udp
+discard                9/tcp           sink null
+discard                9/udp           sink null
+systat         11/tcp          users
+daytime                13/tcp
+daytime                13/udp
+netstat                15/tcp
+qotd           17/tcp          quote
+msp            18/tcp                          # message send protocol
+msp            18/udp
+chargen                19/tcp          ttytst source
+chargen                19/udp          ttytst source
+ftp-data       20/tcp
+ftp            21/tcp
+fsp            21/udp          fspd
+ssh            22/tcp                          # SSH Remote Login Protocol
+ssh            22/udp
+telnet         23/tcp
+smtp           25/tcp          mail
+time           37/tcp          timserver
+time           37/udp          timserver
+rlp            39/udp          resource        # resource location
+nameserver     42/tcp          name            # IEN 116
+whois          43/tcp          nicname
+tacacs         49/tcp                          # Login Host Protocol (TACACS)
+tacacs         49/udp
+re-mail-ck     50/tcp                          # Remote Mail Checking Protocol
+re-mail-ck     50/udp
+domain         53/tcp          nameserver      # name-domain server
+domain         53/udp          nameserver
+mtp            57/tcp                          # deprecated
+tacacs-ds      65/tcp                          # TACACS-Database Service
+tacacs-ds      65/udp
+bootps         67/tcp                          # BOOTP server
+bootps         67/udp
+bootpc         68/tcp                          # BOOTP client
+bootpc         68/udp
+tftp           69/udp
+gopher         70/tcp                          # Internet Gopher
+gopher         70/udp
+rje            77/tcp          netrjs
+finger         79/tcp
+www            80/tcp          http            # WorldWideWeb HTTP
+www            80/udp                          # HyperText Transfer Protocol
+link           87/tcp          ttylink
+kerberos       88/tcp          kerberos5 krb5 kerberos-sec     # Kerberos v5
+kerberos       88/udp          kerberos5 krb5 kerberos-sec     # Kerberos v5
+supdup         95/tcp
+hostnames      101/tcp         hostname        # usually from sri-nic
+iso-tsap       102/tcp         tsap            # part of ISODE
+acr-nema       104/tcp         dicom           # Digital Imag. & Comm. 300
+acr-nema       104/udp         dicom           # Digital Imag. & Comm. 300
+csnet-ns       105/tcp         cso-ns          # also used by CSO name server
+csnet-ns       105/udp         cso-ns
+rtelnet                107/tcp                         # Remote Telnet
+rtelnet                107/udp
+pop2           109/tcp         postoffice pop-2 # POP version 2
+pop2           109/udp         pop-2
+pop3           110/tcp         pop-3           # POP version 3
+pop3           110/udp         pop-3
+sunrpc         111/tcp         portmapper      # RPC 4.0 portmapper
+sunrpc         111/udp         portmapper
+auth           113/tcp         authentication tap ident
+sftp           115/tcp
+uucp-path      117/tcp
+nntp           119/tcp         readnews untp   # USENET News Transfer Protocol
+ntp            123/tcp
+ntp            123/udp                         # Network Time Protocol
+pwdgen         129/tcp                         # PWDGEN service
+pwdgen         129/udp                         # PWDGEN service
+loc-srv                135/tcp         epmap           # Location Service
+loc-srv                135/udp         epmap
+netbios-ns     137/tcp                         # NETBIOS Name Service
+netbios-ns     137/udp
+netbios-dgm    138/tcp                         # NETBIOS Datagram Service
+netbios-dgm    138/udp
+netbios-ssn    139/tcp                         # NETBIOS session service
+netbios-ssn    139/udp
+imap2          143/tcp         imap            # Interim Mail Access P 2 and 4
+imap2          143/udp         imap
+snmp           161/tcp                         # Simple Net Mgmt Protocol
+snmp           161/udp                         # Simple Net Mgmt Protocol
+snmp-trap      162/tcp         snmptrap        # Traps for SNMP
+snmp-trap      162/udp         snmptrap        # Traps for SNMP
+cmip-man       163/tcp                         # ISO mgmt over IP (CMOT)
+cmip-man       163/udp
+cmip-agent     164/tcp
+cmip-agent     164/udp
+mailq          174/tcp                 # Mailer transport queue for Zmailer
+mailq          174/udp                 # Mailer transport queue for Zmailer
+xdmcp          177/tcp                         # X Display Mgr. Control Proto
+xdmcp          177/udp
+nextstep       178/tcp         NeXTStep NextStep       # NeXTStep window
+nextstep       178/udp         NeXTStep NextStep       #  server
+bgp            179/tcp                         # Border Gateway Protocol
+bgp            179/udp
+prospero       191/tcp                         # Cliff Neuman's Prospero
+prospero       191/udp
+irc            194/tcp                         # Internet Relay Chat
+irc            194/udp
+smux           199/tcp                         # SNMP Unix Multiplexer
+smux           199/udp
+at-rtmp                201/tcp                         # AppleTalk routing
+at-rtmp                201/udp
+at-nbp         202/tcp                         # AppleTalk name binding
+at-nbp         202/udp
+at-echo                204/tcp                         # AppleTalk echo
+at-echo                204/udp
+at-zis         206/tcp                         # AppleTalk zone information
+at-zis         206/udp
+qmtp           209/tcp                         # Quick Mail Transfer Protocol
+qmtp           209/udp                         # Quick Mail Transfer Protocol
+z3950          210/tcp         wais            # NISO Z39.50 database
+z3950          210/udp         wais
+ipx            213/tcp                         # IPX
+ipx            213/udp
+imap3          220/tcp                         # Interactive Mail Access
+imap3          220/udp                         # Protocol v3
+pawserv                345/tcp                         # Perf Analysis Workbench
+pawserv                345/udp
+zserv          346/tcp                         # Zebra server
+zserv          346/udp
+fatserv                347/tcp                         # Fatmen Server
+fatserv                347/udp
+rpc2portmap    369/tcp
+rpc2portmap    369/udp                         # Coda portmapper
+codaauth2      370/tcp
+codaauth2      370/udp                         # Coda authentication server
+clearcase      371/tcp         Clearcase
+clearcase      371/udp         Clearcase
+ulistserv      372/tcp                         # UNIX Listserv
+ulistserv      372/udp
+ldap           389/tcp                 # Lightweight Directory Access Protocol
+ldap           389/udp
+imsp           406/tcp                 # Interactive Mail Support Protocol
+imsp           406/udp
+https          443/tcp                         # http protocol over TLS/SSL
+https          443/udp
+snpp           444/tcp                         # Simple Network Paging Protocol
+snpp           444/udp
+microsoft-ds   445/tcp                         # Microsoft Naked CIFS
+microsoft-ds   445/udp
+saft           487/tcp                 # Simple Asynchronous File Transfer
+saft           487/udp
+isakmp         500/tcp                 # IPsec - Internet Security Association
+isakmp         500/udp                 #  and Key Management Protocol
+rtsp           554/tcp                 # Real Time Stream Control Protocol
+rtsp           554/udp                 # Real Time Stream Control Protocol
+nqs            607/tcp                         # Network Queuing system
+nqs            607/udp
+npmp-local     610/tcp         dqs313_qmaster          # npmp-local / DQS
+npmp-local     610/udp         dqs313_qmaster
+npmp-gui       611/tcp         dqs313_execd            # npmp-gui / DQS
+npmp-gui       611/udp         dqs313_execd
+hmmp-ind       612/tcp         dqs313_intercell        # HMMP Indication / DQS
+hmmp-ind       612/udp         dqs313_intercell
+ipp            631/tcp                         # Internet Printing Protocol
+ipp            631/udp
+#
+# UNIX specific services
+#
+exec           512/tcp
+biff           512/udp         comsat
+login          513/tcp
+who            513/udp         whod
+shell          514/tcp         cmd             # no passwords used
+syslog         514/udp
+printer                515/tcp         spooler         # line printer spooler
+talk           517/udp
+ntalk          518/udp
+route          520/udp         router routed   # RIP
+timed          525/udp         timeserver
+tempo          526/tcp         newdate
+courier                530/tcp         rpc
+conference     531/tcp         chat
+netnews                532/tcp         readnews
+netwall                533/udp                         # for emergency broadcasts
+gdomap         538/tcp                         # GNUstep distributed objects
+gdomap         538/udp
+uucp           540/tcp         uucpd           # uucp daemon
+klogin         543/tcp                         # Kerberized `rlogin' (v5)
+kshell         544/tcp         krcmd           # Kerberized `rsh' (v5)
+afpovertcp     548/tcp                         # AFP over TCP
+afpovertcp     548/udp
+remotefs       556/tcp         rfs_server rfs  # Brunhoff remote filesystem
+nntps          563/tcp         snntp           # NNTP over SSL
+nntps          563/udp         snntp
+submission     587/tcp                         # Submission [RFC2476]
+submission     587/udp
+ldaps          636/tcp                         # LDAP over SSL
+ldaps          636/udp
+tinc           655/tcp                         # tinc control port
+tinc           655/udp
+silc           706/tcp
+silc           706/udp
+kerberos-adm   749/tcp                         # Kerberos `kadmin' (v5)
+#
+webster                765/tcp                         # Network dictionary
+webster                765/udp
+rsync          873/tcp
+rsync          873/udp
+ftps-data      989/tcp                         # FTP over SSL (data)
+ftps           990/tcp
+telnets                992/tcp                         # Telnet over SSL
+telnets                992/udp
+imaps          993/tcp                         # IMAP over SSL
+imaps          993/udp
+ircs           994/tcp                         # IRC over SSL
+ircs           994/udp
+pop3s          995/tcp                         # POP-3 over SSL
+pop3s          995/udp
+#
+# From ``Assigned Numbers'':
+#
+#> The Registered Ports are not controlled by the IANA and on most systems
+#> can be used by ordinary user processes or programs executed by ordinary
+#> users.
+#
+#> Ports are used in the TCP [45,106] to name the ends of logical
+#> connections which carry long term conversations.  For the purpose of
+#> providing services to unknown callers, a service contact port is
+#> defined.  This list specifies the port used by the server process as its
+#> contact port.  While the IANA can not control uses of these ports it
+#> does register or list uses of these ports as a convienence to the
+#> community.
+#
+socks          1080/tcp                        # socks proxy server
+socks          1080/udp
+proofd         1093/tcp
+proofd         1093/udp
+rootd          1094/tcp
+rootd          1094/udp
+openvpn                1194/tcp
+openvpn                1194/udp
+rmiregistry    1099/tcp                        # Java RMI Registry
+rmiregistry    1099/udp
+kazaa          1214/tcp
+kazaa          1214/udp
+nessus         1241/tcp                        # Nessus vulnerability
+nessus         1241/udp                        #  assessment scanner
+lotusnote      1352/tcp        lotusnotes      # Lotus Note
+lotusnote      1352/udp        lotusnotes
+ms-sql-s       1433/tcp                        # Microsoft SQL Server
+ms-sql-s       1433/udp
+ms-sql-m       1434/tcp                        # Microsoft SQL Monitor
+ms-sql-m       1434/udp
+ingreslock     1524/tcp
+ingreslock     1524/udp
+prospero-np    1525/tcp                        # Prospero non-privileged
+prospero-np    1525/udp
+datametrics    1645/tcp        old-radius
+datametrics    1645/udp        old-radius
+sa-msg-port    1646/tcp        old-radacct
+sa-msg-port    1646/udp        old-radacct
+kermit         1649/tcp
+kermit         1649/udp
+l2f            1701/tcp        l2tp
+l2f            1701/udp        l2tp
+radius         1812/tcp
+radius         1812/udp
+radius-acct    1813/tcp        radacct         # Radius Accounting
+radius-acct    1813/udp        radacct
+unix-status    1957/tcp                        # remstats unix-status server
+log-server     1958/tcp                        # remstats log server
+remoteping     1959/tcp                        # remstats remoteping server
+rtcm-sc104     2101/tcp                        # RTCM SC-104 IANA 1/29/99
+rtcm-sc104     2101/udp
+cvspserver     2401/tcp                        # CVS client/server operations
+cvspserver     2401/udp
+venus          2430/tcp                        # codacon port
+venus          2430/udp                        # Venus callback/wbc interface
+venus-se       2431/tcp                        # tcp side effects
+venus-se       2431/udp                        # udp sftp side effect
+codasrv                2432/tcp                        # not used
+codasrv                2432/udp                        # server port
+codasrv-se     2433/tcp                        # tcp side effects
+codasrv-se     2433/udp                        # udp sftp side effect
+mon            2583/tcp                        # MON
+mon            2583/udp
+dict           2628/tcp                        # Dictionary server
+dict           2628/udp
+gpsd           2947/tcp
+gpsd           2947/udp
+gds_db         3050/tcp                        # InterBase server
+gds_db         3050/udp
+icpv2          3130/tcp        icp             # Internet Cache Protocol
+icpv2          3130/udp        icp
+mysql          3306/tcp
+mysql          3306/udp
+nut            3493/tcp                        # Network UPS Tools
+nut            3493/udp
+distcc         3632/tcp                        # distributed compiler
+distcc         3632/udp
+daap           3689/tcp                        # Digital Audio Access Protocol
+daap           3689/udp
+svn            3690/tcp        subversion      # Subversion protocol
+svn            3690/udp        subversion
+iax            4569/tcp                        # Inter-Asterisk eXchange
+iax            4569/udp
+radmin-port    4899/tcp                        # RAdmin Port
+radmin-port    4899/udp
+rfe            5002/udp                        # Radio Free Ethernet
+rfe            5002/tcp
+sip            5060/tcp                        # Session Initiation Protocol
+sip            5060/udp
+sip-tls                5061/tcp
+sip-tls                5061/udp
+xmpp-client    5222/tcp        jabber-client   # Jabber Client Connection
+xmpp-client    5222/udp        jabber-client
+xmpp-server    5269/tcp        jabber-server   # Jabber Server Connection
+xmpp-server    5269/udp        jabber-server
+cfengine       5308/tcp
+cfengine       5308/udp
+postgresql     5432/tcp        postgres        # PostgreSQL Database
+postgresql     5432/udp        postgres
+x11            6000/tcp        x11-0           # X Window System
+x11            6000/udp        x11-0
+x11-1          6001/tcp
+x11-1          6001/udp
+x11-2          6002/tcp
+x11-2          6002/udp
+x11-3          6003/tcp
+x11-3          6003/udp
+x11-4          6004/tcp
+x11-4          6004/udp
+x11-5          6005/tcp
+x11-5          6005/udp
+x11-6          6006/tcp
+x11-6          6006/udp
+x11-7          6007/tcp
+x11-7          6007/udp
+gnutella-svc   6346/tcp                        # gnutella
+gnutella-svc   6346/udp
+gnutella-rtr   6347/tcp                        # gnutella 
+gnutella-rtr   6347/udp
+afs3-fileserver 7000/tcp       bbs             # file server itself
+afs3-fileserver 7000/udp       bbs
+afs3-callback  7001/tcp                        # callbacks to cache managers
+afs3-callback  7001/udp
+afs3-prserver  7002/tcp                        # users & groups database
+afs3-prserver  7002/udp
+afs3-vlserver  7003/tcp                        # volume location database
+afs3-vlserver  7003/udp
+afs3-kaserver  7004/tcp                        # AFS/Kerberos authentication
+afs3-kaserver  7004/udp
+afs3-volser    7005/tcp                        # volume managment server
+afs3-volser    7005/udp
+afs3-errors    7006/tcp                        # error interpretation service
+afs3-errors    7006/udp
+afs3-bos       7007/tcp                        # basic overseer process
+afs3-bos       7007/udp
+afs3-update    7008/tcp                        # server-to-server updater
+afs3-update    7008/udp
+afs3-rmtsys    7009/tcp                        # remote cache manager service
+afs3-rmtsys    7009/udp
+font-service   7100/tcp        xfs             # X Font Service
+font-service   7100/udp        xfs
+bacula-dir     9101/tcp                        # Bacula Director
+bacula-dir     9101/udp
+bacula-fd      9102/tcp                        # Bacula File Daemon
+bacula-fd      9102/udp
+bacula-sd      9103/tcp                        # Bacula Storage Daemon
+bacula-sd      9103/udp
+amanda         10080/tcp                       # amanda backup services
+amanda         10080/udp
+hkp            11371/tcp                       # OpenPGP HTTP Keyserver
+hkp            11371/udp                       # OpenPGP HTTP Keyserver
+bprd            13720/tcp                      # VERITAS NetBackup
+bprd            13720/udp
+bpdbm           13721/tcp                      # VERITAS NetBackup
+bpdbm           13721/udp
+bpjava-msvc     13722/tcp                      # BP Java MSVC Protocol
+bpjava-msvc     13722/udp
+vnetd           13724/tcp                      # Veritas Network Utility
+vnetd           13724/udp
+bpcd            13782/tcp                      # VERITAS NetBackup
+bpcd            13782/udp
+vopied          13783/tcp                      # VERITAS NetBackup
+vopied          13783/udp
+wnn6           22273/tcp                       # wnn6
+wnn6           22273/udp
+
+#
+# Datagram Delivery Protocol services
+#
+rtmp           1/ddp                   # Routing Table Maintenance Protocol
+nbp            2/ddp                   # Name Binding Protocol
+echo           4/ddp                   # AppleTalk Echo Protocol
+zip            6/ddp                   # Zone Information Protocol
+
+#=========================================================================
+# The remaining port numbers are not as allocated by IANA.
+#=========================================================================
+
+# Kerberos (Project Athena/MIT) services
+# Note that these are for Kerberos v4, and are unofficial.  Sites running
+# v4 should uncomment these and comment out the v5 entries above.
+#
+kerberos4      750/udp         kerberos-iv kdc # Kerberos (server)
+kerberos4      750/tcp         kerberos-iv kdc
+kerberos_master        751/udp                         # Kerberos authentication
+kerberos_master        751/tcp 
+passwd_server  752/udp                         # Kerberos passwd server
+krb_prop       754/tcp         krb5_prop hprop # Kerberos slave propagation
+krbupdate      760/tcp         kreg            # Kerberos registration
+kpasswd                761/tcp         kpwd            # Kerberos "passwd"
+swat           901/tcp                         # swat
+kpop           1109/tcp                        # Pop with Kerberos
+knetd          2053/tcp                        # Kerberos de-multiplexor
+zephyr-srv     2102/udp                        # Zephyr server
+zephyr-clt     2103/udp                        # Zephyr serv-hm connection
+zephyr-hm      2104/udp                        # Zephyr hostmanager
+eklogin                2105/tcp                        # Kerberos encrypted rlogin
+# Hmmm. Are we using Kv4 or Kv5 now? Worrying.
+# The following is probably Kerberos v5  --- ajt@debian.org (11/02/2000)
+kx             2111/tcp                        # X over Kerberos
+iprop          2121/tcp                        # incremental propagation
+#
+# Unofficial but necessary (for NetBSD) services
+#
+supfilesrv     871/tcp                         # SUP server
+supfiledbg     1127/tcp                        # SUP debugging
+
+#
+# Services added for the Debian GNU/Linux distribution
+#
+linuxconf      98/tcp                          # LinuxConf
+poppassd       106/tcp                         # Eudora
+poppassd       106/udp
+ssmtp          465/tcp         smtps           # SMTP over SSL
+moira_db       775/tcp                         # Moira database
+moira_update   777/tcp                         # Moira update protocol
+moira_ureg     779/udp                         # Moira user registration
+spamd          783/tcp                         # spamassassin daemon
+omirr          808/tcp         omirrd          # online mirror
+omirr          808/udp         omirrd
+customs                1001/tcp                        # pmake customs server
+customs                1001/udp
+skkserv                1178/tcp                        # skk jisho server port
+predict                1210/udp                        # predict -- satellite tracking
+rmtcfg         1236/tcp                        # Gracilis Packeten remote config server
+wipld          1300/tcp                        # Wipl network monitor
+xtel           1313/tcp                        # french minitel
+xtelw          1314/tcp                        # french minitel
+support                1529/tcp                        # GNATS
+sieve          2000/tcp                        # Sieve mail filter daemon
+cfinger                2003/tcp                        # GNU Finger
+ndtp           2010/tcp                        # Network dictionary transfer protocol
+frox           2121/tcp                        # frox: caching ftp proxy
+ninstall       2150/tcp                        # ninstall service
+ninstall       2150/udp
+zebrasrv       2600/tcp                        # zebra service
+zebra          2601/tcp                        # zebra vty
+ripd           2602/tcp                        # ripd vty (zebra)
+ripngd         2603/tcp                        # ripngd vty (zebra)
+ospfd          2604/tcp                        # ospfd vty (zebra)
+bgpd           2605/tcp                        # bgpd vty (zebra)
+ospf6d         2606/tcp                        # ospf6d vty (zebra)
+ospfapi                2607/tcp                        # OSPF-API
+isisd          2608/tcp                        # ISISd vty (zebra)
+afbackup       2988/tcp                        # Afbackup system
+afbackup       2988/udp
+afmbackup      2989/tcp                        # Afmbackup system
+afmbackup      2989/udp
+xtell          4224/tcp                        # xtell server
+fax            4557/tcp                        # FAX transmission service (old)
+hylafax                4559/tcp                        # HylaFAX client-server protocol (new)
+distmp3                4600/tcp                        # distmp3host daemon
+munin          4949/tcp        lrrd            # Munin
+enbd-cstatd    5051/tcp                        # ENBD client statd
+enbd-sstatd    5052/tcp                        # ENBD server statd
+pcrd           5151/tcp                        # PCR-1000 Daemon
+noclog         5354/tcp                        # noclogd with TCP (nocol)
+noclog         5354/udp                        # noclogd with UDP (nocol)
+hostmon                5355/tcp                        # hostmon uses TCP (nocol)
+hostmon                5355/udp                        # hostmon uses UDP (nocol)
+rplay          5555/udp                        # RPlay audio service
+rplay          5555/tcp
+rptp           5556/udp                        # Remote Play Transfer Protocol
+rptp           5556/tcp
+nsca           5667/tcp                        # Nagios Agent - NSCA
+mrtd           5674/tcp                        # MRT Routing Daemon
+bgpsim         5675/tcp                        # MRT Routing Simulator
+canna          5680/tcp                        # cannaserver
+sane-port      6566/tcp        sane saned      # SANE network scanner daemon
+ircd           6667/tcp                        # Internet Relay Chat
+zope-ftp       8021/tcp                        # zope management by ftp
+webcache       8080/tcp                        # WWW caching service
+tproxy         8081/tcp                        # Transparent Proxy
+omniorb                8088/tcp                        # OmniORB
+omniorb                8088/udp
+clc-build-daemon 8990/tcp                      # Common lisp build daemon
+xinetd         9098/tcp
+mandelspawn    9359/udp        mandelbrot      # network mandelbrot
+zope           9673/tcp                        # zope server
+kamanda                10081/tcp                       # amanda backup services (Kerberos)
+kamanda                10081/udp
+amandaidx      10082/tcp                       # amanda backup services
+amidxtape      10083/tcp                       # amanda backup services
+smsqp          11201/tcp                       # Alamin SMS gateway
+smsqp          11201/udp
+xpilot         15345/tcp                       # XPilot Contact Port
+xpilot         15345/udp
+sgi-cmsd       17001/udp               # Cluster membership services daemon
+sgi-crsd       17002/udp
+sgi-gcd                17003/udp                       # SGI Group membership daemon
+sgi-cad                17004/tcp                       # Cluster Admin daemon
+isdnlog                20011/tcp                       # isdn logging system
+isdnlog                20011/udp
+vboxd          20012/tcp                       # voice box system
+vboxd          20012/udp
+binkp          24554/tcp                       # binkp fidonet protocol
+asp            27374/tcp                       # Address Search Protocol
+asp            27374/udp
+dircproxy      57000/tcp                       # Detachable IRC Proxy
+tfido          60177/tcp                       # fidonet EMSI over telnet
+fido           60179/tcp                       # fidonet EMSI over TCP
+
+# Local services
 
--- /dev/null
+<?xml version="1.0" encoding="iso-8859-1" ?>
+
+<timezone>
+       <zone name="(GMT-12:00) International Date Line West" zone="Kwajalein" />
+       <zone name="(GMT-11:00) Midway Island, Samoa" zone="Midway" />
+       <zone name="(GMT-10:00) Hawaii" zone="Honululu" />
+       <zone name="(GMT-09:00) Alaska" zone="Anchorage" />
+       <zone name="(GMT-08:00) Pacific Time (US and Canada), Tijuana" zone="Tijuana" />
+       <zone name="(GMT-07:00) Arizona" zone="MST7MDT" />
+       <zone name="(GMT-07:00) Chihuahua, La Paz, Mazatlan" zone="MST7MDT" />
+       <zone name="(GMT-07:00) Mountain Time (US & Canada) " zone="MST7MDT" />
+       <zone name="(GMT-06:00) Central America" zone="CST6CDT" />
+       <zone name="(GMT-06:00) Central Time (US and Canada)" zone="CST6CDT" />
+       <zone name="(GMT-06:00) Guadalajara, Mexico City, Monterrey" zone="CST6CDT" />
+       <zone name="(GMT-06:00) Saskatchewan" zone="Saskatchewan" />
+       <zone name="(GMT-05:00) Bogota, Lima, Quito" zone="Bogota" />
+       <zone name="(GMT-05:00) Eastern Time (Us and Canada)" zone="EST5EDT" />
+       <zone name="(GMT-05:00) Indiana (East)" zone="EST" />
+       <zone name="(GMT-04:00) Atlantic Time (Canada)" zone="Atlantic" />
+       <zone name="(GMT-04:00) Caracas, La Paz" zone="Caracas" />
+       <zone name="(GMT-04:00) Santiago" zone="Santiago" />
+       <zone name="(GMT-03:30) Newfoundland" zone="Newfoundland" />
+       <zone name="(GMT-03:00) Brasilia" zone="East" />
+       <zone name="(GMT-03:00) Buenos Aires, Georgetown" zone="West" />
+       <zone name="(GMT-03:00) Greenland" zone="Danmarkshavn" />
+       <zone name="(GMT-02:00) Mid-Atlantic" zone="Noronha" />
+       <zone name="(GMT-01:00) Azores" zone="Azores" />
+       <zone name="(GMT-01:00) Cape Verde Is." zone="Cape_Verde" />
+       <zone name="(GMT) Casablanca, Monrovia" zone="Casablanca" />
+       <zone name="(GMT) Greenwich Mean Time : Dublin, Lisbon, London" zone="Dublin" />
+       <zone name="(GMT+01:00) Amsterdam, Berlin, Bern, Rome, Vienna" zone="CET" />
+       <zone name="(GMT+01:00) Belgrade, Bratislava, Budapest, Prague" zone="CET" />
+       <zone name="(GMT+01:00) Brussels, Copenhagen, Madrid, Paris" zone="CET" />
+       <zone name="(GMT+01:00) Sarajevo, Skopje, Warsaw, Zagreb" zone="CET" />
+       <zone name="(GMT+01:00) West Central Africa" zone="Kinshasa" />
+       <zone name="(GMT+02:00) Athens, Istanbul, Minsk" zone="Istanbul" />
+       <zone name="(GMT+02:00) Bucharest" zone="Istanbul" />
+       <zone name="(GMT+02:00) Harare, Pretoria" zone="Harare" />
+       <zone name="(GMT+02:00) Helsinki, Kyiv, Sofia" zone="Istanbul" />
+       <zone name="(GMT+02:00) Riga, Tallinn, Vilnius" zone="Istanbul" />
+       <zone name="(GMT+02:00) Jerusalem" zone="Jerusalem" />
+       <zone name="(GMT+03:00) Baghdad" zone="Baghdad" />
+       <zone name="(GMT+03:00) Kuwait, Riyadh" zone="Riyadh" />
+       <zone name="(GMT+03:00) Moscow, St. Petersburg, Volgograd" zone="Moscow" />
+       <zone name="(GMT+03:00) Nairobi" zone="Nairobi" />
+       <zone name="(GMT+03:30) Tehran" zone="Tehran" />
+       <zone name="(GMT+04:00) Abu Dhabi, Muscat" zone="Muscat" />
+       <zone name="(GMT+04:00) Baku, Tbilisi, Yerevan" zone="Baku" />
+       <zone name="(GMT+04:30) Kabul" zone="Kabul" />
+       <zone name="(GMT+05:00) Ekaterinburg" zone="Omsk" />
+       <zone name="(GMT+05:00) Islamabad, Karachi, Tashkent" zone="Tashkent" />
+       <zone name="(GMT+05:30) Chennai, Kolkata, Mumbai, New Delhi" zone="Calcutta" />
+       <zone name="(GMT+05:45) Kathmandu" zone="Katmandu" />
+       <zone name="(GMT+06:00) Almaty, Novosibirsk" zone="Almaty" />
+       <zone name="(GMT+06:00) Astana, Dhaka" zone="Dhaka" />
+       <zone name="(GMT+06:00) Sri Jayawardenepura" zone="Colombo" />
+       <zone name="(GMT+06:30) Rangoon" zone="Rangoon" />
+       <zone name="(GMT+07:00) Bangkok, Hanoi, Jakarta" zone="Bangkok" />
+       <zone name="(GMT+07:00) Krasnoyarsk" zone="Krasnoyarsk" />
+       <zone name="(GMT+08:00) Beijing, Chongqing, Hong Kong, Urumqi" zone="Hong_Kong" />
+       <zone name="(GMT+08:00) Irkutsk, Ulaan Bataar" zone="Irkutsk" />
+       <zone name="(GMT+08:00) Kuala Lumpur, Singapore" zone="Kuala_Lumpur" />
+       <zone name="(GMT+08:00) Perth" zone="Perth" />
+       <zone name="(GMT+08:00) Taipei" zone="Taipei" />
+       <zone name="(GMT+09:00) Osaka, Sapporo, Tokyo" zone="Tokyo" />
+       <zone name="(GMT+09:00) Seoul" zone="Seoul" />
+       <zone name="(GMT+09:00) Yakutsk" zone="Yakutsk" />
+       <zone name="(GMT+09:30) Adelaide" zone="Adelaide" />
+       <zone name="(GMT+09:30) Darwin" zone="Darwin" />
+       <zone name="(GMT+10:00) Brisbane" zone="Bisbane" />
+       <zone name="(GMT+10:00) Canberra, Melbourne, Sydney" zone="Sydney" />
+       <zone name="(GMT+10:00) Guam, Port Moresby" zone="Guam" />
+       <zone name="(GMT+10:00) Hobart" zone="Hobart" />
+       <zone name="(GMT+10:00) Vladivostok" zone="Vladivostok" />
+       <zone name="(GMT+11:00) Magadan, Solomon Is., New Caledonia" zone="Magadan" />
+       <zone name="(GMT+12:00) Auckland, Wellington" zone="Auckland" />
+       <zone name="(GMT+12:00) Fiji, Kamchatka, Marshall Is." zone="Fiji" />
+       <zone name="(GMT+13:00) Nukualofa" zone="Tongatapu" />
+</timezone>
 
--- /dev/null
+tmp
\ No newline at end of file
 
--- /dev/null
+/dev/cnxt                      d 777 0 0
+/dev/dvb                       d 777 0 0
+/dev/dvb/adapter0              d 777 0 0
+/dev/fb                                d 777 0 0
+/dev/input                     d 777 0 0
+/dev/pts                       d 777 0 0
+/dev/shm                       d 777 0 0
+/dev/shm/usb                   d 777 0 0
+/dev/snd                       d 777 0 0
+/dev/mem                       c 777 0 0 1     1
+/dev/kmem                      c 777 0 0 1     2
+/dev/null                      c 777 0 0 1     3
+/dev/zero                      c 777 0 0 1     5
+/dev/random                    c 777 0 0 1     8
+/dev/urandom                   c 777 0 0 1     9
+/dev/console                   c 777 0 0 5     1
+/dev/ptmx                      c 777 0 0 5     2
+/dev/watchdog                  c 777 0 0 10    130
+/dev/fuse                      c 777 0 0 10    229
+/dev/fb0                       c 777 0 0 29    0
+/dev/ram                       b 777 0 0 1     0       0 1 5
+/dev/tty                       c 777 0 0 5     0
+/dev/tty                       c 777 0 0 4     0       0 1 6
+/dev/loop                      b 777 0 0 7     0       0 1 5
+/dev/mtdblock                  b 777 0 0 31    0       0 1 6
+/dev/mtd                       c 777 0 0 90    0       0 2 6
+/dev/sda                       b 777 0 0 8     0
+/dev/sdb                       b 777 0 0 8     16
+/dev/sdc                       b 777 0 0 8     32
+/dev/sdd                       b 777 0 0 8     48
+/dev/sde                       b 777 0 0 8     64
+/dev/sdf                       b 777 0 0 8     80
+/dev/sdg                       b 777 0 0 8     96
+/dev/sdh                       b 777 0 0 8     112
+/dev/sda                       b 777 0 0 8     1       1 1 15
+/dev/sdb                       b 777 0 0 8     17      1 1 15
+/dev/sdc                       b 777 0 0 8     33      1 1 15
+/dev/sdd                       b 777 0 0 8     49      1 1 15
+/dev/sde                       b 777 0 0 8     65      1 1 15
+/dev/sdf                       b 777 0 0 8     81      1 1 15
+/dev/sdg                       b 777 0 0 8     97      1 1 15
+/dev/sdh                       b 777 0 0 8     113     1 1 15
+/dev/ttyUSB                    c 777 0 0 188   0       0 1 6
+/dev/cnxt/cnxt_gen_drv         c 777 0 0 102   0
+/dev/notifyq                   c 777 0 0 102   1
+/dev/user_kal                  c 777 0 0 102   2
+/dev/display                   c 777 0 0 238   0
+/dev/cs_control                        c 777 0 0 249   0
+/dev/cs_control_scart          c 777 0 0 250   0
+/dev/cs_control_pwm            c 777 0 0 251   0
+/dev/iolib                     c 777 0 0 253   0
+/dev/ttyRI                     c 777 0 0 204   16      0 1 3
+/dev/admmidi                   c 777 0 0 14    14      0 16 4
+/dev/adsp                      c 777 0 0 14    12      0 16 4
+/dev/aloadC                    c 777 0 0 14    0       0 32 4
+/dev/aloadSEQ                  c 777 0 0 14    1
+/dev/amidi                     c 777 0 0 14    13      0 16 4
+/dev/amixer                    c 777 0 0 14    11      0 16 4
+/dev/audio                     c 777 0 0 14    4       0 16 4
+/dev/dmfm                      c 777 0 0 14    10      0 16 4
+/dev/dmmidi0                   c 777 0 0 14    9       0 16 4
+/dev/dsp                       c 777 0 0 14    3       0 16 4
+/dev/midi0                     c 777 0 0 14    2       0 16 4
+/dev/mixer                     c 777 0 0 14    0       0 16 4
+/dev/music                     c 777 0 0 14    8
+/dev/sequencer                 c 777 0 0 14    1
+/dev/sg                                c 777 0 0 21    0       0 1 15
+/dev/sndstat                   c 777 0 0 14    6
+/dev/input/nevis_ir            c 777 0 0 240   0
+/dev/input/event0_uinput       c 777 0 0 10    223
+/dev/input/mouse               c 777 0 0 13    32      0 1 4
+/dev/input/mice                        c 777 0 0 13    63
+/dev/input/event2              c 777 0 0 13    66
+/dev/input/event3              c 777 0 0 13    67
+/dev/dvb/adapter0/frontend0    c 777 0 0 212   3
+/dev/dvb/adapter0/frontend1    c 777 0 0 212   19
+/dev/snd/controlC0             c 777 0 0 116   0
+/dev/snd/controlC1             c 777 0 0 116   32
+/dev/snd/controlC2             c 777 0 0 116   64
+/dev/snd/controlC3             c 777 0 0 116   96
+/dev/snd/hwC0D                 c 777 0 0 116   4       0 1 4
+/dev/snd/hwC1D                 c 777 0 0 116   36      0 1 4
+/dev/snd/hwC2D                 c 777 0 0 116   68      0 1 4
+/dev/snd/hwC3D                 c 777 0 0 116   100     0 1 4
+/dev/snd/midiC0D               c 777 0 0 116   8       0 1 8
+/dev/snd/midiC1D               c 777 0 0 116   40      0 1 8
+/dev/snd/midiC2D               c 777 0 0 116   72      0 1 8
+/dev/snd/midiC3D               c 777 0 0 116   104     0 1 8
+/dev/snd/pcmC0D0c              c 777 0 0 116   24
+/dev/snd/pcmC0D1c              c 777 0 0 116   25
+/dev/snd/pcmC0D2c              c 777 0 0 116   26
+/dev/snd/pcmC0D3c              c 777 0 0 116   27
+/dev/snd/pcmC0D4c              c 777 0 0 116   28
+/dev/snd/pcmC0D5c              c 777 0 0 116   29
+/dev/snd/pcmC0D6c              c 777 0 0 116   30
+/dev/snd/pcmC0D7c              c 777 0 0 116   31
+/dev/snd/pcmC0D0p              c 777 0 0 116   16
+/dev/snd/pcmC0D1p              c 777 0 0 116   17
+/dev/snd/pcmC0D2p              c 777 0 0 116   18
+/dev/snd/pcmC0D3p              c 777 0 0 116   19
+/dev/snd/pcmC0D4p              c 777 0 0 116   20
+/dev/snd/pcmC0D5p              c 777 0 0 116   21
+/dev/snd/pcmC0D6p              c 777 0 0 116   22
+/dev/snd/pcmC0D7p              c 777 0 0 116   23
+/dev/snd/pcmC1D0c              c 777 0 0 116   56
+/dev/snd/pcmC1D1c              c 777 0 0 116   57
+/dev/snd/pcmC1D2c              c 777 0 0 116   58
+/dev/snd/pcmC1D3c              c 777 0 0 116   59
+/dev/snd/pcmC1D4c              c 777 0 0 116   60
+/dev/snd/pcmC1D5c              c 777 0 0 116   61
+/dev/snd/pcmC1D6c              c 777 0 0 116   62
+/dev/snd/pcmC1D7c              c 777 0 0 116   63
+/dev/snd/pcmC1D0p              c 777 0 0 116   48
+/dev/snd/pcmC1D1p              c 777 0 0 116   49
+/dev/snd/pcmC1D2p              c 777 0 0 116   50
+/dev/snd/pcmC1D3p              c 777 0 0 116   51
+/dev/snd/pcmC1D4p              c 777 0 0 116   52
+/dev/snd/pcmC1D5p              c 777 0 0 116   53
+/dev/snd/pcmC1D6p              c 777 0 0 116   54
+/dev/snd/pcmC1D7p              c 777 0 0 116   55
+/dev/snd/pcmC2D0c              c 777 0 0 116   88
+/dev/snd/pcmC2D1c              c 777 0 0 116   89
+/dev/snd/pcmC2D2c              c 777 0 0 116   90
+/dev/snd/pcmC2D3c              c 777 0 0 116   91
+/dev/snd/pcmC2D4c              c 777 0 0 116   92
+/dev/snd/pcmC2D5c              c 777 0 0 116   93
+/dev/snd/pcmC2D6c              c 777 0 0 116   94
+/dev/snd/pcmC2D7c              c 777 0 0 116   95
+/dev/snd/pcmC2D0p              c 777 0 0 116   80
+/dev/snd/pcmC2D1p              c 777 0 0 116   81
+/dev/snd/pcmC2D2p              c 777 0 0 116   82
+/dev/snd/pcmC2D3p              c 777 0 0 116   83
+/dev/snd/pcmC2D4p              c 777 0 0 116   84
+/dev/snd/pcmC2D5p              c 777 0 0 116   85
+/dev/snd/pcmC2D6p              c 777 0 0 116   86
+/dev/snd/pcmC2D7p              c 777 0 0 116   87
+/dev/snd/pcmC3D0c              c 777 0 0 116   120
+/dev/snd/pcmC3D1c              c 777 0 0 116   121
+/dev/snd/pcmC3D2c              c 777 0 0 116   122
+/dev/snd/pcmC3D3c              c 777 0 0 116   123
+/dev/snd/pcmC3D4c              c 777 0 0 116   124
+/dev/snd/pcmC3D5c              c 777 0 0 116   125
+/dev/snd/pcmC3D6c              c 777 0 0 116   126
+/dev/snd/pcmC3D7c              c 777 0 0 116   127
+/dev/snd/pcmC3D0p              c 777 0 0 116   112
+/dev/snd/pcmC3D1p              c 777 0 0 116   113
+/dev/snd/pcmC3D2p              c 777 0 0 116   114
+/dev/snd/pcmC3D3p              c 777 0 0 116   115
+/dev/snd/pcmC3D4p              c 777 0 0 116   116
+/dev/snd/pcmC3D5p              c 777 0 0 116   117
+/dev/snd/pcmC3D6p              c 777 0 0 116   118
+/dev/snd/pcmC3D7p              c 777 0 0 116   119
+/dev/snd/seq                   c 777 0 0 116   1
+/dev/snd/timer                 c 777 0 0 116   33
 
--- /dev/null
+#!/bin/sh
+/bin/echo "running $0"
+
+ln -sf nevis_ir        /dev/input/event0
+ln -sf nevis_ir        /dev/input/input0
+ln -sf ../fb0  /dev/fb/0
+ln -sf adsp0   /dev/adsp
+ln -sf amidi0  /dev/amidi
+ln -sf audio0  /dev/audio
+ln -sf dsp0    /dev/dsp
+ln -sf midi00  /dev/midi
+ln -sf mixer0  /dev/mixer
+ln -sf music   /dev/sequencer2
+
+/bin/echo "done $0"
 
--- /dev/null
+usr/share
\ No newline at end of file
 
--- /dev/null
+#!/bin/sh
+alias ll='ls -al'
+export TZ=CET-3CEST,M3.5.0/2,M10.5.0/3
 
--- /dev/null
+#!/bin/sh
+
+
+
+
 
--- /dev/null
+#!/bin/sh
+
+
+
+
 
--- /dev/null
+http://www.coolstreamtech.de/support/wwwupdate/coolstream.txt
+http://www.coolstreamtech.de/support/wwwupdate/channel_list.txt
+http://www.coolstreamtech.de/support/wwwupdate/simple_update.txt
+http://www.coolstreamtech.de/support/wwwupdate/archive.txt
+http://updates.cstworld.net/CSTWorld-plugins.cst
 
--- /dev/null
+/tmp
\ No newline at end of file
 
--- /dev/null
+/tmp
\ No newline at end of file