== Debian Rep. ==

 deb http://www.debian-multimedia.org testing main

== debootstrap ==

{{{
EX="gcc-4.2-base,tasksel,tasksel-data,cron,logrotate,netbase,ifupdown,info,man-db,manpages,ed,nano,vim-tiny,iputils-ping,net-tools,netcat-traditional,tcpd,traceroute,groff-base,makedev"
IN="ssh,vim,less,localepurge"
debootstrap --variant=minbase --exclude="$EX" --include="$IN" $* http://localhost:3142/ftp2.de.debian.org/debian

# ich habe scripts/lenny angepasst so das gcc-4.2-base nicht mehr enthalten ist,
# selbe gilt auch für makedev!
}}}


== Tools ==
um Bilder in mpeg zu wandeln

 aptitude install mjpegtools mpeg2dec

 jpeg2yuv -Ip -L0 -f 25 -j cam%05d.jpg -v0 | \
 mpeg2enc -b3 -f3 -F3 -o ../mpg/out.mpeg


= XSERVER =

 Section "ServerFlags"
  Option "AllowMouseOpenFail"
 EndSection


Section "Device"
	Identifier  "NV AGP TwinView"
	Driver "nvidia"
	BusID "PCI:1:0:0"
	Option "RenderAccel" "true"
	Option "NvAGP" "1"
	Option "AllowGLXWithComposite" "true"
EndSection

Section "Screen"
    Identifier "Screen AGP TwinView"
    Device "NV AGP TwinView"
    Monitor "MyMonitor"
    DefaultColorDepth 24
	Option "TwinView" "true"
#	Option "SecondMonitorHorizSync" "30-70"
#	Option "SecondMonitorVertRefresh" "50-120"

	Option "MetaModes" "1280x10241280x1024; 1024x768,1024x768;"
	Option "TwinViewOrientation" "RightOf"

    Subsection "Display"
        Depth       16
        Modes       "1280x1024" "1024x768" "800x600" "640x480"
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1280x1024" "1024x768" "800x600" "640x480"
    EndSubsection
EndSection





#
# just one agp twinview card
#
Section "ServerLayout"
    Identifier  "AGPTwinView"
    Screen      "Screen AGP TwinView"
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
EndSection


}}}

== Image erstellung im Netzwerk ==

dd ist ein bekantes Linux tool um Festplatten Images zu erzeugen.
wenn mal alles ins Netz geschickt werden muss weil man keine Festplatte ausbauen möchte.

installiert man sich am besten netcat (nc)

 apt-get install netcat


=== Server starten ===
 
 nc -v -w 120 -p 3333 -l < /dev/null > image.gz

Server auf Port 3333 und wartet 120 sec.
=== Client sendet ===
 dd if=/dev/hda bs=512 | gzip -c | nc -v -w 60 <image server ip> 3333

== Kommunikation ==
* minicom
* scmxx