<?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>Linux für alle &#187; Default</title>
	<atom:link href="http://www.simplylinux.ch/category/default/feed" rel="self" type="application/rss+xml" />
	<link>http://www.simplylinux.ch</link>
	<description>Jeder kann Linux beherrschen lernen...</description>
	<lastBuildDate>Sat, 19 Nov 2011 17:37:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>FLAC Kompirimierung / Konvertierung</title>
		<link>http://www.simplylinux.ch/flac-kompirimierung-konvertierung</link>
		<comments>http://www.simplylinux.ch/flac-kompirimierung-konvertierung#comments</comments>
		<pubDate>Fri, 06 Mar 2009 19:49:35 +0000</pubDate>
		<dc:creator>hyper_ch</dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[hyper_ch]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[flac]]></category>
		<category><![CDATA[mp3]]></category>

		<guid isPermaLink="false">http://www.simplylinux.ch/?p=56</guid>
		<description><![CDATA[Speicherplatz ist ja inzwischen relativ billig. Deswegen habe ich mich daran gesetzt, meine gesamte Musiksammlung auf flac umzustellen (lossless). Braucht zwar ca. 5-6x mehr Speicherplatz als VBR 128-192 mp3s aber Platz hat man ja. Trotzdem wollte ich doch auch die flacs soweit komprimieren als möglich. Viele sind das nicht. Ich hab mir also dieses kleine [...]]]></description>
			<content:encoded><![CDATA[<p>Speicherplatz ist ja inzwischen relativ billig. Deswegen habe ich mich daran gesetzt, meine gesamte Musiksammlung auf flac umzustellen (lossless). Braucht zwar ca. 5-6x mehr Speicherplatz als VBR 128-192 mp3s aber Platz hat man ja.</p>
<p>Trotzdem wollte ich doch auch die flacs soweit komprimieren als möglich. Viele sind das nicht. Ich hab mir also dieses kleine Script hier gebastelt:<br />
<span id="more-56"></span></p>
<div id="wpshdo_1" class="wp-synhighlighter-outer"><div id="wpshdt_1" class="wp-synhighlighter-expanded"><table border="0" width="100%"><tr><td align="left" width="80%"><a name="#codesyntax_1"></a><a id="wpshat_1" class="wp-synhighlighter-title" href="#codesyntax_1"  onClick="javascript:wpsh_toggleBlock(1)" title="Click to show/hide code block">Code block</a></td><td align="right"><a href="#codesyntax_1" onClick="javascript:wpsh_code(1)" title="Show code only"><img border="0" style="border: 0 none" src="http://www.simplylinux.ch/wp-content/plugins/wp-synhighlight/themes/default/images/code.png" /></a>&nbsp;<a href="#codesyntax_1" onClick="javascript:wpsh_print(1)" title="Print code"><img border="0" style="border: 0 none" src="http://www.simplylinux.ch/wp-content/plugins/wp-synhighlight/themes/default/images/printer.png" /></a>&nbsp;<a href="http://www.simplylinux.ch/wp-content/plugins/wp-synhighlight/About.html" target="_blank" title="Show plugin information"><img border="0" style="border: 0 none" src="http://www.simplylinux.ch/wp-content/plugins/wp-synhighlight/themes/default/images/info.gif" /></a>&nbsp;</td></tr></table></div><div id="wpshdi_1" class="wp-synhighlighter-inner" style="display: block;"><pre class="bash" style="font-family:monospace;"><span class="co0">#!/bin/bash</span>
&nbsp;
<span class="co0"># Apply max flac compression</span>
<span class="co0"># Apply replay gain</span>
<span class="co0"># Get rid of covers and m3u and other junk files</span>
<span class="co0"># Works recursively</span>
&nbsp;
<span class="re2">src</span>=~<span class="sy0">/</span>hyper<span class="sy0">/</span>Music
<span class="re2">dst</span>=<span class="sy0">/</span>media<span class="sy0">/</span>flac<span class="sy0">/</span>         <span class="co0"># Add trailing slash, otherwise the path will contain a &quot;.&quot;</span>
&nbsp;
<span class="kw3">cd</span> <span class="re1">$src</span>;
<span class="kw2">find</span> <span class="re5">-type</span> d <span class="re5">-exec</span> <span class="kw2">mkdir</span> <span class="re5">-p</span> <span class="re1">$dst</span><span class="br0">&#123;</span><span class="br0">&#125;</span> \;
<span class="kw2">find</span> <span class="re5">-iname</span> <span class="st_h">'*.flac'</span> <span class="re5">-exec</span> flac <span class="re5">-8</span> <span class="re5">--replay-gain</span> <span class="re5">-o</span> <span class="re1">$dst</span><span class="br0">&#123;</span><span class="br0">&#125;</span> <span class="br0">&#123;</span><span class="br0">&#125;</span> \;
&nbsp;
<span class="kw3">echo</span> <span class="st0">&quot;&quot;</span>
<span class="kw3">echo</span> <span class="st0">&quot;&quot;</span>
<span class="kw3">echo</span> <span class="st0">&quot;Done - your new files are at <span class="es2">$dst</span>&quot;</span></pre></div></div>
<p>Einfach Start (src) und Ziel (dst) Verzeichnis angeben und das Skript durchlaufen lassen. Es kann leider kein Multi-Thread aber das spielt nicht so eine Rolle. Das Gute ist, die Tags werden beibehalten.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simplylinux.ch/flac-kompirimierung-konvertierung/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skype &amp; Intrepid Ibex 64-bit</title>
		<link>http://www.simplylinux.ch/skype-intrepid-ibex-64-bit</link>
		<comments>http://www.simplylinux.ch/skype-intrepid-ibex-64-bit#comments</comments>
		<pubDate>Sat, 20 Sep 2008 17:12:56 +0000</pubDate>
		<dc:creator>hyper_ch</dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[intrepdi]]></category>
		<category><![CDATA[skype]]></category>
		<category><![CDATA[ubuntu 8.10]]></category>

		<guid isPermaLink="false">http://www.simplylinux.ch/skype-intrepid-ibex-64-bit</guid>
		<description><![CDATA[Skype &#38; Intrepid Ibex 64-bit Das nachfolgende Howto ist inzwischen überflüssig geworden, da Medibuntu die Skype Installation zwischenzeitig angepasst hat. Skype ist nur als 32-bit Applikation verfügbar. Deswegen ist es auf 64-bit Systemen notwendig, auch die entsprechenden 32-bit Bibliotheken einzurichten. Dies sollte eigentlich durch APT automatisch geschehen, allerdings ist dies bei der neuen Ubuntu Intrepid [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-weight: bold">Skype &amp; Intrepid Ibex 64-bit</span></p>
<p><em>Das nachfolgende Howto ist inzwischen überflüssig geworden, da Medibuntu die Skype Installation zwischenzeitig angepasst hat.</em></p>
<p>Skype ist nur als 32-bit Applikation verfügbar. Deswegen ist es auf 64-bit Systemen notwendig, auch die entsprechenden 32-bit Bibliotheken einzurichten. Dies sollte eigentlich durch APT automatisch geschehen, allerdings ist dies bei der neuen Ubuntu Intrepid Ibex Version noch nicht der Fall. Da es sich hierbei jedoch noch um eine Alpha-Version handelt, ist es auch nicht weiter schlimm, aber trotzdem nervend. Das Ganze kann einfach behoben werden, indem man die entsprechenden Bibliotheken eigentständi &#8220;installiert&#8221;.<br />
<span id="more-16"></span><br />
Hier zuerst mal das kleine Script, welches das erledigt:</p>
<div id="wpshdo_2" class="wp-synhighlighter-outer"><div id="wpshdt_2" class="wp-synhighlighter-expanded"><table border="0" width="100%"><tr><td align="left" width="80%"><a name="#codesyntax_2"></a><a id="wpshat_2" class="wp-synhighlighter-title" href="#codesyntax_2"  onClick="javascript:wpsh_toggleBlock(2)" title="Click to show/hide code block">Code block</a></td><td align="right"><a href="#codesyntax_2" onClick="javascript:wpsh_code(2)" title="Show code only"><img border="0" style="border: 0 none" src="http://www.simplylinux.ch/wp-content/plugins/wp-synhighlight/themes/default/images/code.png" /></a>&nbsp;<a href="#codesyntax_2" onClick="javascript:wpsh_print(2)" title="Print code"><img border="0" style="border: 0 none" src="http://www.simplylinux.ch/wp-content/plugins/wp-synhighlight/themes/default/images/printer.png" /></a>&nbsp;<a href="http://www.simplylinux.ch/wp-content/plugins/wp-synhighlight/About.html" target="_blank" title="Show plugin information"><img border="0" style="border: 0 none" src="http://www.simplylinux.ch/wp-content/plugins/wp-synhighlight/themes/default/images/info.gif" /></a>&nbsp;</td></tr></table></div><div id="wpshdi_2" class="wp-synhighlighter-inner" style="display: block;"><pre class="bash" style="font-family:monospace;"><span class="co0">#!/bin/bash</span>
<span class="kw2">mkdir</span> <span class="sy0">/</span>tmp<span class="sy0">/</span>skype
<span class="kw2">mkdir</span> <span class="sy0">/</span>tmp<span class="sy0">/</span>skype<span class="sy0">/</span>tmp
<span class="kw3">cd</span> <span class="sy0">/</span>tmp<span class="sy0">/</span>skype
<span class="kw2">wget</span> http:<span class="sy0">//</span>mirror.switch.ch<span class="sy0">/</span>ftp<span class="sy0">/</span>mirror<span class="sy0">/</span>ubuntu<span class="sy0">/</span>pool<span class="sy0">/</span>main<span class="sy0">/</span>q<span class="sy0">/</span>qt4-x11<span class="sy0">/</span>libqtgui4_4.4.1-0ubuntu2_i386.deb
<span class="kw2">wget</span> http:<span class="sy0">//</span>mirror.switch.ch<span class="sy0">/</span>ftp<span class="sy0">/</span>mirror<span class="sy0">/</span>ubuntu<span class="sy0">/</span>pool<span class="sy0">/</span>main<span class="sy0">/</span>q<span class="sy0">/</span>qt4-x11<span class="sy0">/</span>libqt4-network_4.4.1-0ubuntu2_i386.deb
<span class="kw2">wget</span> http:<span class="sy0">//</span>mirror.switch.ch<span class="sy0">/</span>ftp<span class="sy0">/</span>mirror<span class="sy0">/</span>ubuntu<span class="sy0">/</span>pool<span class="sy0">/</span>main<span class="sy0">/</span>q<span class="sy0">/</span>qt4-x11<span class="sy0">/</span>libqtcore4_4.4.1-0ubuntu2_i386.deb
<span class="kw2">wget</span> http:<span class="sy0">//</span>mirror.switch.ch<span class="sy0">/</span>ftp<span class="sy0">/</span>mirror<span class="sy0">/</span>ubuntu<span class="sy0">/</span>pool<span class="sy0">/</span>main<span class="sy0">/</span>q<span class="sy0">/</span>qt4-x11<span class="sy0">/</span>libqt4-xml_4.4.1-0ubuntu2_i386.deb
<span class="kw2">dpkg</span> <span class="re5">-x</span> libqtgui4_4.4.1-0ubuntu2_i386.deb <span class="sy0">/</span>tmp<span class="sy0">/</span>skype<span class="sy0">/</span>tmp
<span class="kw2">dpkg</span> <span class="re5">-x</span> libqt4-network_4.4.1-0ubuntu2_i386.deb <span class="sy0">/</span>tmp<span class="sy0">/</span>skype<span class="sy0">/</span>tmp
<span class="kw2">dpkg</span> <span class="re5">-x</span> libqtcore4_4.4.1-0ubuntu2_i386.deb <span class="sy0">/</span>tmp<span class="sy0">/</span>skype<span class="sy0">/</span>tmp
<span class="kw2">dpkg</span> <span class="re5">-x</span> libqt4-xml_4.4.1-0ubuntu2_i386.deb <span class="sy0">/</span>tmp<span class="sy0">/</span>skype<span class="sy0">/</span>tmp
<span class="kw2">cp</span> <span class="re5">-a</span> <span class="sy0">/</span>tmp<span class="sy0">/</span>skype<span class="sy0">/</span>tmp<span class="sy0">/</span>usr<span class="sy0">/</span>lib<span class="sy0">/*</span> <span class="sy0">/</span>usr<span class="sy0">/</span>lib32<span class="sy0">/</span></pre></div></div>
<p><span style="font-style: italic"></span>Bevor man jedoch das Skript ausführt, muss zuerst Skype via Medibuntu Repos installiert werden. Dafür einfach den Anweisungen unter &#8220;Repository Howto&#8221; folgen: http://www.medibuntu.org/</p>
<p>Sobald das erledigt wurde, kann man dann Skype mit diesem Befehl installieren:</p>
<div id="wpshdo_3" class="wp-synhighlighter-outer"><div id="wpshdt_3" class="wp-synhighlighter-expanded"><table border="0" width="100%"><tr><td align="left" width="80%"><a name="#codesyntax_3"></a><a id="wpshat_3" class="wp-synhighlighter-title" href="#codesyntax_3"  onClick="javascript:wpsh_toggleBlock(3)" title="Click to show/hide code block">Code block</a></td><td align="right"><a href="#codesyntax_3" onClick="javascript:wpsh_code(3)" title="Show code only"><img border="0" style="border: 0 none" src="http://www.simplylinux.ch/wp-content/plugins/wp-synhighlight/themes/default/images/code.png" /></a>&nbsp;<a href="#codesyntax_3" onClick="javascript:wpsh_print(3)" title="Print code"><img border="0" style="border: 0 none" src="http://www.simplylinux.ch/wp-content/plugins/wp-synhighlight/themes/default/images/printer.png" /></a>&nbsp;<a href="http://www.simplylinux.ch/wp-content/plugins/wp-synhighlight/About.html" target="_blank" title="Show plugin information"><img border="0" style="border: 0 none" src="http://www.simplylinux.ch/wp-content/plugins/wp-synhighlight/themes/default/images/info.gif" /></a>&nbsp;</td></tr></table></div><div id="wpshdi_3" class="wp-synhighlighter-inner" style="display: block;"><pre class="bash" style="font-family:monospace;"><span class="kw2">sudo</span> <span class="kw2">apt-get</span> <span class="kw2">install</span> skype</pre></div></div>
<p>Sobald dies erledigt wurde, muss man dann nur noch eine Textdatei erstellen (z.B. script.sh) und den oben aufgeführten Code einfügen. Dann noch das Skript laufen lassen:</p>
<div id="wpshdo_4" class="wp-synhighlighter-outer"><div id="wpshdt_4" class="wp-synhighlighter-expanded"><table border="0" width="100%"><tr><td align="left" width="80%"><a name="#codesyntax_4"></a><a id="wpshat_4" class="wp-synhighlighter-title" href="#codesyntax_4"  onClick="javascript:wpsh_toggleBlock(4)" title="Click to show/hide code block">Code block</a></td><td align="right"><a href="#codesyntax_4" onClick="javascript:wpsh_code(4)" title="Show code only"><img border="0" style="border: 0 none" src="http://www.simplylinux.ch/wp-content/plugins/wp-synhighlight/themes/default/images/code.png" /></a>&nbsp;<a href="#codesyntax_4" onClick="javascript:wpsh_print(4)" title="Print code"><img border="0" style="border: 0 none" src="http://www.simplylinux.ch/wp-content/plugins/wp-synhighlight/themes/default/images/printer.png" /></a>&nbsp;<a href="http://www.simplylinux.ch/wp-content/plugins/wp-synhighlight/About.html" target="_blank" title="Show plugin information"><img border="0" style="border: 0 none" src="http://www.simplylinux.ch/wp-content/plugins/wp-synhighlight/themes/default/images/info.gif" /></a>&nbsp;</td></tr></table></div><div id="wpshdi_4" class="wp-synhighlighter-inner" style="display: block;"><pre class="bash" style="font-family:monospace;"><span class="kw2">sudo</span> <span class="kw2">sh</span> script.sh</pre></div></div>
<p>Und schon läuft Skype auch auf Intrepid Ibex 64-bit. Ein Bugreport (https://bugs.launchpad.net/ubuntu/+source/ia32-libs/+bug/271550) wurde auch schon erstellt, d.h. es wäre möglich, dass dies sehr bald nicht mehr nötig sein wird.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simplylinux.ch/skype-intrepid-ibex-64-bit/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

