<?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>Alberto Alonso Ruibal&#039;s Blog &#187; linux</title>
	<atom:link href="http://www.alonsoruibal.com/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.alonsoruibal.com</link>
	<description>Telecommunication Engineer at Vigo (Pontevedra), Galicia</description>
	<lastBuildDate>Fri, 18 Jun 2010 20:31:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Rakarrak: The Linux Guitar Effects Processor</title>
		<link>http://www.alonsoruibal.com/rakarrak-the-linux-guitar-effects-processor/</link>
		<comments>http://www.alonsoruibal.com/rakarrak-the-linux-guitar-effects-processor/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 17:48:33 +0000</pubDate>
		<dc:creator>rui</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[guitar]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://www.alonsoruibal.com/?p=393</guid>
		<description><![CDATA[Recently, navigating the Debian repositories I found Rakarrack, an Open Source Linux program to simulate various guitar effects in real time. This sound effects are often done with expensive physical sound processors, but this application makes it all with only one cheap computer (well, I suppose that the quality will rely a lot on the [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, navigating the Debian repositories I found Rakarrack, an Open Source Linux program to simulate various guitar effects in real time. This sound effects are often done with expensive physical sound processors, but this application makes it all with only one cheap computer (well, I suppose that the quality will rely a lot on the sound card).</p>
<p>Each effect is a module and and has its owns parameters which can be adjusted with sliders from the GUI. Multiple effects can be chained in different configurations.</p>
<p><img class="alignnone size-full wp-image-397" title="rakarrack" src="http://www.alonsoruibal.com/wp-content/uploads/2009/12/rakarrack.png" alt="rakarrack" width="650" height="504" /></p>
<p>For the audio input and output, It uses the Jack Sound Server. Initially Jacks is a bit complicated to set up but is very versatile. I use the qjackctl to configure and run Jacks simplifying this task. First we start qjackctl and from its GUI, start the jack server. Then run Rakarrack, and with qjackctl we connect Rakarrak to the system sound output and input:</p>
<p><img class="alignnone size-full wp-image-398" title="qjackctl_connect" src="http://www.alonsoruibal.com/wp-content/uploads/2009/12/qjackctl_connect.png" alt="qjackctl_connect" width="576" height="230" /></p>
<p>The latency (the sound delay) of Rakarrak is quite good, but depends a lof of the Jack server configuration. This snapshot is the configuration that I am using from qjackctl: the Latency is the important value, and can be minimized adjusting the &#8220;frames by period&#8221; parameter:</p>
<p><img class="alignnone size-full wp-image-396" title="qjackctl" src="http://www.alonsoruibal.com/wp-content/uploads/2009/12/qjackctl.png" alt="qjackctl" width="679" height="566" /></p>
<p>I played a lot using different presets (it has lots of pre-configured) and there are some quite good, but others does not sound as good as a physical pedal, maybe also by le low quality of my notebook sound card.</p>
<p>It also has an integrated guitar tuner, but for this purpose I prefer <a href="http://www.nongnu.org/lingot/" target="_blank">Lingot</a> from my Friend Iban Cereijo.</p>
<p>A lot of years ago I tested Guitar Rig, a quite pretty (and expensive!) windows applicattion for the same purpose, but then the latency of the sound was too high. Rakkarrak is simpler but enough for most non-professional guitar players, and I like it a lot!</p>
<p><a href="http://rakarrack.sourceforge.net/" target="_blank">http://rakarrack.sourceforge.net/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alonsoruibal.com/rakarrak-the-linux-guitar-effects-processor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snippet: FLV video encode</title>
		<link>http://www.alonsoruibal.com/snippet-flv/</link>
		<comments>http://www.alonsoruibal.com/snippet-flv/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 14:41:26 +0000</pubDate>
		<dc:creator>rui</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://www.alonsoruibal.com/?p=183</guid>
		<description><![CDATA[Using mencoder in Linux, we can convert any video to FLV and embed it in a web page with Flowplayer. In this sample video is encoded at 320&#215;240 300 kbps and audio at 56kbps:
# mencoder -forceidx -of lavf -oac mp3lame -lameopts abr:br=56 -srate 22050 -ovc lavc -lavcopts vcodec=flv:vbitrate=300:mbd=2:mv0:trell:v4mv:cbp:last_pred=3 -vf scale=320:240 -o out.flv in.avi
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-196" title="snippet" src="http://www.alonsoruibal.com/wp-content/uploads/2009/06/snippet.png" alt="snippet" width="150" height="150" />Using mencoder in Linux, we can convert any video to FLV and embed it in a web page with <a href="http://www.flowplayer.org" target="_blank">Flowplayer</a>. In this sample video is encoded at 320&#215;240 300 kbps and audio at 56kbps:</p>
<blockquote><p># mencoder -forceidx -of lavf -oac mp3lame -lameopts abr:br=56 -srate 22050 -ovc lavc -lavcopts vcodec=flv:vbitrate=300:mbd=2:mv0:trell:v4mv:cbp:last_pred=3 -vf scale=320:240 -o out.flv in.avi</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.alonsoruibal.com/snippet-flv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snippet: Join PDFs with pdftk</title>
		<link>http://www.alonsoruibal.com/snippet-pdftk/</link>
		<comments>http://www.alonsoruibal.com/snippet-pdftk/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 16:00:37 +0000</pubDate>
		<dc:creator>rui</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://www.alonsoruibal.com/?p=185</guid>
		<description><![CDATA[With pdftk we can (as well as a lot of other PDF-related operations) join PDFs in Linux, wich is something very useful. This is one example:
# pdftk file1.pdf  file2.pdf  file3.pdf cat output  file_output.pdf
For windows there is also Pdftk Builder, with a graphical interface.
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-196" title="snippet" src="http://www.alonsoruibal.com/wp-content/uploads/2009/06/snippet.png" alt="snippet" width="150" height="150" />With pdftk we can (as well as a lot of other PDF-related operations) join PDFs in Linux, wich is something very useful. This is one example:</p>
<blockquote><p># pdftk file1.pdf  file2.pdf  file3.pdf cat output  file_output.pdf</p></blockquote>
<p>For windows there is also <a href="http://angusj.com/pdftkb/">Pdftk Builder</a>, with a graphical interface.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alonsoruibal.com/snippet-pdftk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snippet: Hacer un screencast con Byzanz</title>
		<link>http://www.alonsoruibal.com/snippet-byzanz/</link>
		<comments>http://www.alonsoruibal.com/snippet-byzanz/#comments</comments>
		<pubDate>Sun, 14 Jun 2009 13:58:09 +0000</pubDate>
		<dc:creator>rui</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://www.alonsoruibal.com/?p=191</guid>
		<description><![CDATA[Esta herramienta nos permite generar screencasts (grabaciones de nuestro escritorio) en formato GIF animado (sin sonido, claro). Por ejemplo, para generar un screencast de 60 segundos, y que espere 2 segundos para empezar a grabar:
# byzanz-record -c -d 60 &#8211;delay 2 screencast.gif
La -c es para que grabe el movimiento del cursor.
Hay otros programas para grabar [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-196" style="margin: 5px;" title="snippet" src="http://www.alonsoruibal.com/wp-content/uploads/2009/06/snippet.png" alt="snippet" width="150" height="150" />Esta herramienta nos permite generar screencasts (grabaciones de nuestro escritorio) en formato GIF animado (sin sonido, claro). Por ejemplo, para generar un screencast de 60 segundos, y que espere 2 segundos para empezar a grabar:</p>
<blockquote><p># byzanz-record -c -d 60 &#8211;delay 2 screencast.gif</p></blockquote>
<p>La -c es para que grabe el movimiento del cursor.</p>
<p>Hay otros programas para grabar screencasts, como <a href="http://live.gnome.org/Istanbul" target="_blank">Istambul</a> pero éste no me funciona bien en mi Debian Squeeze.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alonsoruibal.com/snippet-byzanz/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CentOS, alternativa libre a Red Hat Enterprise Linux</title>
		<link>http://www.alonsoruibal.com/centos-alternativa-libre-a-red-hat-enterprise-linux/</link>
		<comments>http://www.alonsoruibal.com/centos-alternativa-libre-a-red-hat-enterprise-linux/#comments</comments>
		<pubDate>Sun, 10 May 2009 10:15:58 +0000</pubDate>
		<dc:creator>rui</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[company]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.alonsoruibal.com/?p=124</guid>
		<description><![CDATA[

  


En cuanto a las distribuciones de Linux siempre he sido un talibán de Debian, pero hay aplicaciones propietarias que requieren de ciertas distribuciones de Linux para poderse instalar sin problemas, y casi siempre suelen ser compatibles con Red Hat Enterprise Linux (RHEL).
Pues bien, para estos casos tenemos  CentOS, que es una distribución [...]]]></description>
			<content:encoded><![CDATA[<div class="mceTemp">
<dl id="attachment_161" class="wp-caption alignleft" style="width: 282px;">
<dt class="wp-caption-dt"> <img class="size-full wp-image-161" title="centos_logo" src="http://www.alonsoruibal.com/wp-content/uploads/2008/08/centos_logo.png" alt="Logo de CentOS" width="272" height="60" /> </dt>
</dl>
</div>
<p>En cuanto a las distribuciones de Linux siempre he sido un talibán de Debian, pero hay aplicaciones propietarias que requieren de ciertas distribuciones de Linux para poderse instalar sin problemas, y casi siempre suelen ser compatibles con Red Hat Enterprise Linux (RHEL).</p>
<p>Pues bien, para estos casos tenemos <a href="http://www.centos.org" target="_blank"> CentOS</a>, que es una distribución de Linux totalmente compatible con RHEL. Sigue las mismas versiones que Red Hat, así una Centos 4.7 es como una RHEL 4.7 y los paquetes son los mismos, idénticos en versiones, y además tenemos actualizaciones gratis de por vida (para Red Hat hay que pagar la subscripción a Red Hat Network). También es muy fácil habiendo instalado un RedHat poner los repositorios de CentOS y convertirlo a un CentOS.</p>
<p>Como es de suponer, CentOS tiene muchos de los defectos de RHEL, como que para actualizar de la versión 4 a la 5 te recomiendan reinstalar desde cero. Yo administré servidores Debian en los que durante muchos años siempre estábamos en la última versión estable sin tener nunca que reinstalar&#8230; No obstante se añaden algunas mejoras en unos repositorios separados (CentOS Plus), que permiten por ejemplo tener los PHP 5 en una RHEL 4.x, cuando los repositorios &#8220;oficiales&#8221; de Red Hat proporcionan sólo PHP 4.</p>
<p>Y por supuesto que, añorando mis Debian, me he instalado el apt para RPM&#8217;s, que es una herramienta mucho mejor que el up2date o el yum.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alonsoruibal.com/centos-alternativa-libre-a-red-hat-enterprise-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IES4Linux, Internet Explorer en Linux</title>
		<link>http://www.alonsoruibal.com/ies4linux-internet-explorer-en-linux/</link>
		<comments>http://www.alonsoruibal.com/ies4linux-internet-explorer-en-linux/#comments</comments>
		<pubDate>Wed, 05 Dec 2007 23:03:41 +0000</pubDate>
		<dc:creator>rui</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.alonsoruibal.com/ies4linux-internet-explorer-en-linux/</guid>
		<description><![CDATA[Como aún hay quién no lo conoce, y para los que usando Linux sufrimos el que haya desarrolladores web que hagan páginas que sólo funcionan en Internet Explorer, que sepáis que hay esta excelente aplicación.
Se trata de un instalador que sobre Linux y con el emulador de windows Wine, instala el Internet Explorer&#8230; ¡Si! y [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.alonsoruibal.com/wp-content/uploads/2007/12/ies4linux.png" alt="IES4Linux" align="left" />Como aún hay quién no lo conoce, y para los que usando Linux sufrimos el que haya desarrolladores web que hagan páginas que sólo funcionan en Internet Explorer, que sepáis que hay esta excelente aplicación.</p>
<p>Se trata de un instalador que sobre Linux y con el emulador de windows Wine, instala el Internet Explorer&#8230; ¡Si! y pasamos a tener el Internet Explorer como una aplicación más de nuestro escritorio. Además permite instalar varias versiones: la 5, la 5.5, la 6 y la 7 (esta última en beta y no va bien)&#8230; y permite tener varias de éstas instaladas ¡a la vez! y así probar un mismo sitio web en distintas versiones de Explorer. Además se puede instalar sin ser root&#8230; ¿que más se puede pedir?</p>
<p>Bueno, para los linuxeros, no puedo hacer más que recomendaros encarecidamente el <a href="http://www.tatanka.com.br/ies4linux/page/Es/P%C3%A1gina_Inicial">IES4Linux</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alonsoruibal.com/ies4linux-internet-explorer-en-linux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Documental: Revolution OS</title>
		<link>http://www.alonsoruibal.com/documental-revolution-os/</link>
		<comments>http://www.alonsoruibal.com/documental-revolution-os/#comments</comments>
		<pubDate>Tue, 25 Sep 2007 11:31:31 +0000</pubDate>
		<dc:creator>rui</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tv]]></category>

		<guid isPermaLink="false">http://www.alonsoruibal.com/documental-revolution-os/</guid>
		<description><![CDATA[Este es un interesante documental del 2001 sobre el nacimiento del Linux, GNU, la FSF y el movimiento del software libre en general. Más que recomendable para los que hemos abrazado la filosofía del pingüino y los que quieran saber más sobre este apasionante mundo. El vídeo dura 1h y 25 minutos (preparad el sillón) [...]]]></description>
			<content:encoded><![CDATA[<p>Este es un interesante documental del 2001 sobre el nacimiento del Linux, GNU, la FSF y el movimiento del software libre en general. Más que recomendable para los que hemos abrazado la filosofía del pingüino y los que quieran saber más sobre este apasionante mundo. El vídeo dura 1h y 25 minutos (preparad el sillón) y está en inglés, pero es muy claro y fácil de comprender (vamos, que hasta yo lo entiendo), no obstante, también lo hay subtitulado en <a href="http://stage6.divx.com/user/jmc_al/video/1343349/Revolution-OS-(2001)-Spanish-Sub" title="Stage6-Revolution Os">Stage6</a>.</p>
<p><center><br />
<embed src="http://video.google.com/googleplayer.swf?docId=7707585592627775409" style="width: 400px; height: 326px" id="VideoPlayback" type="application/x-shockwave-flash"></embed><br />
</center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alonsoruibal.com/documental-revolution-os/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
