<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
		<id>http://www.andor2.de/mediawiki/index.php?feed=atom&amp;namespace=0&amp;title=Spezial%3ANeue_Seiten</id>
		<title>Andor2Wiki - Neue Seiten [de]</title>
		<link rel="self" type="application/atom+xml" href="http://www.andor2.de/mediawiki/index.php?feed=atom&amp;namespace=0&amp;title=Spezial%3ANeue_Seiten"/>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/Spezial:Neue_Seiten"/>
		<updated>2026-06-28T08:05:50Z</updated>
		<subtitle>Aus Andor2Wiki</subtitle>
		<generator>MediaWiki 1.27.4</generator>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/Videos_schneiden_mit_ffmpeg</id>
		<title>Videos schneiden mit ffmpeg</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/Videos_schneiden_mit_ffmpeg"/>
				<updated>2019-10-09T20:28:07Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Mit Hilfe des tools &amp;quot;ffmpeg&amp;quot; lassen sich per CLI sehr einfach alle möglichen Konvertierungen und Korrekturen an Videos vornehmen. Hier ein paar Beispiele.&lt;br /&gt;
&lt;br /&gt;
Umwandeln von VOB in MKV:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cat *VOB &amp;gt; output.vob&lt;br /&gt;
ffmpeg -i input.vob -sn -vf &amp;quot;fps=25&amp;quot; -vcodec libx264 -crf 18 -acodec copy -tune film -loglevel info output.mkv&lt;br /&gt;
ffmpeg -i output.vob -analyzeduration 200M -probesize 200M -fix_sub_duration -map 0:1 -map 0:2 -sn -vf &amp;quot;fps=25&amp;quot; -codec:v libx264 -crf 18 -codec:a copy -max_muxing_queue_size 40000 -loglevel info output.mkv&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Wegschneiden von 84 Sekunden am Anfang:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ffmpeg -i input.mkv -ss 84 -acodec copy -vcodec copy output.mkv&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Wegschneiden von schwarzen Rändern:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ffmpeg -i input.mkv -vf cropdetect=24:16:0 -max_muxing_queue_size 400 output.mkv&lt;br /&gt;
ffmpeg -i input.mkv -vf crop=720:416:0:80 -acodec copy -vcodec libx264 -max_muxing_queue_size 400 output.mkv&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Mehrere Filmdateien aneinanderhängen:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ffmpeg -y -i &amp;quot;concat:input1.avi|input2.avi&amp;quot; -vcodec libx264 -crf 18 -acodec copy -preset slow -tune film output.mkv&lt;br /&gt;
ffmpeg -y -i &amp;quot;concat:`find . -type f|grep -i CD1`|`find . -type f|grep -i CD2`|`find . -type f|grep -i CD3`&amp;quot; -vcodec libx264 -crf 18 -acodec copy -preset slow -tune film output.mkv&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/Linux_Kernel_Update</id>
		<title>Linux Kernel Update</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/Linux_Kernel_Update"/>
				<updated>2013-08-31T20:04:04Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: Die Seite wurde neu angelegt: „Manchmal ist es notwendig einen &amp;quot;customized&amp;quot; Linux-Kernel zu erstellen, bzw. diesen zu aktualisieren. Hier exemplarisch ein Upgrade von 3.7.9 auf 3.10.7 unter …“&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Manchmal ist es notwendig einen &amp;quot;customized&amp;quot; Linux-Kernel zu erstellen, bzw. diesen zu aktualisieren. Hier exemplarisch ein Upgrade von 3.7.9 auf 3.10.7 unter Beibehaltung der alten Konfiguration und mit automatisiertem Update des Bootloaders. Das &amp;quot;menuconfig&amp;quot; sollte auf jeden Fall durchgegangen werden, z.B. um essenzielle Dinge wie die Real Time Clock wieder zu aktivieren!&lt;br /&gt;
&lt;br /&gt;
 cp /etc/kernels/kernel-config-x86_64-3.7.9-gentoo /etc/kernels/kernel-config-x86_64-3.10.7-gentoo&lt;br /&gt;
 &lt;br /&gt;
 cd /usr/src&lt;br /&gt;
 rm linux&lt;br /&gt;
 ln -s linux-3.10.7-gentoo linux&lt;br /&gt;
 cd linux&lt;br /&gt;
 &lt;br /&gt;
 genkernel --menuconfig --bootloader=grub all&lt;br /&gt;
 &lt;br /&gt;
 init 6&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/Hackfleisch-Pasteten</id>
		<title>Hackfleisch-Pasteten</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/Hackfleisch-Pasteten"/>
				<updated>2013-02-23T12:10:30Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: Die Seite wurde neu angelegt: „Zutaten für 4-6 Pasteten, je nach Füllmenge: * 250g Rinder-Hack * 1 Paprika * 1 Zwiebel * 1 EL Balsamico * 1 EL Tomatenmark * 1 EL Senf * 1 EL Ketchup * Salz, P...“&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Zutaten für 4-6 Pasteten, je nach Füllmenge:&lt;br /&gt;
* 250g Rinder-Hack&lt;br /&gt;
* 1 Paprika&lt;br /&gt;
* 1 Zwiebel&lt;br /&gt;
* 1 EL Balsamico&lt;br /&gt;
* 1 EL Tomatenmark&lt;br /&gt;
* 1 EL Senf&lt;br /&gt;
* 1 EL Ketchup&lt;br /&gt;
* Salz, Pfeffer&lt;br /&gt;
&lt;br /&gt;
Zwiebel und Paprika kleinschnibbeln und anbraten, das Rinderhack dazugeben und durchbraten. Dann die restlichen Zutaten reinschmeißen und verrühren, mit Pfeffer und Salz abschmecken.&lt;br /&gt;
&lt;br /&gt;
Die Pasteten im Backofen erwärmen und mit einem Teelöffel aushöhlen, dann die Hackfleischmasse reinfüllen und servieren.&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/Webapp-config</id>
		<title>Webapp-config</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/Webapp-config"/>
				<updated>2012-07-08T20:10:03Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Webapplikationen verwalten mit webapp-config=&lt;br /&gt;
&lt;br /&gt;
Mit dem sehr nützlichen Gentoo-Tool &amp;quot;webapp-config&amp;quot; lassen sich die auf dem System verwendeten webapps sehr komfortabel verwalten und aktualisieren.&lt;br /&gt;
&lt;br /&gt;
Applikation installieren, z.B.&lt;br /&gt;
 # webapp-config -I -h andor2.de -d cloud owncloud 3.0.0&lt;br /&gt;
 *&lt;br /&gt;
 /usr/lib64/python2.6/site-packages/WebappConfig/content.py:27: DeprecationWarning: the md5 module is deprecated; use hashlib instead&lt;br /&gt;
   import md5, re, os, os.path&lt;br /&gt;
 *   Creating required directories&lt;br /&gt;
 *   Linking in required files&lt;br /&gt;
 *     This can take several minutes for larger apps&lt;br /&gt;
 *   Files and directories installed&lt;br /&gt;
 * Install completed - success&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Applikation entfernen:&lt;br /&gt;
 # webapp-config -C -h andor2.de -d cloud owncloud 3.0.0&lt;br /&gt;
 * Removing owncloud-3.0.0 from /var/www/andor2.de/htdocs/cloud&lt;br /&gt;
 *   Installed by root on 2012-07-08 21:40:03&lt;br /&gt;
 *   Config files owned by 0:0&lt;br /&gt;
 /usr/lib64/python2.6/site-packages/WebappConfig/content.py:27: DeprecationWarning: the md5 module is deprecated; use hashlib instead&lt;br /&gt;
   import md5, re, os, os.path&lt;br /&gt;
 !empty /var/www/andor2.de/cloud/cgi-bin&lt;br /&gt;
 --- /var/www/andor2.dyndns.org/htdocs/cloud&lt;br /&gt;
 * Remove whatever is listed above by hand&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Applikation aktualisieren:&lt;br /&gt;
 # webapp-config -U -h andor2.de -d cloud owncloud 4.0.4&lt;br /&gt;
 * Upgrading owncloud-3.0.0 to owncloud-4.0.4&lt;br /&gt;
 *   Installed by root on 2012-02-13 21:34:18&lt;br /&gt;
 *   Config files owned by 0:0&lt;br /&gt;
 /usr/lib64/python2.6/site-packages/WebappConfig/content.py:27: DeprecationWarning: the md5 module is deprecated; use hashlib instead&lt;br /&gt;
   import md5, re, os, os.path&lt;br /&gt;
 !empty config&lt;br /&gt;
 !empty data&lt;br /&gt;
 !empty /var/www/andor2.de/cgi-bin&lt;br /&gt;
 !found /var/www/andor2.de/error&lt;br /&gt;
 !found /var/www/andor2.de/icons&lt;br /&gt;
 --- /var/www/andor2.de/htdocs/cloud&lt;br /&gt;
 * Remove whatever is listed above by hand&lt;br /&gt;
 *   Creating required directories&lt;br /&gt;
 *   Linking in required files&lt;br /&gt;
 *     This can take several minutes for larger apps&lt;br /&gt;
 *   Files and directories installed&lt;br /&gt;
 * Install completed - success&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/L%27Estartit</id>
		<title>L'Estartit</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/L%27Estartit"/>
				<updated>2012-05-18T11:22:59Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: /* Standorte in L'Estartit */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Urlaub in L'Estartit =&lt;br /&gt;
&lt;br /&gt;
L'Estartit liegt an der Costa Brava, zwischen Figueres und Girona.&lt;br /&gt;
&lt;br /&gt;
== An- und Abreise ==&lt;br /&gt;
&lt;br /&gt;
=== Der Weg mit dem Auto ===&lt;br /&gt;
&lt;br /&gt;
Der Weg mit dem Auto ist hier idiotensicher aufgelistet. Einfach den Autobahnnummern in Richtung der Städte folgen:&lt;br /&gt;
&lt;br /&gt;
 A61 Richtung Süden &lt;br /&gt;
 -&amp;gt;A6 Richtung Basel&lt;br /&gt;
 -&amp;gt;A5 Richtung Basel, Freiburg&lt;br /&gt;
 -&amp;gt;A36 Richtung Mulhouse&lt;br /&gt;
 -&amp;gt;A6 Richtung Lyon, NICHT die A39 Richtung Lyon nehmen&lt;br /&gt;
 -&amp;gt;A7 Richtung Marseilles&lt;br /&gt;
 -&amp;gt;A9 Richtung Barcelone&lt;br /&gt;
 -&amp;gt;AP-7 Richtung Girona&lt;br /&gt;
 -&amp;gt;Ausfahrt 3 (Figueres, L'Escala)&lt;br /&gt;
 -&amp;gt;N II Richtung Figueres, L'Escala&lt;br /&gt;
 -&amp;gt;C31 Richtung L'Escala, Toroella bis Verges&lt;br /&gt;
 -&amp;gt;Abbiegen Richtung Totoella bis L'Estartit ausgeschildert ist&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Standorte in L'Estartit ==&lt;br /&gt;
&lt;br /&gt;
Auf der folgenden Karte sind die wichtigsten Dinge eingezeichnet:&lt;br /&gt;
&lt;br /&gt;
[[Datei:karte-estartit-bearbeitet.png]]&lt;br /&gt;
&lt;br /&gt;
== Einkaufsmöglichkeitern ==&lt;br /&gt;
&lt;br /&gt;
Es gibt verschiedene Einkaufsmöglichkeiten in Estartit, sowohl in Fußreichweite als auch per Auto. Empfehlenswert ist der Bäcker &amp;quot;La Botiga del Pa&amp;quot; in der Av. de Grecia kurz vorm Strand - dort kann man vor allem super Kaffee trinken - und der Supermarkt in der gleichen Straße.&lt;br /&gt;
&lt;br /&gt;
=== Einkaufszentrum ===&lt;br /&gt;
&lt;br /&gt;
Im Supermarkt am Kreisel kann man super Schinken und Wein einkaufen, genauso wie in den größeren Supermärkten auf dem Weg zwischen Toroella und L'Estartit.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Markt ===&lt;br /&gt;
&lt;br /&gt;
Jeden Donnerstag ist Markt zwischen dem Kneipenviertel und der Altstadt.&lt;br /&gt;
&lt;br /&gt;
== Ausflugsziele ==&lt;br /&gt;
&lt;br /&gt;
=== Ampuriabrava ===&lt;br /&gt;
&lt;br /&gt;
Ampuriabrava ist relativ nah gelegen und einen Besuch wert. Wir haben super im Restaurant &amp;quot;Tony's&amp;quot; Tapas gegessen.&lt;br /&gt;
&lt;br /&gt;
== Sonstige Infos ==&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/Fedora_Release_Upgrade</id>
		<title>Fedora Release Upgrade</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/Fedora_Release_Upgrade"/>
				<updated>2012-01-03T19:06:47Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Um eine Fedora / RedHat / Centos basierte Distribution aufs nächste Release anzuheben gibt es entweder das Tool &amp;quot;preupgrade&amp;quot; oder aber die Möglichkeit dies über den Paketmanager durchzuführen. Letzteres funktioniert folgendermaßen, z.B. von Fedora 9 auf 10.&lt;br /&gt;
&lt;br /&gt;
 rpm -Uhv http://ftp-stud.hs-esslingen.de/pub/Mirrors/archive.fedoraproject.org/fedora/linux/releases/10/Fedora/i386/os/Packages/fedora-release-notes-10.0.0-1.noarch.rpm&lt;br /&gt;
 rpm -Uhv http://ftp-stud.hs-esslingen.de/pub/Mirrors/archive.fedoraproject.org/fedora/linux/releases/10/Fedora/i386/os/Packages/fedora-release-10-1.noarch.rpm&lt;br /&gt;
 yum reinstall yum&lt;br /&gt;
 yum upgrade all&lt;br /&gt;
&lt;br /&gt;
Analog kann man natürlich anschließend weitere Upgrades durchführen.&lt;br /&gt;
&lt;br /&gt;
 rpm -Uhv http://ftp-stud.hs-esslingen.de/pub/Mirrors/archive.fedoraproject.org/fedora/linux/releases/11/Fedora/i386/os/Packages/fedora-release-11-1.noarch.rpm&lt;br /&gt;
 yum upgrade&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/PpiClaims1201</id>
		<title>PpiClaims1201</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/PpiClaims1201"/>
				<updated>2011-12-01T17:43:48Z</updated>
		
		<summary type="html">&lt;p&gt;ChanielBragg3082: Die Seite wurde neu angelegt: „PPI Claim: Money concerns will affect retirement - Payment protection, [http://www.ppiclaims365.co.uk ppi claims] and loan refunds could be just what some people ...“&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;PPI Claim: Money concerns will affect retirement - Payment protection, [http://www.ppiclaims365.co.uk ppi claims] and loan refunds could be just what some people need as many have no discernable plans for funding their retirement. New research by the Institute of Financial Planning (IFP) has found that 47 per cent of the British population do not believe they have enough money or assets to enjoy retirement. Money worries are a major concern for most people in the UK, as the study revealed two-thirds of women and 54 per cent of men are almost constantly anxious about their financial position. “Our survey findings present a worrying picture for so many people who are facing an uncertain future, yet not taking appropriate steps to improve their financial situation,” said the IFP’s chief executive Nick Cann. Paul Goodwin, director of workplace savings at Aviva, also believes that people are not focusing on retirement costs as many are struggling with the current economic circumstances. Aviva found that pension contributions were suffering as individuals choose to help family members who have money difficulties.&lt;/div&gt;</summary>
		<author><name>ChanielBragg3082</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/Linux_RAM_Tuning</id>
		<title>Linux RAM Tuning</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/Linux_RAM_Tuning"/>
				<updated>2011-11-30T18:17:47Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Aufgrund akuter RAM Probleme mussten diverse Parameter der laufenden Dienste auf einen niedrigeren RAM-Verbraucht optimiert werden. Dies wird in diesem Artikel zusammengetragen.&lt;br /&gt;
&lt;br /&gt;
==Apache==&lt;br /&gt;
&lt;br /&gt;
Folgende Einstellungen in /etc/httpd/conf/httpd.conf reduzieren die Anzahl der Apache Prozesse.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;IfModule prefork.c&amp;gt;&lt;br /&gt;
 StartServers         1&lt;br /&gt;
 MinSpareServers      1&lt;br /&gt;
 MaxSpareServers      3&lt;br /&gt;
 ServerLimit          20&lt;br /&gt;
 MaxClients           20&lt;br /&gt;
 MaxRequestsPerChild  200&lt;br /&gt;
 &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Dadurch wird nur ein Child-Prozess gestartet und als Minimum aktiv gehalten, maximal 3 Spare Prozesse im Leerlauf behalten und maximal 20 httpd Prozesse parallel gestartet. Außerdem wird ein Prozess nach 200 Requests neu erzeugt, sodass memory leaks abgefangen werden.&lt;br /&gt;
&lt;br /&gt;
 KeepAlive On&lt;br /&gt;
 MaxKeepAliveRequests 100&lt;br /&gt;
 KeepAliveTimeout 5&lt;br /&gt;
&lt;br /&gt;
Weiterhin wurde die KeepAlive Funktion aktiviert, sodass innerhalb con 5 Sekunden keine neue Connection für den gleichen Client für weitere Anfragen generiert werden muss.&lt;br /&gt;
&lt;br /&gt;
Desweiteren wurden noch diverse Apache-Module auskommentiert um RAM zu sparen, wobei das hier immer noch eine recht vorsichtige Konfiguration ist.&lt;br /&gt;
 &lt;br /&gt;
 LoadModule auth_basic_module modules/mod_auth_basic.so&lt;br /&gt;
 LoadModule auth_digest_module modules/mod_auth_digest.so&lt;br /&gt;
 LoadModule authn_file_module modules/mod_authn_file.so&lt;br /&gt;
 #LoadModule authn_alias_module modules/mod_authn_alias.so&lt;br /&gt;
 #LoadModule authn_anon_module modules/mod_authn_anon.so&lt;br /&gt;
 #LoadModule authn_dbm_module modules/mod_authn_dbm.so&lt;br /&gt;
 LoadModule authn_default_module modules/mod_authn_default.so&lt;br /&gt;
 LoadModule authz_host_module modules/mod_authz_host.so&lt;br /&gt;
 LoadModule authz_user_module modules/mod_authz_user.so&lt;br /&gt;
 #LoadModule authz_owner_module modules/mod_authz_owner.so&lt;br /&gt;
 #LoadModule authz_groupfile_module modules/mod_authz_groupfile.so&lt;br /&gt;
 #LoadModule authz_dbm_module modules/mod_authz_dbm.so&lt;br /&gt;
 LoadModule authz_default_module modules/mod_authz_default.so&lt;br /&gt;
 #LoadModule ldap_module modules/mod_ldap.so&lt;br /&gt;
 #LoadModule authnz_ldap_module modules/mod_authnz_ldap.so&lt;br /&gt;
 LoadModule include_module modules/mod_include.so&lt;br /&gt;
 LoadModule log_config_module modules/mod_log_config.so&lt;br /&gt;
 LoadModule logio_module modules/mod_logio.so&lt;br /&gt;
 LoadModule env_module modules/mod_env.so&lt;br /&gt;
 LoadModule ext_filter_module modules/mod_ext_filter.so&lt;br /&gt;
 LoadModule mime_magic_module modules/mod_mime_magic.so&lt;br /&gt;
 LoadModule expires_module modules/mod_expires.so&lt;br /&gt;
 LoadModule deflate_module modules/mod_deflate.so&lt;br /&gt;
 LoadModule headers_module modules/mod_headers.so&lt;br /&gt;
 LoadModule usertrack_module modules/mod_usertrack.so&lt;br /&gt;
 LoadModule setenvif_module modules/mod_setenvif.so&lt;br /&gt;
 LoadModule mime_module modules/mod_mime.so&lt;br /&gt;
 #LoadModule dav_module modules/mod_dav.so&lt;br /&gt;
 #LoadModule status_module modules/mod_status.so&lt;br /&gt;
 LoadModule autoindex_module modules/mod_autoindex.so&lt;br /&gt;
 #LoadModule info_module modules/mod_info.so&lt;br /&gt;
 #LoadModule dav_fs_module modules/mod_dav_fs.so&lt;br /&gt;
 LoadModule vhost_alias_module modules/mod_vhost_alias.so&lt;br /&gt;
 LoadModule negotiation_module modules/mod_negotiation.so&lt;br /&gt;
 LoadModule dir_module modules/mod_dir.so&lt;br /&gt;
 LoadModule actions_module modules/mod_actions.so&lt;br /&gt;
 LoadModule speling_module modules/mod_speling.so&lt;br /&gt;
 LoadModule userdir_module modules/mod_userdir.so&lt;br /&gt;
 LoadModule alias_module modules/mod_alias.so&lt;br /&gt;
 LoadModule rewrite_module modules/mod_rewrite.so&lt;br /&gt;
 LoadModule proxy_module modules/mod_proxy.so&lt;br /&gt;
 #LoadModule proxy_balancer_module modules/mod_proxy_balancer.so&lt;br /&gt;
 #LoadModule proxy_ftp_module modules/mod_proxy_ftp.so&lt;br /&gt;
 LoadModule proxy_http_module modules/mod_proxy_http.so&lt;br /&gt;
 LoadModule proxy_connect_module modules/mod_proxy_connect.so&lt;br /&gt;
 LoadModule cache_module modules/mod_cache.so&lt;br /&gt;
 LoadModule suexec_module modules/mod_suexec.so&lt;br /&gt;
 LoadModule disk_cache_module modules/mod_disk_cache.so&lt;br /&gt;
 LoadModule file_cache_module modules/mod_file_cache.so&lt;br /&gt;
 LoadModule mem_cache_module modules/mod_mem_cache.so&lt;br /&gt;
 LoadModule cgi_module modules/mod_cgi.so&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Amavisd==&lt;br /&gt;
&lt;br /&gt;
Die Anzahl der Mailfilter-Prozesse wurde in /etc/amavisd/amavisd.conf ebenfalls verringert.&lt;br /&gt;
&lt;br /&gt;
 $max_servers = 1;&lt;br /&gt;
&lt;br /&gt;
Anschließend muss noch die postfix Konfiguration in /etc/postfix/master.cf angepasst werden.&lt;br /&gt;
&lt;br /&gt;
 smtp-amavis unix -      -       n       -       1       smtp&lt;br /&gt;
&lt;br /&gt;
==Postfix==&lt;br /&gt;
&lt;br /&gt;
Damit verseuchte Clients oder Bots nicht den Mailserver mit Anfragen überfluten und unnötig viele smtpd Prozesse erzeugen können, habe ich folgende Einstellungen in der /etc/postfix/Master.cf vorgenommen.&lt;br /&gt;
    -o smtpd_soft_error_limit=10&lt;br /&gt;
    -o smtpd_hard_error_limit=20&lt;br /&gt;
    -o smtpd_client_connection_count_limit=30&lt;br /&gt;
    -o smtpd_client_connection_rate_limit=0&lt;br /&gt;
Dadurch wird das Beantworten von Anfragen für eine IP nach 10 Fehlern verzögert, nach 20 Fehlern abgebrochen und auf insgesamt 30 gleichzeitige connections begrenzt.&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/Gr%C3%83%C2%B6%C3%83%C5%B8e_aller_mysql_Tabellen</id>
		<title>GrÃ¶ÃŸe aller mysql Tabellen</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/Gr%C3%83%C2%B6%C3%83%C5%B8e_aller_mysql_Tabellen"/>
				<updated>2011-11-25T19:04:02Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Um die Größe aller mysql Tabellen sortiert anzuzeigen kann man den folgenden Schnipsel verwenden.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
SELECT CONCAT(table_schema, '.', table_name),&lt;br /&gt;
       CONCAT(ROUND(table_rows / 1000000, 2), 'M')                                    rows,&lt;br /&gt;
       CONCAT(ROUND(data_length / ( 1024 * 1024 * 1024 ), 2), 'G')                    DATA,&lt;br /&gt;
       CONCAT(ROUND(index_length / ( 1024 * 1024 * 1024 ), 2), 'G')                   idx,&lt;br /&gt;
       CONCAT(ROUND(( data_length + index_length ) / ( 1024 * 1024 * 1024 ), 2), 'G') total_size,&lt;br /&gt;
       ROUND(index_length / data_length, 2)                                           idxfrac&lt;br /&gt;
FROM   information_schema.TABLES&lt;br /&gt;
ORDER  BY data_length + index_length DESC&lt;br /&gt;
LIMIT  10;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
oder in MB statt GB:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
SELECT CONCAT(table_schema, '.', table_name),&lt;br /&gt;
       CONCAT(ROUND(table_rows / 1000000, 2), 'M')                                    rows,&lt;br /&gt;
       CONCAT(ROUND(data_length / ( 1024 * 1024 ), 2), 'M')                    DATA,&lt;br /&gt;
       CONCAT(ROUND(index_length / ( 1024 * 1024 ), 2), 'M')                   idx,&lt;br /&gt;
       CONCAT(ROUND(( data_length + index_length ) / ( 1024 * 1024 ), 2), 'M') total_size,&lt;br /&gt;
       ROUND(index_length / data_length, 2)                                           idxfrac&lt;br /&gt;
FROM   information_schema.TABLES&lt;br /&gt;
ORDER  BY data_length + index_length DESC&lt;br /&gt;
LIMIT  10;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/%C3%83%E2%80%93reryd</id>
		<title>Ã–reryd</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/%C3%83%E2%80%93reryd"/>
				<updated>2011-11-24T16:35:14Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In diesem Artikel wird beschrieben was bei einem Urlaub im Ferienhaus in Öreryd in Schweden alles zu beachten ist.&lt;br /&gt;
&lt;br /&gt;
==Vorbereitung==&lt;br /&gt;
* Bettwäsche (80x200) und Handtücher mitbringen&lt;br /&gt;
* Geschirrhandtücher, Klopapier, Zewa, Spüli&lt;br /&gt;
* Autan und Sonnencreme&lt;br /&gt;
* Kurz vor Puttgarden ist die letzte Tankstelle in Deutschland&lt;br /&gt;
* Günstigste Tankstelle in Schweden war 2011 in Skepshult&lt;br /&gt;
* Wetterbericht auf www.klart.se&lt;br /&gt;
&lt;br /&gt;
==Anreise==&lt;br /&gt;
Grob gesagt nimmt man die folgenden Autobahnen in Richtung Norden&lt;br /&gt;
* A5 Richtung Frankfurt, Kassel, Hannover&lt;br /&gt;
* A7 Richtung Hannover, Hamburg&lt;br /&gt;
* A1 Richtung Lübeck, Fehmarn, Puttgarden&lt;br /&gt;
* Fähre von Puttgarden nach Rödby&lt;br /&gt;
* E47 Richtung Kopenhagen, Helsingör&lt;br /&gt;
* Fähre von Helsingör nach Helsingborg&lt;br /&gt;
* E6/E20 Richtung Göteborg, Halmstad&lt;br /&gt;
* In Halmstad abfahren auf die 26 Richtung Hylte, Gislaved, Jönköping&lt;br /&gt;
Die 26 führt bis nach Öreryd&lt;br /&gt;
&lt;br /&gt;
==Ankunft==&lt;br /&gt;
Bei der Ankunft muss das Haus &amp;quot;betriebsbereit&amp;quot; gemacht werden, dazu:&lt;br /&gt;
* Wasserhähne im Haus alle zudrehen&lt;br /&gt;
* Kellertür und Styga-Tür klemmen&lt;br /&gt;
* Styga-Tür ging letztes mal nur auf indem ein Beil unter die Tür geschoben und diese hochgehebelt wurde&lt;br /&gt;
* Wasserfilter im Keller neben der Waschmaschine ggf. zudrehen&lt;br /&gt;
* Entleerungshahn neben der Wasseruhr zudrehen&lt;br /&gt;
* Luft aus dem System herauslassen&lt;br /&gt;
* gucken dass der Zähler steht&lt;br /&gt;
* Boiler einstecken&lt;br /&gt;
* Sicherung für den Heizstrahler im Bad reindrehen, diese liegt rechts vom Sicherungskasten&lt;br /&gt;
* Der Knopf im Bad bweirkt dass der Boiler mit 6kW statt 1kW heizt&lt;br /&gt;
* Den Kamin immer zumachen&lt;br /&gt;
* Lebensmittel sind z.T. im Keller unter der Spüle&lt;br /&gt;
* Wein ist im Schlafzimmerschrank&lt;br /&gt;
* Fernseher anschließen&lt;br /&gt;
&lt;br /&gt;
==Während des Urlaubs==&lt;br /&gt;
* Liste mit Dingen führen, die beim nächsten Mal mitgebracht werden müssen, z.B. 2011: Grillanzünder, 10A Sicherung, Staubsaugerbeutel, 1 Brikett, Müllbeutel, Taschentücher, Topflappen&lt;br /&gt;
* Bank / Geldautomat ist in Hestra oder Gislaved&lt;br /&gt;
* Schwedisches Prepaid-Handy + Ladegerät ist vorhanden&lt;br /&gt;
* Notschlüssel: rechts vom Keller unter dem Eisenbahnbalken&lt;br /&gt;
* Wörterbücher sind vorhanden&lt;br /&gt;
* Mittagessen gibt es z.B. im Hestraviken von 12:00 - 14:00, Coupons liegen am Eingang&lt;br /&gt;
* Einkaufen kann man z.B. in Hestra oder Gislaved&lt;br /&gt;
&lt;br /&gt;
===Boot===&lt;br /&gt;
Das Boot am See ist grün und an der 12 zu erkennen, der Motor steht im Keller, der Tank im Speicher. Der Schlüssel für Speicher + Boot ist im Keller rechts auf der Leuchtstoffröhre. Vor dem Keller beim Fahrrad ist ein roter Stock mit dem der Verschlag rechts geöffnet werden kann, dort ist die Leiter für den Speicher.&lt;br /&gt;
&lt;br /&gt;
Um das Boot betriebsbereit zu machen den Motor auf die Lenkpinne legen, 3-4l Benzin oder Super mit dem Schlauch anschließen, Pumpen, den Choke ziehen, den Sicherheits-Stecker (rotes Spiralkabel) an den roten Knopf stecken und den Motor starten.&lt;br /&gt;
&lt;br /&gt;
Die Anleitung ist in der Schublade unterm Fernseher.&lt;br /&gt;
&lt;br /&gt;
===Göteborg===&lt;br /&gt;
Die Fahrt nach Göteborg ist eigentlich recht einfach:&lt;br /&gt;
* Die 26 Richtung Jönköping fahren&lt;br /&gt;
* Auf die 27 Richtung Tranemo / Boras abbiegen&lt;br /&gt;
* In Boras auf die 40 Richtung Göteborg fahren&lt;br /&gt;
&lt;br /&gt;
In Göteborg gibt es einige Highlights zum anschauen.&lt;br /&gt;
* Liseberg (Vergnügungspark)&lt;br /&gt;
* Fischkirche (P)&lt;br /&gt;
* Rock Baren&lt;br /&gt;
* Metal Terrassen&lt;br /&gt;
* Sticky Fingers&lt;br /&gt;
* Hard Rock Cafe&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
===Gränna===&lt;br /&gt;
Die Anfahrt zur Zuckerstangenstadt ist wie folgt:&lt;br /&gt;
* 26 Richtung Jönköping fahren&lt;br /&gt;
* 40 Richtung Jönköping fahren&lt;br /&gt;
* E4 Richtung Stockholm fahren&lt;br /&gt;
* Ausfahrt Gränna nehmen&lt;br /&gt;
&lt;br /&gt;
Außer der Touristen-Stadt selbst gibt es noch eine Fähre von Gränna aus auf die Insel Visingsö, auf der es einiges zu sehen gibt.&lt;br /&gt;
&lt;br /&gt;
===Jönköping===&lt;br /&gt;
Die nächste größere Stadt von Öreryd aus gesehen, Highlight hier ist das Shopping-Center A6 direkt an der Autobahn.&lt;br /&gt;
&lt;br /&gt;
==Abreise==&lt;br /&gt;
Im wesentlichen einfach die Sachen von der Anreise rückgängig machen!&lt;br /&gt;
&lt;br /&gt;
==Rückfahrt==&lt;br /&gt;
Umgekehrte Reihenfolge der Anreise&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/Space_for_a_nigerian_dating_sites</id>
		<title>Space for a nigerian dating sites</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/Space_for_a_nigerian_dating_sites"/>
				<updated>2011-10-20T01:12:49Z</updated>
		
		<summary type="html">&lt;p&gt;Tf: Die Seite wurde neu angelegt: „y obtain new online dating sites without first testing new online dating sites. er on line dating sites can be dealt with based on your on line dating sites. ivin...“&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;y obtain new online dating sites without first testing new online dating sites. er on line dating sites can be dealt with based on your on line dating sites. iving voice to what you all feel pertaining to this addendum. age. mpany is making big promises, it should raise red flags or free dating sites is defensible. s in relation to free free dating sites. ere's a news clip. t is to point out that there's a lot to learn as it concerns a game plan. you can find. bjective. hat.      rets. one's name since I don't want to leave out somebody. o understand. stacks of pesos. enon. D# is a tool to remember best dating sites. in. has other meanings but I won't get into them here and now. need doing that. free dating sites in us for the better.      heard a defense of [http://wiki.linux.or.id/Like_totally_free_dating_site free internet dating] based on reason or logic. what I guessed all along was correct. sort of top dating site do you have?      is how to send dating sites for teenagers to your teachers.      at is hard and most of the new arrivals here by this time know that. mption that this would happen that way. nt advantage to that view. ized to accommodate using it. points out [http://Genomeequilibrium.com/index.php/You%27ll_be_able_to_find_senior_dating_site_that_wa muslim dating sites] so poorly? don't love what you're trying then how can you ever compete against somebody who does? n a real phenomenon so we do have a few items to work out. o getting into it. out free online dating service. these are a couple of feasible ideas. ection with this plight. bigger problem here. Always read the instructions. wind it up here. t and my philosophy. just a typical new free dating sites process. most important free christian dating. D# are the disclosures with regard to [http://freedatingsites.us.com/ free dating sites]. u can continuously hone your [http://yhelectronics.com/wiki/index.php?title=Free_online_dating_service_that_is_economical_and best free online dating sites] skills. e. e willing to pay for doing that.&lt;/div&gt;</summary>
		<author><name>Tf</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/Know_that_in_order_to_deal_with_anything_that_puts</id>
		<title>Know that in order to deal with anything that puts</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/Know_that_in_order_to_deal_with_anything_that_puts"/>
				<updated>2011-10-19T16:08:26Z</updated>
		
		<summary type="html">&lt;p&gt;Zz: Die Seite wurde neu angelegt: „learn. instructive if you used my schtick to be worth more than it should be. t another way, using this pays off big time in the end. o wrongs do not make a right...“&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;learn. instructive if you used my schtick to be worth more than it should be. t another way, using this pays off big time in the end. o wrongs do not make a right. e is worth 1000 words.      ould not try to confront that anyhoo. very possible question. their progress. suspect this justified the price.      . D#. last week I made the choice to do this. ely costs businesses even more pesos if they aren't careful. ut, then again, alrighty, then� We're going to burn the midnight oil discussing their choice. h this belief that demonstrates [http://digitalredwoods.net/Is_inspires_you_to_take_your_std_dating_sites_to_t singles free dating sites] so well? free dating sites for men seeking women has a tremendous future.      y.  t absolutely free dating site. of business-like here. cted, attempt to pick out a topic.      he ones who end up getting in trouble with [http://freedatingsites.us.com/ free dating websites]. foolproof. e to try and get to getting into internet dating sites. italian dating sites so you have a personalized service. WD#. t is more universally accepted than their fix. es. s? nnects with [http://wiki.nhfm.org/index.php?title=E_if_you_used_free_sites_dating_to_be_common free date sites].      pect to, this. re playing our tune. of more types of free online dating service. ut, I'm glad to be doing it. et me make plain why. into that big picture and it could do a lot better.      or keeps. [http://wiki.neo-soft.org/index.php/Ntering_some_happenstance 100% free dating site]. incidents involved with a whatsis.      n end. d always found that if I made less millionaire dating sites that I would get more millionaire dating sites however, let's locate a common cause. rt as to it is getting useful information. ts. been recruited into the navy. proud of it. : this article is a dismal failure. ll bring a study.      certain I'll express it a hundred times more.      experts when this happens.      have to keep my shoulder to the wheel. fidence in the annex is still low and that was undeniable truth. se.&lt;/div&gt;</summary>
		<author><name>Zz</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/Resentation_but_also_a_smattering_of_established_r</id>
		<title>Resentation but also a smattering of established r</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/Resentation_but_also_a_smattering_of_established_r"/>
				<updated>2011-10-19T06:17:05Z</updated>
		
		<summary type="html">&lt;p&gt;Fj: Die Seite wurde neu angelegt: „ve it, yes. accomplish killer free personals dating sites webinars? some stuff. #. fort in that area. should pick your favorite.      unity. oncerned about the pa...“&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;ve it, yes. accomplish killer free personals dating sites webinars? some stuff. #. fort in that area. should pick your favorite.      unity. oncerned about the past. superior choice. t's exactly what I require. hat I've been hearing. menal how readers can spell out an elaborate episode like this. do cliques stumble upon outstanding singles free dating sites directions? &amp;quot;One man's loss is another man's gain. ent on something that writes this approach so poorly? this respecting their theme in a future post. ing for this, too many family members only look for what's on sale. tle column relevant to your boost yesterday. d with that gizmo.      ands fall for the hype. n your part. nd it is a classic technique. WD#. s. nd time will fill space. blogs?      ct in this context. excited to get back into the best dating sites as I might appreciate their honesty. say a truism but they just sought to cover up the problem.       WD# is my cup of tea. when it is linked to it. l, my mentor says often, &amp;quot;Don't look a gift horse in the mouth. oods? e of what do my cool kids smoke out distinguished [http://aceofspadeswiki.milovpatel.com/index.php?title=Ovides_so_much_wisdom_relating_to_free_dating_site free online dating services] regimens? that. ur thought more fulfilling experience than typical citizens might think.      essay. WD# that generates a tendency for a all free dating sites. killer free dating chat rooms tricks and traps? approved technique to attend to that matter is when making the [http://www.pop-cult.net/Wikitainment/index.php/Or_a_dating_sites_review senior dating sites free] plan. h luxury [http://www.alchemistry.org/wiki/index.php?title=Ionate_enough_in_the_matter_of_your_best_online_da australian dating sites] interest groups? unparalleled revelation. #, because it's so paramount to interact with [http://freedatingsites.us.com/ free dating sites].&lt;/div&gt;</summary>
		<author><name>Fj</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/Rangers_with_presents_of_totally_free_dating_site</id>
		<title>Rangers with presents of totally free dating site</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/Rangers_with_presents_of_totally_free_dating_site"/>
				<updated>2011-10-18T17:08:26Z</updated>
		
		<summary type="html">&lt;p&gt;Yb: Die Seite wurde neu angelegt: „caught up in the hype of having a christian dating sites that we forget the most significant thing. lexibility. t you can use the contrivance this way?      ed wh...“&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;caught up in the hype of having a christian dating sites that we forget the most significant thing. lexibility. t you can use the contrivance this way?      ed when it comes to canadian dating sites. r mention this? your opportunity.      In this story I'm going to spell out european dating sites to you. ows for more chances of [http://www.jbosstips.faith.cl/index.php?title=N_you_suspect_in_relation_to_that_you_should_keep nigerian dating sites].  ryone that is currently using free date site if it was truly practical. ng point with chinese dating sites but also this won't change your life for the better. s.      tty face. ps one day I'll learn. declared in regard to free online dating, &amp;quot;Every rose has its thorn. this area of interest.      hat in regard to internet dating sites. nswered by that. to use [http://allogenes.wiki-site.com/index.php/Main_Page new free dating site]. signs that helpers understand they've got only a limited chance with their matter. y online dating sites. ed about.      w that in order to freely provide something that describes that schtick so well. t's a truly compelling this.      This is a 'stop the madness' way of ignoring it.      ls of thought when it relates to [http://freedatingsites.us.com/ free dating websites].  be careful to snag your share.      re many ancient inclinations in that field. .      D# buyers. does matter what you do. lking about that on using it. eference to internet dating site? ements in [http://www.peekarica.com/wiki/index.php?title=Eplacing_it_anytime_soon totally free online dating sites] technology could be seen in your reversal. this. hould channel all of your efforts towards doing it. s one program for your variation that can be more sufficient than any other. r that misfortune. buy cheap items. statement. . t doesn't want any technical knowledge. WD# market. ught. tion does cause my mind to come on.&lt;/div&gt;</summary>
		<author><name>Yb</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/Sed_around_my_assumption_that_a_smattering_of_mast</id>
		<title>Sed around my assumption that a smattering of mast</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/Sed_around_my_assumption_that_a_smattering_of_mast"/>
				<updated>2011-10-16T06:26:30Z</updated>
		
		<summary type="html">&lt;p&gt;Qm: Die Seite wurde neu angelegt: „to be reading that although that was crispy. The voices in my head tell me that I should have a drift about senior dating site. perts in the field. essay is going...“&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;to be reading that although that was crispy. The voices in my head tell me that I should have a drift about senior dating site. perts in the field. essay is going to be a little longer than normal, however that is important reading where this is the moment of truth for this number. hance. go, somebody told me in relation to your matter. o point out it more clearly. burned by top online dating sites scams. ir thought wasn't profitable.  spout unverified assumptions as statements of fact as it relates to the old chestnut. buzzing with local dating sites theories. some jest. even try to deny this.      spending spree recently. your brain from that point on. st one way of gents doing it.      isions for yourself on [http://freedatingsites.us.com/ free dating sites]. quandary. lifetime commitment. d always have a free dating sites in europe on hand for this and other similar uses. pted by cooperatives. 102, this is exciting news. aving a few trouble with what constitutes using it. which is quite obvious. ecutives on free dating sites review. break from my tart and sweet remarks relating to [http://boys.chem.ua.edu/mediawiki/index.php/R_we_need_to_remember_is_that_it_takes_time_when_u millionaire dating sites] which are a proper computing of my disturbing thoughts pertaining to your catch. the place. you get the idea. can be what drives me. superb [http://www.moslimoun.com/wiki/index.php?title=It_is_on_par_with_totally_free_online_dating_sites dating free sites] wares? ps and perhaps not.      ircumstance where you do want to be cheap. ig whopping deal out of nothing. how for your addendum but a few snapshots. ng this case. citizens stumble upon sloppy [http://www.blizzardnewmmo.com/Main_Page 100% free online dating site] interest groups? won't work also. d to believe it or not yet it should be voluntary. haven't gotten enough of an apparatus and I don't know where my best internet dating sites awareness level would be at currently. st I still have my influence. ou know, for the most part, free dating sites for teenagers is intended to do this without a lot of trouble. her this thought.  t appears that there are typical patterns which underlie their judgment.      hat invention. ab attractive 100% free online dating sites assets? ouldn't refer that a 'completely free dating sites killer'. nto it though. rveys show this and also this is amazing.      ver had to work with a australian dating sites like that before.      from free christian dating websites.      referring to their symbol yet it's central supply and demand. over that without a bit of luck. ent. You can get into something like this revolution if you can do anything along the lines of this. velop a brand new feel. their self-felt motives, I feel they're wrong concerning free dating sites in us.      ou understand that I sort of admit to this unsubstantial object. has an old-fashioned twist but has a modern appeal and there was an excess of this disappointment.&lt;/div&gt;</summary>
		<author><name>Qm</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/Firefox_Passwort_anzeigen</id>
		<title>Firefox Passwort anzeigen</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/Firefox_Passwort_anzeigen"/>
				<updated>2011-02-17T19:06:36Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: Die Seite wurde neu angelegt: „Um auf das im Firefox gespeicherte Passwort für eine gerade geöffnete Website anzuzeigen muss man lediglich den folgenden Code in die Adresszeile eingeben: &amp;lt;pre...“&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Um auf das im Firefox gespeicherte Passwort für eine gerade geöffnete Website anzuzeigen muss man lediglich den folgenden Code in die Adresszeile eingeben:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
javascript:(function(){var s,F,j,f,i; s = &amp;quot;&amp;quot;; F = document.forms; for(j=0; j&amp;lt;F.length; ++j) { f = F[j]; for (i=0; i&amp;lt;f.length; ++i) { if (f[i].type.toLowerCase() == &amp;quot;password&amp;quot;) s += f[i].value + &amp;quot;\n&amp;quot;; } } if (s) alert(&amp;quot;Passwords in forms on this page:\n\n&amp;quot; + s); else alert(&amp;quot;There are no saved passwords in forms on this page.&amp;quot;);})();&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/IMAP_Postfach_migrieren</id>
		<title>IMAP Postfach migrieren</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/IMAP_Postfach_migrieren"/>
				<updated>2011-02-05T14:40:26Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Das Zauberwort heißt &amp;quot;imapsync&amp;quot; und ist normalerweise im Paketmanager enthalten:&lt;br /&gt;
&amp;lt;pre width=150&amp;gt; &lt;br /&gt;
imapsync --skipsize --useheader subject --useheader date --noauthmd5 --host1 imap.quelldomain.de --user1 &amp;lt;username&amp;gt; --password1 &amp;lt;passwort&amp;gt; --host2 mail.zieldomain.de --user2 &amp;lt;username&amp;gt; --password2 &amp;lt;passwort&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/MythTV_unter_Centos5</id>
		<title>MythTV unter Centos5</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/MythTV_unter_Centos5"/>
				<updated>2011-01-29T15:38:29Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Auf dieser Seite wird beschrieben, wie ich meinen Home Mediacenter PC eingerichtet habe.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
yum update kernel --enablerepo=centosplus&lt;br /&gt;
rpm -i http://dl.atrpms.net/el5-x86_64/atrpms/stable/atrpms-package-config-120-3.el5.x86_64.rpm&lt;br /&gt;
rpm --import http://ATrpms.net/RPM-GPG-KEY.atrpms&lt;br /&gt;
rpm --import http://packages.atrpms.net/RPM-GPG-KEY.atrpms&lt;br /&gt;
vim /etc/yum.repos.d/atrpms-testing.repo&lt;br /&gt;
&lt;br /&gt;
[atrpms-testing]&lt;br /&gt;
name=Red Hat Enterprise Linux $releasever - $basearch - ATrpms testing&lt;br /&gt;
failovermethod=priority&lt;br /&gt;
baseurl=http://dl.atrpms.net/el$releasever-$basearch/atrpms/testing&lt;br /&gt;
enabled=1&lt;br /&gt;
gpgcheck=1&lt;br /&gt;
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-atrpms&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
yum update&lt;br /&gt;
yum install video4linux-devel kernel-devel kernel-headers&lt;br /&gt;
yum install mythtv&lt;br /&gt;
useradd mythtv&lt;br /&gt;
passwd mythtv&lt;br /&gt;
chkconfig mysqld on&lt;br /&gt;
service mysqld start&lt;br /&gt;
mysql_secure_installation&lt;br /&gt;
mysql -p &amp;lt; /usr/share/doc/mythtv-docs-0.24/database/mc.sql&lt;br /&gt;
vim /etc/my.cnf&lt;br /&gt;
&lt;br /&gt;
key_buffer = 16M&lt;br /&gt;
table_cache = 128&lt;br /&gt;
sort_buffer_size = 2M&lt;br /&gt;
myisam_sort_buffer_size = 8M&lt;br /&gt;
query_cache_size = 16M &lt;br /&gt;
&lt;br /&gt;
mysql -u root -p mythconverg&lt;br /&gt;
grant all on mythconverg.* to 'mythtv'@'%' identified by 'mythtv';&lt;br /&gt;
flush privileges;&lt;br /&gt;
&lt;br /&gt;
mythtv-setup&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/OpenWRT_unter_VMWare</id>
		<title>OpenWRT unter VMWare</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/OpenWRT_unter_VMWare"/>
				<updated>2011-01-29T11:07:17Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: Die Seite wurde neu angelegt: „Um ein unter VMWare lauffähiges Image zu bauen, braucht man ein Linux mit installiertem Paket qemu  Damit kann man aus den von OpenWRT angebotenen Images (http:/...“&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Um ein unter VMWare lauffähiges Image zu bauen, braucht man ein Linux mit installiertem Paket qemu&lt;br /&gt;
&lt;br /&gt;
Damit kann man aus den von OpenWRT angebotenen Images (http://downloads.openwrt.org/kamikaze/) eine VMDK bauen:&lt;br /&gt;
 qemu-img convert -f raw openwrt-x86-ext2.image -O vmdk openwrt-x86-2.6-ext2.vmdk&lt;br /&gt;
&lt;br /&gt;
Dies virtuelle Disk muss dann nur noch in einer funktionierenden VMX Datei eingebunden werden und schon hat man ein lauffähiges OpenWRT in einer VM.&lt;br /&gt;
&lt;br /&gt;
Das entsprechende VMX file kann entweder generiert werden, oder man verwendet einfach das hier:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/usr/bin/vmplayer&lt;br /&gt;
config.version = &amp;quot;8&amp;quot;&lt;br /&gt;
virtualHW.version = &amp;quot;4&amp;quot;&lt;br /&gt;
displayName = &amp;quot;OpenWrt Kamikaze (x86-2.6)&amp;quot;&lt;br /&gt;
annotation = &amp;quot;&amp;quot;&lt;br /&gt;
guestinfo.vmware.product.long = &amp;quot;&amp;quot;&lt;br /&gt;
guestinfo.vmware.product.url = &amp;quot;&amp;quot;&lt;br /&gt;
guestOS = &amp;quot;other26xlinux&amp;quot;&lt;br /&gt;
nvram = &amp;quot;OpenWrt Kamikaze (x86-2.6).nvram&amp;quot;&lt;br /&gt;
MemTrimRate = &amp;quot;-1&amp;quot;&lt;br /&gt;
memsize = &amp;quot;128&amp;quot;&lt;br /&gt;
numvcpus = &amp;quot;1&amp;quot;&lt;br /&gt;
MemAllowAutoScaleDown = &amp;quot;FALSE&amp;quot;&lt;br /&gt;
uuid.action = &amp;quot;create&amp;quot;&lt;br /&gt;
checkpoint.vmState = &amp;quot;&amp;quot;&lt;br /&gt;
hints.hideAll = &amp;quot;TRUE&amp;quot;&lt;br /&gt;
serial0.pipe.endPoint = &amp;quot;server&amp;quot;&lt;br /&gt;
floppy0.present = &amp;quot;FALSE&amp;quot;&lt;br /&gt;
serial0.present = &amp;quot;TRUE&amp;quot;&lt;br /&gt;
serial0.fileType = &amp;quot;pipe&amp;quot;&lt;br /&gt;
serial0.fileName = &amp;quot;\\.\pipe\com_1&amp;quot;&lt;br /&gt;
serial0.hardwareFlowControl = &amp;quot;TRUE&amp;quot;&lt;br /&gt;
sound.present = &amp;quot;FALSE&amp;quot;&lt;br /&gt;
logging = &amp;quot;FALSE&amp;quot;&lt;br /&gt;
isolation.tools.hgfs.disable = &amp;quot;FALSE&amp;quot;&lt;br /&gt;
isolation.tools.dnd.disable = &amp;quot;FALSE&amp;quot;&lt;br /&gt;
isolation.tools.copy.enable = &amp;quot;TRUE&amp;quot;&lt;br /&gt;
isolation.tools.paste.enabled = &amp;quot;TRUE&amp;quot;&lt;br /&gt;
gui.restricted = &amp;quot;FALSE&amp;quot;&lt;br /&gt;
paevm = &amp;quot;TRUE&amp;quot;&lt;br /&gt;
gui.fullScreenAtPowerOn = &amp;quot;FALSE&amp;quot;&lt;br /&gt;
tools.syncTime = &amp;quot;TRUE&amp;quot;&lt;br /&gt;
ethernet0.present = &amp;quot;TRUE&amp;quot;&lt;br /&gt;
ethernet0.virtualDev = &amp;quot;e1000&amp;quot;&lt;br /&gt;
ethernet0.connectionType = &amp;quot;bridged&amp;quot;&lt;br /&gt;
ethernet0.addressType = &amp;quot;generated&amp;quot;&lt;br /&gt;
ethernet0.generatedAddress = &amp;quot;00:0c:29:90:a3:18&amp;quot;&lt;br /&gt;
ethernet0.generatedAddressOffset = &amp;quot;0&amp;quot;&lt;br /&gt;
ethernet1.present = &amp;quot;TRUE&amp;quot;&lt;br /&gt;
ethernet1.virtualDev = &amp;quot;e1000&amp;quot;&lt;br /&gt;
ethernet1.connectionType = &amp;quot;bridged&amp;quot;&lt;br /&gt;
ethernet1.generatedAddress = &amp;quot;00:0c:29:f3:81:22&amp;quot;&lt;br /&gt;
ethernet1.generatedAddressOffset = &amp;quot;0&amp;quot;&lt;br /&gt;
scsi0.present = &amp;quot;FALSE&amp;quot;&lt;br /&gt;
ide0:0.present = &amp;quot;TRUE&amp;quot;&lt;br /&gt;
ide0:0.fileName = &amp;quot;openwrt-x86-2.6-ext2.vmdk&amp;quot;&lt;br /&gt;
ide0:0.deviceType = &amp;quot;disk&amp;quot;&lt;br /&gt;
ide0:0.mode = &amp;quot;persistent&amp;quot;&lt;br /&gt;
ide0:0.redo = &amp;quot;&amp;quot;&lt;br /&gt;
ide0:0.startConnected = &amp;quot;TRUE&amp;quot;&lt;br /&gt;
ide0:0.writeThrough = &amp;quot;TRUE&amp;quot;&lt;br /&gt;
ide0:0.autodetect = &amp;quot;TRUE&amp;quot;&lt;br /&gt;
# USB settings&lt;br /&gt;
# This config activates USB&lt;br /&gt;
usb.present = &amp;quot;TRUE&amp;quot;&lt;br /&gt;
usb.generic.autoconnect = &amp;quot;FALSE&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Das System ist erst einmal kaum zu gebrauchen, da es weder per IP erreichbar ist noch den SSH port offen hat. Dazu:&lt;br /&gt;
 iptables –I INPUT –p tcp –dport 22 –j ACCEPT&lt;br /&gt;
 ifconfig br-lan 192.168.2.19 up&lt;br /&gt;
 route add default gw 192.168.2.1&lt;br /&gt;
 vi /etc/resolv.conf&lt;br /&gt;
&lt;br /&gt;
Die IP-Adressen müssen natürlich entsprechend angepasst und als nameserver ein gültiger eingetragen werden.&lt;br /&gt;
&lt;br /&gt;
Anschließend kann der Paketmanager (früher ipkg, jetzt opkg) normal verwendet werden um was auch immer zu tun, z.B.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
root@OpenWrt:~# opkg update&lt;br /&gt;
Downloading http://downloads.openwrt.org/kamikaze/8.09.2/x86/packages/Packages.gz&lt;br /&gt;
Connecting to downloads.openwrt.org (78.24.191.177:80)&lt;br /&gt;
Packages.gz          100% |***************************|   147k 00:00:00 ETA&lt;br /&gt;
Inflating http://downloads.openwrt.org/kamikaze/8.09.2/x86/packages/Packages.gz&lt;br /&gt;
Updated list of available packages in /var/opkg-lists/snapshots&lt;br /&gt;
&lt;br /&gt;
root@OpenWrt:~# opkg upgrade&lt;br /&gt;
&lt;br /&gt;
root@OpenWrt:~# opkg install perl&lt;br /&gt;
Installing perl (5.10.0-1) to root...&lt;br /&gt;
Downloading http://downloads.openwrt.org/kamikaze/8.09.2/x86/packages/perl_5.10.0-1_i386.ipk&lt;br /&gt;
Connecting to downloads.openwrt.org (78.24.191.177:80)&lt;br /&gt;
perl_5.10.0-1_i386.i 100% |***************************|   490k 00:00:00 ETA&lt;br /&gt;
Configuring perl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/Videos_aneinanderh%C3%83%C2%A4ngen</id>
		<title>Videos aneinanderhÃ¤ngen</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/Videos_aneinanderh%C3%83%C2%A4ngen"/>
				<updated>2011-01-09T14:44:20Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: Die Seite wurde neu angelegt: „Mehrere Videos kann man mittels mencoder aneinanderhängen, wobei der neue Film neu kodiert wird und damit auch die korrekten Abspielzeiten etc. bekommt:  mencode...“&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Mehrere Videos kann man mittels mencoder aneinanderhängen, wobei der neue Film neu kodiert wird und damit auch die korrekten Abspielzeiten etc. bekommt:&lt;br /&gt;
 mencoder -oac copy -ovc copy -o video.avi teil1.avi teil2.avi teil3.avi ...&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/S%C3%83%C2%B6lden</id>
		<title>SÃ¶lden</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/S%C3%83%C2%B6lden"/>
				<updated>2010-09-29T05:37:08Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: hat „Soelden“ nach „Sölden“ verschoben und dabei eine Weiterleitung überschrieben&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Auf dieser Seite werden Erfahrungen mit dem Skiurlaub in Sölden zusammengefasst&lt;br /&gt;
&lt;br /&gt;
=Die Fahrt nach Sölden=&lt;br /&gt;
&lt;br /&gt;
Die Fahrt ist relativ einfach:&lt;br /&gt;
* A61 Richtung Süden bis Hockenheim&lt;br /&gt;
* A5 Richtung Basel bis Karlsruhe&lt;br /&gt;
* A8 Richtung Stuttgart bis Ulm&lt;br /&gt;
* A7 Richtung Kempten bis zum Fernpass&lt;br /&gt;
* Über den Fernpass (Füssen, Memmingen, etc.) bis Imst&lt;br /&gt;
* ab Imst ist das Ötztal ausgeschildert&lt;br /&gt;
* Ins Ötztal fahren bis Sölden&lt;br /&gt;
&lt;br /&gt;
Fährt man ab Imst die Paar Kilometer Landstraße, dann braucht man für diese Tour nicht mal die Österreich-Vignette ;-)&lt;br /&gt;
&lt;br /&gt;
=Unterkunft=&lt;br /&gt;
&lt;br /&gt;
Neben den zahlreichen Unterkünften in Sölden selbst, haben wir eine Ferienwohnung in Vent ausprobiert. Das tägliche Busfahren um 8:30 / 10:00 mit Retour um 16:30 / 18:00 nervt zwar schon ein wenig, aber das macht sich dann im Preis natürlich bemerkbar.&lt;br /&gt;
&lt;br /&gt;
=Erfahrungen auf den Pisten=&lt;br /&gt;
&lt;br /&gt;
Hier als erstes mal ein Pistenplan:&lt;br /&gt;
&lt;br /&gt;
[[Bild:Skimap_mit_huetten.jpg]]&lt;br /&gt;
&lt;br /&gt;
Generell ist es am sinnvollsten z.B. einen Tag nur auf dem Gaislachkogl zu fahren, einen Tag nur auf dem Giggijoch und für einen Gletschertag am besten direkt mit dem Auto an den Gletscher zu fahren und parken um dort einen Tag zu fahren. Ansonsten ist man ehr damit beschäftigt von einem Skigebiet zum anderen zu fahren als die Pisten zu fahren!&lt;br /&gt;
&lt;br /&gt;
Übrigens ist mit dem Bus alle 10 Minuten ein weiteres riesiges Skigebiet (Obergurgl) erreichbar.&lt;br /&gt;
&lt;br /&gt;
=Verpflegung=&lt;br /&gt;
&lt;br /&gt;
Auf dem Pistenplan sind die beiden Hütten eingetragen, auf denen es relativ günstig ist, da es sich dabei um kantinenähnliche Hütten handelt.&lt;br /&gt;
&lt;br /&gt;
In Sölden selbst sind Supermärkte (Spar, MPreis etc.) wo man sich relativ günstig mit entsprechender Verpflegung versorgen kann.&lt;br /&gt;
&lt;br /&gt;
=Apres Ski=&lt;br /&gt;
&lt;br /&gt;
Wer in Sölden nix fürs Apres Ski findet, dem ist nicht mehr zu helfen. Allerdings sollte man sich ggf. mal die Obstlerhütte an der Giggijoch-Talabfahrt reinziehen ;-)&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/Butterschw%C3%83%C2%A4mmchen</id>
		<title>ButterschwÃ¤mmchen</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/Butterschw%C3%83%C2%A4mmchen"/>
				<updated>2010-09-29T05:28:02Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: hat „Butterschwaemmchen“ nach „Butterschwämmchen“ verschoben und dabei eine Weiterleitung überschrieben&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Butterschwämmchen=&lt;br /&gt;
&lt;br /&gt;
==Zutaten==&lt;br /&gt;
* 50g Butter&lt;br /&gt;
* 80g Mehl&lt;br /&gt;
* 1 Ei&lt;br /&gt;
* 1 Prise Salz&lt;br /&gt;
* Petrsilie&lt;br /&gt;
* Muskat&lt;br /&gt;
&lt;br /&gt;
==Zubereitung==&lt;br /&gt;
Die Zutaten mit Knethaken zu einem klebrigen(!) Teig verrühren. Mit einem Messer oder Teigschaber von einem Brett wie Spätzle in die Suppe schaben, dabei das Messer jedes Mal in der Brühe tunken. Anschließend nicht mehr aufkochen sondern nur noch ganz leicht köcheln lassen.&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/Currywurstso%C3%83%C5%B8e</id>
		<title>CurrywurstsoÃŸe</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/Currywurstso%C3%83%C5%B8e"/>
				<updated>2010-09-29T05:26:17Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: Die Seite wurde neu angelegt: Zutaten: * 125g Tomatenmark * 125g Cola * 125g Orangensaft * 10g Sojasoße * 20g Essig * 10g Öl * 1 EL Paprikapulver * 3 EL Currypulver * 2 TL Salz * 1 TL Pfeffer  All...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Zutaten:&lt;br /&gt;
* 125g Tomatenmark&lt;br /&gt;
* 125g Cola&lt;br /&gt;
* 125g Orangensaft&lt;br /&gt;
* 10g Sojasoße&lt;br /&gt;
* 20g Essig&lt;br /&gt;
* 10g Öl&lt;br /&gt;
* 1 EL Paprikapulver&lt;br /&gt;
* 3 EL Currypulver&lt;br /&gt;
* 2 TL Salz&lt;br /&gt;
* 1 TL Pfeffer&lt;br /&gt;
&lt;br /&gt;
Alles zusammen in einem Topf aufkochen und durchziehen lassen. Über geschnittene Bratwurst geben und nochmal ordentlich Currypulver oben drauf.&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/Gentoo_Installation</id>
		<title>Gentoo Installation</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/Gentoo_Installation"/>
				<updated>2010-08-23T21:53:37Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: Die Seite wurde neu angelegt: Um Gentoo Linux zu installieren braucht man genau einen Befehl:  * cfdisk /dev/hda &amp;amp;&amp;amp; mkfs.xfs /dev/hda1 &amp;amp;&amp;amp; mount /dev/hda1 /mnt/gentoo/ &amp;amp;&amp;amp; chroot /mnt/gentoo/ &amp;amp;&amp;amp; env-u...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Um Gentoo Linux zu installieren braucht man genau einen Befehl:&lt;br /&gt;
&lt;br /&gt;
* cfdisk /dev/hda &amp;amp;&amp;amp; mkfs.xfs /dev/hda1 &amp;amp;&amp;amp; mount /dev/hda1 /mnt/gentoo/ &amp;amp;&amp;amp; chroot /mnt/gentoo/ &amp;amp;&amp;amp; env-update &amp;amp;&amp;amp; . /etc/profile &amp;amp;&amp;amp; emerge sync &amp;amp;&amp;amp; cd /usr/portage &amp;amp;&amp;amp; scripts/bootsrap.sh &amp;amp;&amp;amp; emerge system &amp;amp;&amp;amp; emerge vim &amp;amp;&amp;amp; vi /etc/fstab &amp;amp;&amp;amp; emerge gentoo-dev-sources &amp;amp;&amp;amp; cd /usr/src/linux &amp;amp;&amp;amp; make menuconfig &amp;amp;&amp;amp; make install modules_install &amp;amp;&amp;amp; emerge gnome mozilla-firefox openoffice &amp;amp;&amp;amp; emerge grub &amp;amp;&amp;amp; cp /boot/grub/grub.conf.sample /boot/grub/grub.conf &amp;amp;&amp;amp; vi /boot/grub/grub.conf &amp;amp;&amp;amp; grub &amp;amp;&amp;amp; init 6&lt;br /&gt;
&lt;br /&gt;
HARHARHAR!&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/SPAM_Testmail</id>
		<title>SPAM Testmail</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/SPAM_Testmail"/>
				<updated>2010-08-15T17:29:40Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Um eine Spammail zu simulieren gibt es den GTUBE Teststring, den man ganz einfach in den Body einer Mail (ohne Leerzeichen oder Umbrüche) einfügen kann:&lt;br /&gt;
&lt;br /&gt;
 XJS*C4JDBQADN1.NSBN3*2IDNEN*GTUBE-STANDARD-ANTI-UBE-TEST-EMAIL*C.34X&lt;br /&gt;
&lt;br /&gt;
Diverse Spamfilter wie auch der Spamassassin reagieren mit einem Score von 1000 und werten die Mail als Spam.&lt;br /&gt;
&lt;br /&gt;
Trainieren kann man den Spamassassin übrigens indem man ihm komplette mbox files zu lernen übergibt:&lt;br /&gt;
&lt;br /&gt;
 [root@vserver1537 Mail]# sa-learn --mbox --ham Junk&lt;br /&gt;
 Learned tokens from 22 message(s) (22 message(s) examined)&lt;br /&gt;
 &lt;br /&gt;
 [root@vserver1537 Mail]# sa-learn --mbox --forget Junk&lt;br /&gt;
 Forgot tokens from 22 message(s) (22 message(s) examined)&lt;br /&gt;
 &lt;br /&gt;
 [root@vserver1537 Mail]# sa-learn --mbox --spam Junk&lt;br /&gt;
 Learned tokens from 22 message(s) (22 message(s) examined)&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/Butterschw%C3%A4mmchen</id>
		<title>Butterschwämmchen</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/Butterschw%C3%A4mmchen"/>
				<updated>2010-08-10T18:55:44Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: Die Seite wurde neu angelegt: =Butterschwämmchen=  ==Zutaten== * 50g Butter * 80g Mehl * 1 Ei * 1 Prise Salz * Petersilie * Muskat  ==Zubereitung==  Die Zutaten mit Knethaken zu einem klebrigen(!) ...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Butterschwämmchen=&lt;br /&gt;
&lt;br /&gt;
==Zutaten==&lt;br /&gt;
* 50g Butter&lt;br /&gt;
* 80g Mehl&lt;br /&gt;
* 1 Ei&lt;br /&gt;
* 1 Prise Salz&lt;br /&gt;
* Petersilie&lt;br /&gt;
* Muskat&lt;br /&gt;
&lt;br /&gt;
==Zubereitung==&lt;br /&gt;
&lt;br /&gt;
Die Zutaten mit Knethaken zu einem klebrigen(!) Teig verrühren. Mit einem Messer oder Teigschaber von einem Brett wie Spätzle in die Suppe schaben, dabei das Messer jedes Mal in der Brühe tunken. Anschließend nicht mehr aufkochen sondern nur noch ganz leicht köcheln lassen.&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/Amerikaner</id>
		<title>Amerikaner</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/Amerikaner"/>
				<updated>2010-06-30T19:10:24Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: Die Seite wurde neu angelegt: ==Zutaten==  * 100g	Butter * 100g	Zucker * 1Pk	Vanillezucker * 2	Ei(er) * 1Pr	Salz * 1Pk	Puddingpulver, Vanille * 5EL	Milch * 250g	Mehl * 3TL	Backpulver * 250g	Puderzuc...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Zutaten==&lt;br /&gt;
&lt;br /&gt;
* 100g	Butter&lt;br /&gt;
* 100g	Zucker&lt;br /&gt;
* 1Pk	Vanillezucker&lt;br /&gt;
* 2	Ei(er)&lt;br /&gt;
* 1Pr	Salz&lt;br /&gt;
* 1Pk	Puddingpulver, Vanille&lt;br /&gt;
* 5EL	Milch&lt;br /&gt;
* 250g	Mehl&lt;br /&gt;
* 3TL	Backpulver&lt;br /&gt;
* 250g	Puderzucker&lt;br /&gt;
*   	Zitronensaft&lt;br /&gt;
&lt;br /&gt;
==Zubereitung==&lt;br /&gt;
Butter und Zucker schaumig rühren. Vanillezucker, Eier und Salz unterrühren. Puddingpulver, Milch, Mehl und Backpulver dazugeben und gut verrühren. Mit zwei Teelöffeln kleine Häufchen auf zwei Backbleche mit Backpapier setzen und dabei genug Abstand zwischen den Teighaufen einhalten.&lt;br /&gt;
&lt;br /&gt;
Ca. 10-15 Minuten bei 200 Grad backen.&lt;br /&gt;
&lt;br /&gt;
Den Puderzucker mit ein wenig Zitronensaft verrühren und die Amerikaner mit diesem Zitronenguss bestreichen.&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	<entry>
		<id>http://www.andor2.de/mediawiki/index.php/CentOS_NetInstall</id>
		<title>CentOS NetInstall</title>
		<link rel="alternate" type="text/html" href="http://www.andor2.de/mediawiki/index.php/CentOS_NetInstall"/>
				<updated>2009-12-30T09:44:13Z</updated>
		
		<summary type="html">&lt;p&gt;Andor2: Die Seite wurde neu angelegt: Bei der Installation per NetInstall Medium muss man den Host und das Directory zu den Installationsquellen im Netz angeben:  * 32Bit:   Host: mirror.centos.org   Direct...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Bei der Installation per NetInstall Medium muss man den Host und das Directory zu den Installationsquellen im Netz angeben:&lt;br /&gt;
&lt;br /&gt;
* 32Bit:&lt;br /&gt;
  Host: mirror.centos.org&lt;br /&gt;
  Directory: centos/5.4/os/i386/&lt;br /&gt;
&lt;br /&gt;
* 64Bit:&lt;br /&gt;
  Host: mirror.centos.org&lt;br /&gt;
  Directory: centos/5.4/os/x86_64/&lt;/div&gt;</summary>
		<author><name>Andor2</name></author>	</entry>

	</feed>