<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>blog.cnlpete.de &#187; 10.04</title>
	<atom:link href="http://blog.cnlpete.de/tag/10-04/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.cnlpete.de</link>
	<description>Linux - Server - Ubuntu</description>
	<lastBuildDate>Thu, 28 Jul 2011 15:47:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Thinkpad Ubuntu 10.04/10.10 Middle Mouse Scrolling</title>
		<link>http://blog.cnlpete.de/2010/10/thinkpad-ubuntu-10-0410-10-middle-mouse-scrolling/</link>
		<comments>http://blog.cnlpete.de/2010/10/thinkpad-ubuntu-10-0410-10-middle-mouse-scrolling/#comments</comments>
		<pubDate>Tue, 26 Oct 2010 19:51:18 +0000</pubDate>
		<dc:creator>cnlpete</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[10.04]]></category>
		<category><![CDATA[10.10]]></category>
		<category><![CDATA[MiddleMouseScrolling]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[X41t]]></category>

		<guid isPermaLink="false">http://blog.cnlpete.de/?p=385</guid>
		<description><![CDATA[Seit Ubuntu 10.04 nutzt Ubuntu wieder das alte xorg-Konfiguration anstatt der hal/udev Methode. Für uns heißt das, dass wir einfach eine xorg-Konfigurationsdatei in xorg.conf.d schmeißen: Für 10.04: sudo nano /usr/lib/X11/xorg.conf.d/20-thinkpad.conf Für 10.10: sudo nano /usr/share/X11/xorg.conf.d/20-thinkpad.conf und fügen folgenden Inhalt ein: Section "InputClass" Identifier "Trackpoint Wheel Emulation" MatchProduct "TPPS/2 IBM TrackPoint&#124;DualPoint Stick&#124;Synaptics Inc. Composite TouchPad / [...]]]></description>
			<content:encoded><![CDATA[<p>Seit Ubuntu 10.04 nutzt Ubuntu wieder das alte xorg-Konfiguration anstatt der hal/udev Methode. <span id="more-385"></span>Für uns heißt das, dass wir einfach eine xorg-Konfigurationsdatei in xorg.conf.d schmeißen:</p>
<p>Für <strong>10.04</strong>:</p>
<blockquote><p>sudo nano /usr/lib/X11/xorg.conf.d/20-thinkpad.conf</p></blockquote>
<p>Für <strong>10.10</strong>:</p>
<blockquote><p>sudo nano /usr/share/X11/xorg.conf.d/20-thinkpad.conf</p></blockquote>
<p>und fügen folgenden Inhalt ein:</p>
<pre>Section "InputClass"
 Identifier	"Trackpoint Wheel Emulation"
 MatchProduct	"TPPS/2 IBM TrackPoint|DualPoint Stick|Synaptics Inc.  Composite TouchPad / TrackPoint|ThinkPad USB Keyboard with TrackPoint"
 MatchDevicePath	"/dev/input/event*"
 Option		"EmulateWheel"		"true"
 Option		"EmulateWheelButton"	"2"
 Option		"Emulate3Buttons"	"false"
 Option		"XAxisMapping"		"6 7"
 Option		"YAxisMapping"		"4 5"
 Option		"EmulateWheelTimeout"	"200"
 EndSection</pre>
<p>Dann einfach nur noch den X-Server neustarten (durch Neustarten, oder Ab-Anmelden) und voila <img src='http://blog.cnlpete.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Quelle:</p>
<p>http://www.eastwoodzhao.com/thinkpad-middle-button-scroll-ubuntu-linux-10-04-lucid-lynx/</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cnlpete.de/2010/10/thinkpad-ubuntu-10-0410-10-middle-mouse-scrolling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Php und MySQL mit Apache</title>
		<link>http://blog.cnlpete.de/2010/09/php-und-mysql-fur-apache/</link>
		<comments>http://blog.cnlpete.de/2010/09/php-und-mysql-fur-apache/#comments</comments>
		<pubDate>Sun, 19 Sep 2010 22:36:22 +0000</pubDate>
		<dc:creator>cnlpete</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[10.04]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.cnlpete.de/?p=357</guid>
		<description><![CDATA[Ein MySQL-Server ist immer recht sinnvoll zu haben, da viele Programme gerne Daten in Datenbanken verwalten, Php benötigt man für die meisten dynamischen Internetauftritte... Php ist einfach in den Paketquellen verfügbar, insofern reicht ein einfaches sudo apt-get update sudo apt-get install php5-cgi Außerdem ist PEAR nicht schlecht, sofern das nicht schon installiert ist: sudo apt-get [...]]]></description>
			<content:encoded><![CDATA[<p>Ein MySQL-Server ist immer recht sinnvoll zu haben, da viele  Programme gerne Daten in Datenbanken verwalten, Php benötigt man für die  meisten dynamischen Internetauftritte...<span id="more-357"></span></p>
<p>Php ist einfach in den Paketquellen verfügbar, insofern reicht ein einfaches</p>
<blockquote><p>sudo apt-get update<br /> sudo apt-get install php5-cgi</p>
</blockquote>
<p>Außerdem ist PEAR nicht schlecht, sofern das nicht schon installiert ist:</p>
<blockquote><p>sudo apt-get install php-pear</p>
</blockquote>
<p>Also einfach aus den Paketquellen installieren (Die Installation von Apache setze ich mal voraus):</p>
<blockquote><p>sudo apt-get install mysql-server</p>
</blockquote>
<p>Beim installieren wird dann nach einem Password für die root-Datenbank des Servers gefragt.</p>
<p>Für die einfache Verwaltung ist phpmyadmin zu empfehlen:</p>
<blockquote><p>sudo apt-get install phpmyadmin</p>
</blockquote>
<p>Beim Installationsvorgang wird man dann nach dem Webserver gefragt,  für diese wird die Konfiguration dann entsprechend geändert. Unter  anderem gibt es Optionen wie Apache oder Lighttpd, diesen dann einfach  auswählen und fertig.</p>
<p>Nach der Installation phpmyadmin dann unter <a href="http://localhost/phpmyadmin">http://localhost/phpmyadmin</a> erreichbar.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cnlpete.de/2010/09/php-und-mysql-fur-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

