<?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.sonic-lux.net &#187; linux</title>
	<atom:link href="http://blog.sonic-lux.net/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sonic-lux.net</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 14:32:44 +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>Kernel 3.0 Test :)</title>
		<link>http://blog.sonic-lux.net/2011/07/13/kernel-3-0-test/</link>
		<comments>http://blog.sonic-lux.net/2011/07/13/kernel-3-0-test/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 12:53:39 +0000</pubDate>
		<dc:creator>Sonic Lux</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[politik]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.sonic-lux.net/?p=639</guid>
		<description><![CDATA[$ uname -a Linux knuckles 3.0.0-rc7 #1 SMP PREEMPT Wed Jul 13 14:10:27 CEST 2011 x86_64 Intel(R) Xeon(R) CPU W3550 @ 3.07GHz GenuineIntel GNU/Linux Lustig, die 3 ist wirklich mehr als ungewohnt]]></description>
			<content:encoded><![CDATA[<p>$ uname -a<br />
Linux knuckles 3.0.0-rc7 #1 SMP PREEMPT Wed Jul 13 14:10:27 CEST 2011 x86_64 Intel(R) Xeon(R) CPU W3550 @ 3.07GHz GenuineIntel GNU/Linux</p>
<p>Lustig, die 3 ist wirklich mehr als ungewohnt <img src='http://blog.sonic-lux.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sonic-lux.net/2011/07/13/kernel-3-0-test/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Linux: dmesg mit Uhrzeit-Ausgabe</title>
		<link>http://blog.sonic-lux.net/2011/04/08/linux-dmesg-mit-uhrzeit-ausgabe/</link>
		<comments>http://blog.sonic-lux.net/2011/04/08/linux-dmesg-mit-uhrzeit-ausgabe/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 18:47:26 +0000</pubDate>
		<dc:creator>Sonic Lux</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[intern]]></category>
		<category><![CDATA[dmesg]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.sonic-lux.net/?p=588</guid>
		<description><![CDATA[Mich hat es ja schon immer gestoert das man bei Aufruf von dmesg nicht gleich sieht wann irgendwas passiert ist, sondern nur relativ zur uptime der Kiste. Um das zu beheben hab ich heute ein kleines Script bei mir eingebaut. dmesg.pl #!/usr/bin/perl &#160; use strict; use warnings; &#160; my @dmesg_new = &#40;&#41;; my $dmesg = [...]]]></description>
			<content:encoded><![CDATA[<p>Mich hat es ja schon immer gestoert das man bei Aufruf von dmesg nicht gleich sieht wann irgendwas passiert ist, sondern nur relativ zur uptime der Kiste.</p>
<p>Um das zu beheben hab ich heute ein kleines Script bei mir eingebaut.</p>
<p><strong>dmesg.pl</strong></p>

<div class="wp_syntax"><div class="code"><pre class="perl" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/usr/bin/perl</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">use</span> strict<span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">use</span> warnings<span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">@dmesg_new</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$dmesg</span> <span style="color: #339933;">=</span> <span style="color: #ff0000;">&quot;/bin/dmesg&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">@dmesg_old</span> <span style="color: #339933;">=</span> <span style="color: #ff0000;">`$dmesg`</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$now</span> <span style="color: #339933;">=</span> <span style="color: #000066;">time</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$uptime</span> <span style="color: #339933;">=</span> <span style="color: #ff0000;">`cat /proc/uptime | cut -d&quot;.&quot; -f1`</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$t_now</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">$now</span> <span style="color: #339933;">-</span> <span style="color: #0000ff;">$uptime</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">foreach</span> <span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$line</span> <span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">@dmesg_old</span> <span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
        <span style="color: #000066;">chomp</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">$line</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">$line</span> <span style="color: #339933;">=~</span> <span style="color: #009966; font-style: italic;">m/\[\s*(\d+)\.(\d+)\](.*)/i</span> <span style="color: #009900;">&#41;</span>
        <span style="color: #009900;">&#123;</span>
                <span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$t_time</span> <span style="color: #339933;">=</span> <span style="color: #000066;">scalar</span> <span style="color: #000066;">localtime</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">$t_now</span> <span style="color: #339933;">+</span> <span style="color: #0000ff;">$1</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                <span style="color: #000066;">push</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">@dmesg_new</span> <span style="color: #339933;">,</span> <span style="color: #ff0000;">&quot;[ $t_time ] $3&quot;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000066;">print</span> <span style="color: #000066;">join</span><span style="color: #009900;">&#40;</span> <span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">@dmesg_new</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000066;">print</span> <span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Dann das Script noch ausfuehrbar machen und ausfuehren.<br />
Ausgabe sieht z.B. so aus:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">...
<span style="color: #7a0874; font-weight: bold;">&#91;</span> Fri Apr  <span style="color: #000000;">8</span> <span style="color: #000000;">20</span>:04:<span style="color: #000000;">40</span> <span style="color: #000000;">2011</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>  usb <span style="color: #000000;">7</span>-<span style="color: #000000;">1</span>: new full speed USB device using uhci_hcd and address <span style="color: #000000;">2</span>
<span style="color: #7a0874; font-weight: bold;">&#91;</span> Fri Apr  <span style="color: #000000;">8</span> <span style="color: #000000;">20</span>:04:<span style="color: #000000;">40</span> <span style="color: #000000;">2011</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>  usbcore: registered new interface driver usbserial
<span style="color: #7a0874; font-weight: bold;">&#91;</span> Fri Apr  <span style="color: #000000;">8</span> <span style="color: #000000;">20</span>:04:<span style="color: #000000;">40</span> <span style="color: #000000;">2011</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>  USB Serial support registered <span style="color: #000000; font-weight: bold;">for</span> generic
<span style="color: #7a0874; font-weight: bold;">&#91;</span> Fri Apr  <span style="color: #000000;">8</span> <span style="color: #000000;">20</span>:04:<span style="color: #000000;">40</span> <span style="color: #000000;">2011</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>  usbcore: registered new interface driver usbserial_generic
<span style="color: #7a0874; font-weight: bold;">&#91;</span> Fri Apr  <span style="color: #000000;">8</span> <span style="color: #000000;">20</span>:04:<span style="color: #000000;">40</span> <span style="color: #000000;">2011</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>  usbserial: USB Serial Driver core
<span style="color: #7a0874; font-weight: bold;">&#91;</span> Fri Apr  <span style="color: #000000;">8</span> <span style="color: #000000;">20</span>:04:<span style="color: #000000;">40</span> <span style="color: #000000;">2011</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>  USB Serial support registered <span style="color: #000000; font-weight: bold;">for</span> pl2303
<span style="color: #7a0874; font-weight: bold;">&#91;</span> Fri Apr  <span style="color: #000000;">8</span> <span style="color: #000000;">20</span>:04:<span style="color: #000000;">40</span> <span style="color: #000000;">2011</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>  pl2303 <span style="color: #000000;">7</span>-<span style="color: #000000;">1</span>:<span style="color: #000000;">1.0</span>: pl2303 converter detected
<span style="color: #7a0874; font-weight: bold;">&#91;</span> Fri Apr  <span style="color: #000000;">8</span> <span style="color: #000000;">20</span>:04:<span style="color: #000000;">40</span> <span style="color: #000000;">2011</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>  usb <span style="color: #000000;">7</span>-<span style="color: #000000;">1</span>: pl2303 converter now attached to ttyUSB0
<span style="color: #7a0874; font-weight: bold;">&#91;</span> Fri Apr  <span style="color: #000000;">8</span> <span style="color: #000000;">20</span>:04:<span style="color: #000000;">40</span> <span style="color: #000000;">2011</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>  usbcore: registered new interface driver pl2303
<span style="color: #7a0874; font-weight: bold;">&#91;</span> Fri Apr  <span style="color: #000000;">8</span> <span style="color: #000000;">20</span>:04:<span style="color: #000000;">40</span> <span style="color: #000000;">2011</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>  pl2303: Prolific PL2303 USB to serial adaptor driver
<span style="color: #7a0874; font-weight: bold;">&#91;</span> Fri Apr  <span style="color: #000000;">8</span> <span style="color: #000000;">20</span>:<span style="color: #000000;">17</span>:<span style="color: #000000;">50</span> <span style="color: #000000;">2011</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>  usb <span style="color: #000000;">7</span>-<span style="color: #000000;">1</span>: USB disconnect, address <span style="color: #000000;">2</span>
<span style="color: #7a0874; font-weight: bold;">&#91;</span> Fri Apr  <span style="color: #000000;">8</span> <span style="color: #000000;">20</span>:<span style="color: #000000;">17</span>:<span style="color: #000000;">50</span> <span style="color: #000000;">2011</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>  pl2303 ttyUSB0: pl2303 converter now disconnected from ttyUSB0
<span style="color: #7a0874; font-weight: bold;">&#91;</span> Fri Apr  <span style="color: #000000;">8</span> <span style="color: #000000;">20</span>:<span style="color: #000000;">17</span>:<span style="color: #000000;">50</span> <span style="color: #000000;">2011</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>  pl2303 <span style="color: #000000;">7</span>-<span style="color: #000000;">1</span>:<span style="color: #000000;">1.0</span>: device disconnected
...</pre></div></div>

<p>Es empfiehlt sich uebrigens</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000; font-weight: bold;">*</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> Show timing information on printks</pre></div></div>

<p>im kernel zu aktivieren. (Unter Kernel hacking)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sonic-lux.net/2011/04/08/linux-dmesg-mit-uhrzeit-ausgabe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DRBD Online Training</title>
		<link>http://blog.sonic-lux.net/2011/02/26/drbd-online-training/</link>
		<comments>http://blog.sonic-lux.net/2011/02/26/drbd-online-training/#comments</comments>
		<pubDate>Sat, 26 Feb 2011 01:17:23 +0000</pubDate>
		<dc:creator>Sonic Lux</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[drbd]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[privat]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blog.sonic-lux.net/?p=566</guid>
		<description><![CDATA[Beim rumstoebern hab ich ein nettes Video von Linbit ueber High Availability gefunden. Wer noch gar nichts damit zu tun hatte bekommt hier einen kurzen Einblick.]]></description>
			<content:encoded><![CDATA[<p>Beim rumstoebern hab ich ein nettes Video von Linbit ueber High Availability gefunden.</p>
<p>Wer noch gar nichts damit zu tun hatte bekommt hier einen kurzen Einblick.</p>
<p><iframe title="YouTube video player" class="youtube-player" type="text/html" width="425" height="344" src="http://www.youtube.com/embed/WC7zuVj6p2c" frameborder="0" allowFullScreen="true"> </iframe></p>
<p><iframe title="YouTube video player" class="youtube-player" type="text/html" width="425" height="344" src="http://www.youtube.com/embed/40-bG6aHoGU" frameborder="0" allowFullScreen="true"> </iframe></p>
<p><iframe title="YouTube video player" class="youtube-player" type="text/html" width="425" height="344" src="http://www.youtube.com/embed/57Iar9FWwp8" frameborder="0" allowFullScreen="true"> </iframe></p>
<p><iframe title="YouTube video player" class="youtube-player" type="text/html" width="425" height="344" src="http://www.youtube.com/embed/0ZUnCc74RC4" frameborder="0" allowFullScreen="true"> </iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sonic-lux.net/2011/02/26/drbd-online-training/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Software Raid &#8211; Raid5 zu Raid6 reshape</title>
		<link>http://blog.sonic-lux.net/2009/08/30/linux-software-raid-raid5-zu-raid6-reshape/</link>
		<comments>http://blog.sonic-lux.net/2009/08/30/linux-software-raid-raid5-zu-raid6-reshape/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 14:39:10 +0000</pubDate>
		<dc:creator>Sonic Lux</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[privat]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[raid]]></category>
		<category><![CDATA[raid5]]></category>
		<category><![CDATA[raid6]]></category>
		<category><![CDATA[software-raid]]></category>

		<guid isPermaLink="false">http://blog.sonic-lux.net/?p=437</guid>
		<description><![CDATA[Hier eine kleine Software Raid5 zu Raid6 Erfahrung von mir. Dafuer nehmen wir an, wir haben ein Raid5 mit 4 Platten: Software Raid5 unter Linux mit 4 Platten. Angelegt mittels: mdadm --create /dev/md0 --level=5 --raid-devices=4 /dev/sda1 /dev/sdb1 /dev/sdc1 /dev/sdd1 Jetzt werde ich zwei Varianten ansprechen: einmal die Vergroesserung eines raid5 um eine Platte und danach [...]]]></description>
			<content:encoded><![CDATA[<p>Hier eine kleine Software Raid5 zu Raid6 Erfahrung von mir. Dafuer nehmen wir an, wir haben ein Raid5 mit 4 Platten:</p>
<p><strong>Software Raid5 unter Linux mit 4 Platten</strong>. Angelegt mittels:</p>
<blockquote>
<pre>mdadm --create /dev/md0 --level=5 --raid-devices=4 /dev/sda1 /dev/sdb1 /dev/sdc1 /dev/sdd1</pre>
</blockquote>
<p>Jetzt werde ich zwei Varianten ansprechen: einmal die Vergroesserung eines raid5 um eine Platte und danach die Umstellung auf Raid6 (dazu wird dann die 2. neue Platte bzw. die 6. Platte eingebunden)</p>
<p><strong>Erweiterung des Raid5</strong> (neue Platte=/dev/sde)</p>
<p>Formatieren der Festplatte und Typ auf Linux Raid Autodetect (fd) wie bekannt.</p>
<p>Neue Festplatte hinzufuegen:</p>
<blockquote>
<pre>mdadm --add /dev/md0 /dev/sde1</pre>
</blockquote>
<p>Raid5 erweitern:</p>
<blockquote>
<pre>mdadm --grow /dev/md0 --raid-devices=5</pre>
</blockquote>
<p>Dateisystem je nach Dateisystem vergroessern &#8230; xfs_growfs etc &#8230;</p>
<p><strong>Umwandlung von Raid5 zu Raid6</strong> (neue Platte=/dev/sdf)</p>
<p>Seit Kernel 2.6.30 kann man Raid5 in Raid6 Umwandeln ohne groesseren Aufwand. Aktuell kann es mdadm noch nicht automatisiert, so dass man noch selbst Hand anlegen muss. Ab Version 3.1 soll mdadm das auch beherschen mittels der &#8211;grow Option.</p>
<p>Als erstes fuegen wir wieder die neue (partitionierte) Platte hinzu:</p>
<blockquote>
<pre>mdadm --add /dev/md0 /dev/sdf1</pre>
</blockquote>
<p>Dann erzwingen wir das neue Raid Level durch Aenderung des Raid Levels durch das /sys filesystems:</p>
<blockquote>
<pre>echo raid6 &gt; /sys/block/md0/md/level</pre>
</blockquote>
<p>Direkt darauf beginnt die Umwandlung in Raid6 und die Erzeugung der der Q-Blocks.</p>
<p><strong>Weitere Infos:</strong></p>
<p>Wer mehr ueber Raid6 lesen will der kann die 2 Papers lesen:</p>
<p><a href="http://blog.sonic-lux.net/wp-content/uploads/2009/08/raid6.pdf">The mathematics of RAID-6</a> (H. Peter Anvin)</p>
<p><a href="http://blog.sonic-lux.net/wp-content/uploads/2009/08/raid6_2.pdf">Intelligent RAID 6 Theory</a> (Intel)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sonic-lux.net/2009/08/30/linux-software-raid-raid5-zu-raid6-reshape/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dell D620 Sound Problem (Linux)</title>
		<link>http://blog.sonic-lux.net/2009/06/29/dell-d620-sound-problem-linux/</link>
		<comments>http://blog.sonic-lux.net/2009/06/29/dell-d620-sound-problem-linux/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 09:31:32 +0000</pubDate>
		<dc:creator>Sonic Lux</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[privat]]></category>
		<category><![CDATA[bugfix]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sound]]></category>

		<guid isPermaLink="false">http://blog.sonic-lux.net/?p=277</guid>
		<description><![CDATA[So, ich hatte seit dem letzten Kernel Update auf 2.6.28 ein kleines Problem mit dem Sound. Und zwar kam trotz das ich den Kopfhoerer eingesteckt hatte weiterhin Sound aus dem eingebauten Lautsprecher. Dies ist ultra nervig, vor allem auf Arbeit Ich dachte erst es sei eine Mixer Einstellung von ALSA, aber es lag dann doch [...]]]></description>
			<content:encoded><![CDATA[<p>So, ich hatte seit dem letzten Kernel Update auf 2.6.28 ein kleines Problem mit dem Sound. Und zwar kam trotz das ich den Kopfhoerer eingesteckt hatte weiterhin Sound aus dem eingebauten Lautsprecher. Dies ist ultra nervig, vor allem auf Arbeit <img src='http://blog.sonic-lux.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Ich dachte erst es sei eine Mixer Einstellung von ALSA, aber es lag dann doch an einem Kernel Modul, bei welchem man speziell das model angeben musste.</p>
<p>Fuer den Dell D620 das intel-hda Modul auswaehlen und die Hardware</p>
<blockquote><p>&#8212; Intel HD Audio<br />
[*]   Build IDT/Sigmatel HD-audio codec support</p></blockquote>
<p>Und dann trage in der Datei <strong>/etc/modprobe.d/alsa</strong> folgendes hinzu:</p>
<blockquote><p><strong>options snd-hda-intel model=dell-m22</strong></p></blockquote>
<p>Für andere Modelle schaut einfach in der ALSA Dokumentation nach dem model, welches ihr angeben muesst:</p>
<p><a href="http://git.alsa-project.org/?p=alsa-kmirror.git;a=blob;f=Documentation/ALSA-Configuration.txt;h=e0e54a27fc10905a62bd649605ad2dbe8f8bfdbf;hb=ba283e5ded21f6585b1f15254d6b4df94638eac2" target="_blank">http://git.alsa-project.org/?p=alsa-kmirror.git;a=blob;f=Documentation/ALSA-Configuration.txt;h=e0e54a27fc10905a62bd649605ad2dbe8f8bfdbf;hb=ba283e5ded21f6585b1f15254d6b4df94638eac2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sonic-lux.net/2009/06/29/dell-d620-sound-problem-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mplayer + ffmpeg-mt</title>
		<link>http://blog.sonic-lux.net/2009/05/03/mplayer-ffmpeg-mt/</link>
		<comments>http://blog.sonic-lux.net/2009/05/03/mplayer-ffmpeg-mt/#comments</comments>
		<pubDate>Sun, 03 May 2009 09:45:02 +0000</pubDate>
		<dc:creator>Sonic Lux</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[h264]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.sonic-lux.net/?p=244</guid>
		<description><![CDATA[Heute bin ich auf ein Projekt gestossen was mich spontan sehr interessierte: ffmpeg-mt ffmpeg-mt ist Projekt, was auf dem Google Summer-of-Code entstanden ist. Das &#8220;mt&#8221; steht dabei fuer multi threaded und ermoeglicht es auch langsameren dualcore Prozessoren einen h.264 dekodierten HD Film anzusehen. Da Gentoo noch kein ebuild dafuer bereitgestellt hat habe ich es mir [...]]]></description>
			<content:encoded><![CDATA[<p>Heute bin ich auf ein Projekt gestossen was mich spontan sehr interessierte: ffmpeg-mt</p>
<p>ffmpeg-mt ist Projekt, was auf dem Google Summer-of-Code entstanden ist. Das &#8220;mt&#8221; steht dabei fuer multi threaded und ermoeglicht es auch langsameren dualcore Prozessoren einen h.264 dekodierten HD Film anzusehen.</p>
<p>Da Gentoo noch kein ebuild dafuer bereitgestellt hat habe ich es mir seperat quick and dirty einfach neben her installiert um es zu testen.</p>
<p>Beachtet: ffmpeg-mt befindet sich noch in einem experimentellen Stadium</p>
<p>Als erstes braucht ihr git:</p>
<pre>emerge git</pre>
<p>Danach legen wir uns einen neuen Test Ordner an: (oder je nachdem wo ihr die Dateien haben wollt&#8230;)</p>
<pre>mkdir test</pre>
<pre>cd test</pre>
<p>Danach git klonen und ./configure, make &#8230;</p>
<pre>git clone git://repo.or.cz/mplayer</pre>
<pre>cd mplayer</pre>
<pre>git checkout origin/mt</pre>
<pre>git submodule init</pre>
<pre>git submodule update</pre>
<pre>./configure</pre>
<pre>make<em>
</em></pre>
<p>Laut mplayer homepage wuerde jetzt noch ein make install folgen. Da ich jedoch nicht meine vorhandene installation und die verlinkten bins ueberschreiben will, lass ich dies und lege mir ein kleines bash script an:</p>
<pre>/path-to-mplayer/mplayer -lavdopts threads=2 $1</pre>
<p>-lavdopts threads bitte anpassen. Bei einem Quadcore empfiehlt sich 4 threads zu verwenden.</p>
<p>Benchmark folgt.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sonic-lux.net/2009/05/03/mplayer-ffmpeg-mt/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>x86 stages &#8211; version 20090420</title>
		<link>http://blog.sonic-lux.net/2009/04/21/x86-stages-version-20090420/</link>
		<comments>http://blog.sonic-lux.net/2009/04/21/x86-stages-version-20090420/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 09:31:37 +0000</pubDate>
		<dc:creator>Sonic Lux</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.sonic-lux.net/?p=233</guid>
		<description><![CDATA[So eben sind meine neuen x86 stage archive fertig hochgeladen. Ihr findet sie hier: http://sonic-lux.de/home/projekte/software/gentoo-stages/stages/x86/]]></description>
			<content:encoded><![CDATA[<p>So eben sind meine neuen x86 stage archive fertig hochgeladen.</p>
<p>Ihr findet sie hier:</p>
<p><a href="http://sonic-lux.de/home/projekte/software/gentoo-stages/stages/x86/" target="_blank">http://sonic-lux.de/home/projekte/software/gentoo-stages/stages/x86/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sonic-lux.net/2009/04/21/x86-stages-version-20090420/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Neuigkeiten meiner Gentoo Stages</title>
		<link>http://blog.sonic-lux.net/2009/04/20/neuigkeiten-meiner-gentoo-stages/</link>
		<comments>http://blog.sonic-lux.net/2009/04/20/neuigkeiten-meiner-gentoo-stages/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 13:06:57 +0000</pubDate>
		<dc:creator>Sonic Lux</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.sonic-lux.net/?p=231</guid>
		<description><![CDATA[Ich habe meine Planung fuer meine Gentoo Stages noch einmal ueberarbeitet und mich nocheinmal genauer informiert. Fakt ist folgendes: -Gentoo supportet keine stage1 und stage2 Installationen mehr -Gentoo bietet keine stage2 archive mehr an -stage1 archive architektur optimiert macht keinen sinn -Gentoo hat (noch) keine offiziellen  core2 stage3 archive Daher nun mein aktueller Plan fuer [...]]]></description>
			<content:encoded><![CDATA[<p>Ich habe meine Planung fuer meine Gentoo Stages noch einmal ueberarbeitet und mich nocheinmal genauer informiert.</p>
<p>Fakt ist folgendes:</p>
<p>-Gentoo supportet keine stage1 und stage2 Installationen mehr</p>
<p>-Gentoo bietet keine stage2 archive mehr an</p>
<p>-stage1 archive architektur optimiert macht keinen sinn</p>
<p>-Gentoo hat (noch) keine offiziellen  core2 stage3 archive</p>
<p>Daher nun mein aktueller Plan fuer die Gentoo Stages:</p>
<p>-generisches <strong>x86 stage1</strong> archiv</p>
<p>-<strong>stage3</strong> archiv fuer <strong>x86</strong>, <strong>prescott</strong>, <strong>core2</strong></p>
<p><strong>-stage4</strong> in Planung: vixie-cron, syslog-ng, dhcpc, xfsprogs, gentoolkit, &#8230;</p>
<p>Die Releaseabstaende werden ich nicht festlegen, geplant ist aller 1-2 Wochen ein neues Paket, kann aber auch gut sein das es schneller geht. Ich werde jedes neue release in meinem blog ankuendigen.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sonic-lux.net/2009/04/20/neuigkeiten-meiner-gentoo-stages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gentoo x86 stages verlassen beta stadium</title>
		<link>http://blog.sonic-lux.net/2009/04/19/gentoo-x86-stages-verlassen-beta-stadium/</link>
		<comments>http://blog.sonic-lux.net/2009/04/19/gentoo-x86-stages-verlassen-beta-stadium/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 14:05:32 +0000</pubDate>
		<dc:creator>Sonic Lux</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.sonic-lux.net/?p=229</guid>
		<description><![CDATA[So es ist soweit, nach weiteren test kann ich nun sagen das die stage1 &#8211; stage3 archive fuer x86 auch funktionieren. Viel Spass beim installieren! Download unter: http://sonic-lux.de/home/projekte/software/gentoo-stages/stages/x86/ Die core2 stages verspaeten sich noch etwas, aktuell schlaegt der catalyst bei mir immer fehl. Ich muss noch herausfinden wieso. Aber es wird sicher auch eine Loesung [...]]]></description>
			<content:encoded><![CDATA[<p>So es ist soweit,</p>
<p>nach weiteren test kann ich nun sagen das die stage1 &#8211; stage3 archive fuer x86 auch funktionieren.</p>
<p>Viel Spass beim installieren! <img src='http://blog.sonic-lux.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Download unter: <a href="http://sonic-lux.de/home/projekte/software/gentoo-stages/stages/x86/" target="_blank">http://sonic-lux.de/home/projekte/software/gentoo-stages/stages/x86/</a></p>
<p>Die core2 stages verspaeten sich noch etwas, aktuell schlaegt der catalyst bei mir immer fehl. Ich muss noch herausfinden wieso. Aber es wird sicher auch eine Loesung dafuer geben.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sonic-lux.net/2009/04/19/gentoo-x86-stages-verlassen-beta-stadium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Erste x86 Stages verfügbar</title>
		<link>http://blog.sonic-lux.net/2009/04/17/erste-x86-stages-verfugbar/</link>
		<comments>http://blog.sonic-lux.net/2009/04/17/erste-x86-stages-verfugbar/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 10:49:33 +0000</pubDate>
		<dc:creator>Sonic Lux</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.sonic-lux.net/?p=217</guid>
		<description><![CDATA[Habe eben meine ersten x86 Stages auf den Server geladen. Ihr findet sie unter: http://sonic-lux.de/home/projekte/software/gentoo-stages/stages/x86/ Aktuell noch als &#8220;-beta&#8221; getagged, wird sich aber bald aendern. Core2 Stages folgen]]></description>
			<content:encoded><![CDATA[<p>Habe eben meine ersten x86 Stages auf den Server geladen.</p>
<p>Ihr findet sie unter:</p>
<p><a href="http://sonic-lux.de/home/projekte/software/gentoo-stages/stages/x86/" target="_blank">http://sonic-lux.de/home/projekte/software/gentoo-stages/stages/x86/</a></p>
<p>Aktuell noch als &#8220;-beta&#8221; getagged, wird sich aber bald aendern.</p>
<p>Core2 Stages folgen <img src='http://blog.sonic-lux.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sonic-lux.net/2009/04/17/erste-x86-stages-verfugbar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Neues Projekt: Gentoo Stages</title>
		<link>http://blog.sonic-lux.net/2009/04/17/neues-projekt-gentoo-stages/</link>
		<comments>http://blog.sonic-lux.net/2009/04/17/neues-projekt-gentoo-stages/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 10:45:04 +0000</pubDate>
		<dc:creator>Sonic Lux</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[intern]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.sonic-lux.net/?p=215</guid>
		<description><![CDATA[So, nachdem lange Zeit keine offiziellen Stages mehr von Gentoo Seite kamen und die Autobuilds nur Stage3 sind habe ich mich ran gesetzt und mich mit dem Tool zur Erstellung von Stages und LiveCDs &#8211; Catalyst &#8211; beschäftigt. Ziel des Projektes ist es Stage1 &#8211; 3 Pakete fuer x86 und Core2 anzubieten. x86 wegen der [...]]]></description>
			<content:encoded><![CDATA[<p>So, nachdem lange Zeit keine offiziellen Stages mehr von Gentoo Seite kamen und die Autobuilds nur Stage3 sind habe ich mich ran gesetzt und mich mit dem Tool zur Erstellung von Stages und LiveCDs &#8211; Catalyst &#8211; beschäftigt.</p>
<p>Ziel des Projektes ist es Stage1 &#8211; 3 Pakete fuer x86 und Core2 anzubieten.</p>
<p>x86 wegen der Allgemeinheit</p>
<p>core2, weil ich aktuell eine Quad Core zu Hause habe und denke es auch genuegend Leute gibt, die eine Core Duo oder Quad besitzen und Gentoo nicht x86 benutzen wollen.</p>
<p>Des weiteren wird es eine Live CD geben, bei der ich versuchen werde einen stabilen Kernel von den gentoo-sources und einen experimentellen aus den vanilla-sources einzubauen. Die vanilla-sources beinhalten dann ext4 und btrfs und andere Neuerungen aus dem jeweiligen aktuellen Linux Kernel.</p>
<p>Geplant ist weiterhin auch ein stage4 Paket mit xorg und kde und vllt. weiteren Paketen.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sonic-lux.net/2009/04/17/neues-projekt-gentoo-stages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mein mp3 convert script für mein Autoradio</title>
		<link>http://blog.sonic-lux.net/2008/08/26/mein-mp3-convert-script-fur-mein-autoradio/</link>
		<comments>http://blog.sonic-lux.net/2008/08/26/mein-mp3-convert-script-fur-mein-autoradio/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 13:22:01 +0000</pubDate>
		<dc:creator>Sonic Lux</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://blog.sonic-lux.net/?p=93</guid>
		<description><![CDATA[Mein Autoradio, das Sony MP-40 kann leider nicht mir mp3s mit einer bitrate von 320kbit/s umgehen, daher musste ich ein Script schreiben was die mp3s vorher konvertiert. #!/bin/sh IFS=&#8221; &#8221; for i in $(find $1 -depth -name &#8220;*.mp3&#8243; ); do ffmpeg -i &#8220;$i&#8221; -ab 192k &#8220;$i.new.mp3&#8243;; rm -f &#8220;$i&#8221;; done Jetzt noch nach /usr/bin/ kopieren [...]]]></description>
			<content:encoded><![CDATA[<p>Mein Autoradio, das Sony MP-40 kann leider nicht mir mp3s mit einer bitrate von 320kbit/s umgehen, daher musste ich ein Script schreiben was die mp3s vorher konvertiert.</p>
<blockquote><p>#!/bin/sh</p>
<p>IFS=&#8221;<br />
&#8221;</p>
<p>for i in $(find $1 -depth -name &#8220;*.mp3&#8243; ); do ffmpeg -i &#8220;$i&#8221; -ab 192k &#8220;$i.new.mp3&#8243;; rm -f &#8220;$i&#8221;; done</p></blockquote>
<p>Jetzt noch nach /usr/bin/ kopieren und die richtige Rechte setzen und jeder kann es benutzen.</p>
<p>Benutzung mit: car-mp3 ordner</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sonic-lux.net/2008/08/26/mein-mp3-convert-script-fur-mein-autoradio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux find und Leerzeichen in Dateinamen</title>
		<link>http://blog.sonic-lux.net/2008/08/26/linux-find-und-leerzeichen-in-dateinamen/</link>
		<comments>http://blog.sonic-lux.net/2008/08/26/linux-find-und-leerzeichen-in-dateinamen/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 12:54:20 +0000</pubDate>
		<dc:creator>Sonic Lux</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[bugfix]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.sonic-lux.net/?p=84</guid>
		<description><![CDATA[Heute hatte ich auch ein wiederliches &#8220;Problem. Und zwar eine Schleife mit find, und was bekommt man, jedes mal ein neues result nach einem Leerzeichen im Dateinamen. Nach ewigen rumgemache bin ich dann zum Gkück auf die Seite gekommen: http://www.denkweite.de/&#8230;en-in-dateinamen/trackback/ Lösung ist also die Variable IFS auf einen Zeilenumbruch zu setzen IFS=&#8221; &#8220; danach ging [...]]]></description>
			<content:encoded><![CDATA[<p>Heute hatte ich auch ein wiederliches &#8220;Problem. Und zwar eine Schleife mit find, und was bekommt man, jedes mal ein neues result nach einem Leerzeichen im Dateinamen. Nach ewigen rumgemache bin ich dann zum Gkück auf die Seite gekommen:</p>
<p><a href="http://www.denkweite.de/2008-03-19/linux-find-und-leerzeichen-in-dateinamen/trackback/" target="_blank">http://www.denkweite.de/&#8230;en-in-dateinamen/trackback/</a></p>
<p>Lösung ist also die Variable <strong>IFS</strong> auf einen Zeilenumbruch zu setzen</p>
<blockquote><p>IFS=&#8221;<br />
&#8220;</p></blockquote>
<p>danach ging es dann auch <img src='http://blog.sonic-lux.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sonic-lux.net/2008/08/26/linux-find-und-leerzeichen-in-dateinamen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bald ist es soweit: OpenMoko Freerunner demnächst im Handel</title>
		<link>http://blog.sonic-lux.net/2008/06/25/bald-ist-es-soweit-openmoko-freerunner-demnachst-im-handel/</link>
		<comments>http://blog.sonic-lux.net/2008/06/25/bald-ist-es-soweit-openmoko-freerunner-demnachst-im-handel/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 12:33:36 +0000</pubDate>
		<dc:creator>Sonic Lux</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[freerunner]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[openmoko]]></category>

		<guid isPermaLink="false">http://blog.sonic-lux.net/?p=19</guid>
		<description><![CDATA[Das lange warten hat ein Ende, den bald ist es soweit und das neue Model names &#8220;Freerunner&#8221;, dem Nachfolger des Neo1973, wird im Handel erhältlich sein. Der Preis soll bei 399 USD liegen. Hier noch ein paar Informationen: http://wiki.openmoko.org/wiki/Neo_FreeRunner http://wiki.openmoko.org/wiki/Neo1973:_GTA01Bv4_versus_GTA02_comparison]]></description>
			<content:encoded><![CDATA[<p>Das lange warten hat ein Ende, den bald ist es soweit und das neue Model names &#8220;Freerunner&#8221;, dem Nachfolger des Neo1973, wird im Handel erhältlich sein.</p>
<p>Der Preis soll bei 399 USD liegen.</p>
<p>Hier noch ein paar Informationen:</p>
<p><a href="http://wiki.openmoko.org/wiki/Neo_FreeRunner" target="_blank">http://wiki.openmoko.org/wiki/Neo_FreeRunner</a></p>
<p><a href="http://wiki.openmoko.org/wiki/Neo1973:_GTA01Bv4_versus_GTA02_comparison" target="_blank">http://wiki.openmoko.org/wiki/Neo1973:_GTA01Bv4_versus_GTA02_comparison</a></p>
<p><a href="http://blog.sonic-lux.net/wp-content/uploads/2008/06/gta02.gif"><img class="alignnone size-full wp-image-18" title="gta02" src="http://blog.sonic-lux.net/wp-content/uploads/2008/06/gta02.gif" alt="" width="200" height="386" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sonic-lux.net/2008/06/25/bald-ist-es-soweit-openmoko-freerunner-demnachst-im-handel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

