<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<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/"
	>

<channel>
	<title>Bloc d'en RainCT</title>
	<link>http://bloc.eurion.net</link>
	<description>I would love to change the world, but they won't give me the source code...</description>
	<pubDate>Sun, 27 Jul 2008 22:16:04 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>Writing a command and control application with voice recognition</title>
		<link>http://bloc.eurion.net/archives/2008/writing-a-command-and-control-application-with-voice-recognition/</link>
		<comments>http://bloc.eurion.net/archives/2008/writing-a-command-and-control-application-with-voice-recognition/#comments</comments>
		<pubDate>Sat, 26 Jul 2008 21:17:57 +0000</pubDate>
		<dc:creator>RainCT</dc:creator>
		
		<category><![CDATA[Ubuntu-Planet]]></category>

		<guid isPermaLink="false">http://bloc.eurion.net/archives/2008/writing-a-command-and-control-application-with-voice-recognition/</guid>
		<description><![CDATA[Have you ever dreamed about controlling your PC with voice commands? Well, now you can (though only some specific actions)!
What do I need?
- A computer with Ubuntu (you can still do the same on other distributions, but this post won&#8217;t cover that).
- A microphone (a cheap one will do).
- Some application(s) which you want to [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever dreamed about controlling your PC with voice commands? Well, now you can (though only some specific actions)!</p>
<p><strong>What do I need?</strong><br />
- A computer with Ubuntu (you can still do the same on other distributions, but this post won&#8217;t cover that).<br />
- A microphone (a cheap one will do).<br />
- Some application(s) which you want to control and which can be used with commands on the terminal.</p>
<p><strong>Installation</strong><br />
Go over to my <a href="https://launchpad.net/~rainct/+archive">PPA</a> and install packages <em>julius</em> and <em>julius-voxforge</em> from there.</p>
<p><strong>Writing the command and control application</strong><br />
Follow the instructions from <em>/usr/share/doc/julius-voxforge/examples/README</em> to create your own grammar, and then edit the <em>command.py</em> file to suit your needs (the simplest configuration would be to just edit the dictionary near line 60). Finally, to execute it: <em>julius -quiet -input mic -C julian.jconf 2&gt;/dev/null | ./command.py</em></p>
<p><strong>Problems</strong><br />
I don&#8217;t really have much experience with Julius, but if you have problems with the instructions explained here leave a comment or ping me on IRC (RainCT@Freenode) and I&#8217;ll try to help you. But first look at the examples below to ensure that you&#8217;ve done everything right :).</p>
<p><strong>More?</strong><br />
I&#8217;m currently working at further improving those packages and getting them into Ubuntu. Also, I may write another post in the future explaining how to create your own speech corpora and acoustic models, but I can&#8217;t promise anything.</p>
<p><strong>Example on how to control Rhythmbox:</strong></p>
<p><strong>. example.voca:</strong><br />
<code>% NS_B<br />
&lt;s&gt;	sil</code></p>
<p>% NS_E<br />
&lt;/s&gt;	sil</p>
<p>% ID<br />
DO	d uw<br />
COMP	k ax m p</p>
<p>% COMMAND<br />
PLAY	p l ey<br />
NEXT	n eh k s t<br />
PREV	p r iy v<br />
SHOW	sh ow<br />
UP	ah p<br />
DOWN	d aw n<br />
SILENCE	s ay l ax n s</p>
<p><strong>. sample.grammar</strong><br />
<code>S: NS_B ID COMMAND NS_E</code></p>
<p><strong>. command.py&#8217;s parse function</strong> (note: Wordpress breaks the indentation)<br />
<code>def parse(line):<br />
params = [param.lower() for param in line.split() if param]<br />
commands = {<br />
'play': 'rhythmbox-client --play',<br />
'silence': 'rhythmbox-client --pause',<br />
'next': 'rhythmbox-client --next',<br />
'prev': 'rhythmbox-client --previous',<br />
'show': 'rhythmbox-client --notify',<br />
'up': 'rhythmbox-client --volume-up',<br />
'down': 'rhythmbox-client --volume-down',<br />
}<br />
if params[1] in commands: os.popen(commands[params[1]])</code></p>
<p><strong>. Usage: (Action - Verbal command)</strong><br />
Reproduce - DO PLAY<br />
Pause - DO SILENCE (I didn&#8217;t use &#8220;DO PAUSE&#8221; because like that it had a very high error rate)<br />
Next song - DO NEXT<br />
Previous song - DO PREV (&#8221;DO PREVIOUS&#8221; can&#8217;t be used because VoxForge&#8217;s acoustic models don&#8217;t support some of it&#8217;s phonemes)<br />
Show the name of the current song - DO SHOW<br />
Increment Rhythmbox&#8217;s volume - DO UP<br />
Decrement Rhythmbox&#8217;s volume - DO DOWN</p>
<p><strong>Random tip:</strong><br />
You can let the computer answer to your commands using either <em>espeak &#8220;text to say&#8221;</em> or, if you have Festival (which sounds more natural) installed, <em>festival -b &#8216;(SayText &#8220;text to say&#8221;)&#8217;</em>.</p>
<p>Happy hacking!</p>
]]></content:encoded>
			<wfw:commentRss>http://bloc.eurion.net/archives/2008/writing-a-command-and-control-application-with-voice-recognition/feed/</wfw:commentRss>
		</item>
		<item>
		<title>XML Internationalization</title>
		<link>http://bloc.eurion.net/archives/2008/xml-internationalization/</link>
		<comments>http://bloc.eurion.net/archives/2008/xml-internationalization/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 12:05:06 +0000</pubDate>
		<dc:creator>RainCT</dc:creator>
		
		<category><![CDATA[Ubuntu-Planet]]></category>

		<guid isPermaLink="false">http://bloc.eurion.net/archives/2008/xml-internationalization/</guid>
		<description><![CDATA[Hey,
Okay, I know this is not a forum, but I wanted to ask for recommendations about what&#8217;s the best way handle internationalization of XML documents (of the content in it, of course, not the tags themselves). More details about why I&#8217;m asking this will come later :).
Thanks.
]]></description>
			<content:encoded><![CDATA[<p>Hey,</p>
<p>Okay, I know this is not a forum, but I wanted to ask for recommendations about what&#8217;s the best way handle internationalization of XML documents (of the content in it, of course, not the tags themselves). More details about why I&#8217;m asking this will come later :).</p>
<p>Thanks.</p>
]]></content:encoded>
			<wfw:commentRss>http://bloc.eurion.net/archives/2008/xml-internationalization/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Jornades de Programari Lliure</title>
		<link>http://bloc.eurion.net/archives/2008/jornades-de-programari-lliure/</link>
		<comments>http://bloc.eurion.net/archives/2008/jornades-de-programari-lliure/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 22:27:13 +0000</pubDate>
		<dc:creator>RainCT</dc:creator>
		
		<category><![CDATA[Programari lliure]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://bloc.eurion.net/archives/2008/jornades-de-programari-lliure/</guid>
		<description><![CDATA[Més val que tinguis el matí del dia 5 lliure, perquè sinó et perdràs les activitats estel·lars de l&#8217;equip d&#8217;Ubuntu català: taller de GIMP, Ubuntu Studio, Freevial i Frets on Fire!

Aquest dissabte, a l&#8217;UPF; t&#8217;hi esperem! Inscripció gratuïta aquí.
]]></description>
			<content:encoded><![CDATA[<p>Més val que tinguis el matí del dia 5 lliure, perquè sinó et perdràs les <a href="http://www.jornadespl.org/biblioteca/vii-jornades/papereria/programa-a4.pdf" title="[PDF] Programa complet d'activitats a les JPL.">activitats</a> estel·lars de l&#8217;equip d&#8217;Ubuntu català: taller de GIMP, Ubuntu Studio, Freevial i Frets on Fire!</p>
<p style="text-align: center"><img src="http://utils.eurion.net/hosted/ubuntu-jpl08.png" title="[Cartell] Dissabte 5 de juliol de 10 a 13:30" alt="[Cartell] Dissabte 5 de juliol de 10 a 13:30" width="450" border="0" height="400" /></p>
<p>Aquest dissabte, <a href="http://www.upf.edu/campus/franca.htm">a l&#8217;UPF</a>; t&#8217;hi esperem! Inscripció gratuïta <a href="http://www.jornadespl.org/join_form">aquí</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://bloc.eurion.net/archives/2008/jornades-de-programari-lliure/feed/</wfw:commentRss>
		</item>
		<item>
		<title>If you don&#8217;t want to waste 1 hour debugging&#8230;</title>
		<link>http://bloc.eurion.net/archives/2008/if-you-dont-want-to-waste-1-hour-debugging/</link>
		<comments>http://bloc.eurion.net/archives/2008/if-you-dont-want-to-waste-1-hour-debugging/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 22:00:12 +0000</pubDate>
		<dc:creator>RainCT</dc:creator>
		
		<category><![CDATA[Ubuntu-Planet]]></category>

		<guid isPermaLink="false">http://bloc.eurion.net/archives/2008/if-you-dont-want-to-waste-1-hour-debugging/</guid>
		<description><![CDATA[&#8230; call gtk.gdk.threads_init() when you want to work with threads in a PyGTK application.
Well, to not leave this post so short, I&#8217;ll also refer a post explaning threads on PyGTK which looks quite good (I didn&#8217;t look carefuly at it because I already knew 99% of what it says&#8230; it&#8217;s a pity that because of [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230; call <strong>gtk.gdk.threads_init()</strong> when you want to work with threads in a PyGTK application.</p>
<p>Well, to not leave this post so short, I&#8217;ll also refer a post explaning <a href="http://aruiz.typepad.com/siliconisland/2006/04/threads_on_pygt.html">threads on PyGTK</a> which looks quite good (I didn&#8217;t look carefuly at it because I already knew 99% of what it says&#8230; it&#8217;s a pity that because of that I didn&#8217;t notice the 1% that I didn&#8217;t know and which would have saved me one hour of debugging :/). Also, note that if you write your own __init__ function in order to pass data to the thread you will have to call <strong>threading.Thread.__init__(self)</strong> somewhere in it.</p>
]]></content:encoded>
			<wfw:commentRss>http://bloc.eurion.net/archives/2008/if-you-dont-want-to-waste-1-hour-debugging/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Internship</title>
		<link>http://bloc.eurion.net/archives/2008/internship/</link>
		<comments>http://bloc.eurion.net/archives/2008/internship/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 13:14:12 +0000</pubDate>
		<dc:creator>RainCT</dc:creator>
		
		<category><![CDATA[Ubuntu-Planet]]></category>

		<guid isPermaLink="false">http://bloc.eurion.net/archives/2008/internship/</guid>
		<description><![CDATA[I&#8217;m thinking about doing an internship this summer, so if you know of some programming related company in the area of Barcelona where they might be interested in taking someone I&#8217;d be grateful if you tell me :).
I&#8217;m a 17 year old technological baccalaureate student with experience in XHTML, CSS, PHP, Python and Debian/Ubuntu packaging [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m thinking about doing an internship this summer, so if you know of some programming related company in the area of Barcelona where they might be interested in taking someone I&#8217;d be grateful if you tell me :).</p>
<p>I&#8217;m a 17 year old technological baccalaureate student with experience in XHTML, CSS, PHP, Python and Debian/Ubuntu packaging (plus a bit JavaScript, bash, etc.), and the languages I know are Catalan, Spanish, English (mostly written) and spoken German. Ask for the CV if necessary.</p>
<p>Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://bloc.eurion.net/archives/2008/internship/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Catalan Ubuntu Youth</title>
		<link>http://bloc.eurion.net/archives/2008/catalan-ubuntu-youth/</link>
		<comments>http://bloc.eurion.net/archives/2008/catalan-ubuntu-youth/#comments</comments>
		<pubDate>Tue, 20 May 2008 21:23:47 +0000</pubDate>
		<dc:creator>RainCT</dc:creator>
		
		<category><![CDATA[Ubuntu-Planet]]></category>

		<guid isPermaLink="false">http://bloc.eurion.net/archives/2008/catalan-ubuntu-youth/</guid>
		<description><![CDATA[We have recently decided to created a sub-group of the Catalan LoCo Team only for the youth, with the idea to focus on approaching other young people to the Free Software world and to create a space where we can speak about those thinks that interest us, without having the entire community listening.
As a start, [...]]]></description>
			<content:encoded><![CDATA[<p>We have recently decided to created a sub-group of the <a href="http://ubuntu.cat">Catalan LoCo Team</a> only for the youth, with the idea to focus on approaching other young people to the Free Software world and to create a space where we can speak about those thinks that interest us, without having the entire community listening.</p>
<p>As a start, we have created a <a href="http://groups.google.com/group/joves-ubuntaires">mailing list</a> and this Friday we will hold our <a href="http://ubuntuforums.org/showthread.php?t=801352">first event</a> in Sant Cugat, which will be a dinner where we will meet together and discuss the further goals of the group. Of course, all of you under the age of 30 who speak Catalan are invited to come and join us!</p>
]]></content:encoded>
			<wfw:commentRss>http://bloc.eurion.net/archives/2008/catalan-ubuntu-youth/feed/</wfw:commentRss>
		</item>
		<item>
		<title>One year of LoCo&#8230;</title>
		<link>http://bloc.eurion.net/archives/2008/one-year-of-loco/</link>
		<comments>http://bloc.eurion.net/archives/2008/one-year-of-loco/#comments</comments>
		<pubDate>Sat, 17 May 2008 18:33:28 +0000</pubDate>
		<dc:creator>RainCT</dc:creator>
		
		<category><![CDATA[Ubuntu-Planet]]></category>

		<guid isPermaLink="false">http://bloc.eurion.net/archives/2008/one-year-of-loco/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://img516.imageshack.us/img516/7848/col1anyhd2.jpg"><img src="http://img516.imageshack.us/img516/945/col1anyvw0.jpg" title="(Image by Carles Oriol.)" alt="(Image by Carles Oriol.)" width="358" align="middle" border="0" height="808" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://bloc.eurion.net/archives/2008/one-year-of-loco/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ubuntu Hardy: 3G més fàcil que mai</title>
		<link>http://bloc.eurion.net/archives/2008/ubuntu-hardy-3g-mes-facil-que-mai/</link>
		<comments>http://bloc.eurion.net/archives/2008/ubuntu-hardy-3g-mes-facil-que-mai/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 20:36:49 +0000</pubDate>
		<dc:creator>RainCT</dc:creator>
		
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://bloc.eurion.net/archives/2008/ubuntu-hardy-3g-mes-facil-que-mai/</guid>
		<description><![CDATA[Fa temps vaig escriure sobre com utilitzar el mòdem USB &#8220;Huawei E220&#8243; amb la distribució de GNU/Linux Ubuntu. Doncs bé, amb la nova versió d&#8217;Ubuntu, la 8.04 Hardy Heron, la qüestió ha millorat molt des de que vaig escriure les primeres instruccions, de manera que he pensat que no està de més actualitzar-les.

Ara, al connectar [...]]]></description>
			<content:encoded><![CDATA[<p>Fa temps vaig escriure sobre com <a href="http://bloc.eurion.net/archives/2007/vodafone-mobile-connect-3g-ubuntu/">utilitzar el mòdem USB &#8220;Huawei E220&#8243;</a> amb la distribució de GNU/Linux Ubuntu. Doncs bé, amb la nova versió d&#8217;Ubuntu, la 8.04 Hardy Heron, la qüestió ha millorat molt des de que vaig escriure les primeres instruccions, de manera que he pensat que no està de més actualitzar-les.</p>
<p style="text-align: center"><img src="http://img396.imageshack.us/img396/1057/ppp0ed1.jpg" title="Captura de pantalla de l'eina «Paràmetres de xarxa»." alt="Captura de pantalla de l'eina «Paràmetres de xarxa»." width="650" height="358" /></p>
<p>Ara, al connectar el dispositiu ja no ens sortirà erròniament com a unitat de CD, i els passos per poder-lo utilitzar s&#8217;han simplificat als següents:</p>
<ul>
<li>Com abans, el primer que hem de fer és posar la targeta SIM que el mòdem incorpora en un mòbil qualsevol que tinguem a mà i des d&#8217;allà desactivar-ne el codi PIN (pot ser que també funcioni sense fer això, però no ho he provat i en tot cas tampoc em sembla probable). Tot seguit, connectem el mòdem a l&#8217;ordinador amb el cable USB que ve a la caixa.</li>
<li>Anem a Sistema -&gt; Administració -&gt; Xarxa, desbloquegem la finestra (fent clic al botó «Desbloca»), triem «Connexió punt a punt» i premem el botó «Propietats» que hi ha a l&#8217;esquerra.</li>
<li>A la finestra que apareix, marquem el quadre de selecció per habilitar la connexió, triem GRPS/UMTS a «Tipus de connexió» i emplenem els camps restants. A continuació anem a la pestanya «Mòdem» i al camp del port introduïm «/dev/ttyUSB0».</li>
</ul>
<p>I ja està! Un cop fet això, cada cop que connectem el mòdem s&#8217;hauria de connectar sol al cap d&#8217;uns instant (valor que pot rondar entre 10 segons i un o dos minuts).</p>
]]></content:encoded>
			<wfw:commentRss>http://bloc.eurion.net/archives/2008/ubuntu-hardy-3g-mes-facil-que-mai/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Catalan Hardy Release Party</title>
		<link>http://bloc.eurion.net/archives/2008/catalan-hardy-release-party/</link>
		<comments>http://bloc.eurion.net/archives/2008/catalan-hardy-release-party/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 19:32:27 +0000</pubDate>
		<dc:creator>RainCT</dc:creator>
		
		<category><![CDATA[Ubuntu-Planet]]></category>

		<guid isPermaLink="false">http://bloc.eurion.net/archives/2008/catalan-hardy-release-party/</guid>
		<description><![CDATA[Last Saturday, the 26th April, we (the Catalan LoCo Team) hold a Release Party in Caldes de Montbui (Barcelona), with an install party lasting all day. We had the support from the local town council and it was a real success.
During the morning I ran a short packaging jam for the more experienced attendants and [...]]]></description>
			<content:encoded><![CDATA[<p>Last Saturday, the 26th April, we (the <a href="https://wiki.ubuntu.com/CatalanTeam/En">Catalan LoCo Team</a>) hold a Release Party in <a href="http://en.wikipedia.org/wiki/Caldes_de_Montbui">Caldes de Montbui</a> (Barcelona), with an install party lasting all day. We had the support from the local town council and it was a real success.</p>
<p>During the morning I ran a short packaging jam for the more experienced attendants and after that <a href="http://laventuradelpingui.blogspot.com/">Jordi</a>, introduced by a town councillor, did a great presentation (photo below) that covered Free Software, GNU/Linux, Ubuntu and our team (I guess one of our members being a teacher is a good think ^^).</p>
<p style="text-align: center"><a href="http://www.flickr.com/photos/tags/holahardy/"><img src="http://img180.imageshack.us/img180/951/thbimg6889dm6.jpg" title="Jordi Monteagudo introducing GNU/Linux, Ubuntu and our LoCo Team." alt="Jordi Monteagudo introducing GNU/Linux, Ubuntu and our LoCo Team." width="450" border="0" height="338" /></a></p>
<p>Then, at midday we stopped some hours for lunch, and after that the install party continued and we organized a Free Software related treasure hunt game (which of course included a <a href="https://launchpad.net/freevial">Freevial</a> match), and the winning team got a bread which looks pretty much like the Ubuntu logo.</p>
]]></content:encoded>
			<wfw:commentRss>http://bloc.eurion.net/archives/2008/catalan-hardy-release-party/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ubuntu 8.04 - Nota de premsa de la versió per a servidors</title>
		<link>http://bloc.eurion.net/archives/2008/nota-premsa-ubuntu-hardy-servidors/</link>
		<comments>http://bloc.eurion.net/archives/2008/nota-premsa-ubuntu-hardy-servidors/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 15:22:02 +0000</pubDate>
		<dc:creator>RainCT</dc:creator>
		
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://bloc.eurion.net/archives/2008/nota-premsa-ubuntu-hardy-servidors/</guid>
		<description><![CDATA[La versió més recent per a servidors expandeix el perfil empresarial de l&#8217;Ubuntu
La versió per a servidors de l&#8217;Ubuntu 8.04 LTS combina funcionalitats avançades amb cinc anys de manteniment i suport.
La versió per a servidors de l&#8217;Ubuntu 8.04 amb manteniment estès (LTS) afegeix noves funcionalitats per millorar el rendiment, l&#8217;estabilitat i la seguretat d&#8217;aquesta plataforma [...]]]></description>
			<content:encoded><![CDATA[<p><strong>La versió més recent per a servidors expandeix el perfil empresarial de l&#8217;Ubuntu</strong></p>
<p><em>La versió per a servidors de l&#8217;Ubuntu 8.04 LTS combina funcionalitats avançades amb cinc anys de manteniment i suport.</em></p>
<p>La versió per a servidors de l&#8217;Ubuntu 8.04 amb manteniment estès (LTS) afegeix noves funcionalitats per millorar el rendiment, l&#8217;estabilitat i la seguretat d&#8217;aquesta plataforma completament mantinguda. La versió LTS va més enllà en l&#8217;expansió de l&#8217;ecosistema comercial de programari, maquinari i proveïdors de serveis que donen suport a l&#8217;Ubuntu Server.</p>
<p>El període de manteniment estès dóna resposta a les peticions de les empreses a fi d&#8217;implementar l&#8217;Ubuntu de manera generalitzada al llarg d&#8217;un període d&#8217;anys. Així mateix, posiciona l&#8217;Ubuntu Server com a plataforma on els venedors de programari i maquinari poden implementar les seves solucions. Un gran nombre de venedors han donat suport a l&#8217;Ubuntu 8.04 LTS, i molts altres l&#8217;estan provant i certificant actualment.</p>
<p><strong>Quant a l&#8217;Ubuntu 8.04 LTS Server Edition</strong></p>
<p>L&#8217;Ubuntu 8.04 LTS Server Edition és la quarta versió per a servidors de Canonical, i rebrà actualitzacions de seguretat i manteniment durant cinc anys. Entre les noves i millorades característiques disponibles amb aquesta versió LTS trobem:</p>
<p><strong>Uns fonaments sòlids</strong></p>
<ul>
<li>Major varietat d&#8217;aplicacions per a infraestructura de xarxes, incloent autenticació (FreeRadius), monitorització (Munin), VPN (OpenVPN) i còpia de seguretat (Bacula).</li>
<li>Seguretat millorada amb més polítiques integrades per a l&#8217;AppArmor i un reforçament de la seguretat del nucli.</li>
<li>Ampliació de la varietat de possibilitats d&#8217;emmagatzematge, incloent iSCSI i DRDB.</li>
<li>Més de 500 paquets amb manteniment per a servidors, i accés a a més de 20.000 components addicionals preparats per a l&#8217;Ubuntu 8.04 LTS.</li>
<li>Tallafocs integrat per a protegir servidors accessibles des de l&#8217;Internet.</li>
<li>Actualització directa des de la versió 6.06 LTS.</li>
</ul>
<p><strong>Ampli ecosistema</strong></p>
<ul>
<li>Integració amb l&#8217;Active Directory com a estàndard, amb LikeWise Open.</li>
<li>L&#8217;Ubuntu és la primera distribució que inclou l&#8217;Open JDK de Sun com una opció.</li>
<li>Aplicacions certificades per a l&#8217;Ubuntu 8.04 LTS Server Edition per Alfresco, IBM, VMWare, Parallels, Qumranet, Tresys, Zarafa, Zend, Zimbra, Zmanda i d&#8217;altres.</li>
</ul>
<p><strong>La plataform virtual ideal</strong></p>
<ul>
<li>S&#8217;afegeix KVM per a virtualitzar aplicacions i sistemes operatius.</li>
<li>Importants millores al nucli a fi d&#8217;optimitzar l&#8217;ús de recursos en virtualització.</li>
<li>S&#8217;ha millorat l&#8217;Ubuntu JeOS per optimitzar els sistemes virtuals i està llest per a ser executat en entorns VMWare o KVM de qualsevol sistema.</li>
</ul>
<p><strong>Assistència tècnica</strong></p>
<ul>
<li>El servei de gestió de l&#8217;Ubuntu, Landscape, proporciona seguretat, manteniment i gestió d&#8217;aplicacions millorats.</li>
<li>Les aplicacions i el sistema base tenen l&#8217;assistència de l&#8217;Equip de Servei de Suport Global de Canonical (GSS).</li>
<li>Podeu contractar assistència per a l&#8217;Ubuntu directament a <a href="https://shop.canonical.com">https://shop.canonical.com</a> o contactar amb un comercial de Canonical si desitgeu més informació.</li>
</ul>
<p><strong>Preu, disponibilitat i informació tècnica</strong></p>
<ul>
<li>Podeu trobar informació detallada quant a l&#8217;Ubuntu 8.04 LTS Server Edition a <a href="http://www.ubuntu.com/server">www.ubuntu.com/server</a></li>
<li>Teniu disponible l&#8217;Ubuntu 8.04 LTS Server Edition ara mateix per a ser descarregat a <a href="http://www.ubuntu.com/download">www.ubuntu.com/download</a>.</li>
</ul>
<p><small><em>Copyleft 2008 - Text original de Canonical Ltd., traducció de Siegfried Gevatter i Josep Sànchez.</em></small></p>
]]></content:encoded>
			<wfw:commentRss>http://bloc.eurion.net/archives/2008/nota-premsa-ubuntu-hardy-servidors/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ubuntu 8.04 - Nota de premsa de la versió d&#8217;escriptori</title>
		<link>http://bloc.eurion.net/archives/2008/nota-premsa-ubuntu-hardy-escriptori/</link>
		<comments>http://bloc.eurion.net/archives/2008/nota-premsa-ubuntu-hardy-escriptori/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 13:07:35 +0000</pubDate>
		<dc:creator>RainCT</dc:creator>
		
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://bloc.eurion.net/archives/2008/ubuntu-804-nota-de-premsa-de-la-versio-per-ordinadors-descriptori/</guid>
		<description><![CDATA[Publicada la versió d&#8217;escriptori de l&#8217;Ubuntu 8.04 LTS
Integra les últimes aplicacions estables amb manteniment estès.
L&#8217;Ubuntu 8.04 proporciona una plataforma estable per a venedors, desenvolupadors i usuaris de programari i maquinari. Amb tres anys de manteniment per a la versió d&#8217;escriptori, la 8.04 LTS és una gran opció per a desplegaments massius. Un ecosistema substancial, i [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Publicada la versió d&#8217;escriptori de l&#8217;Ubuntu 8.04 LTS</strong></p>
<p><em>Integra les últimes aplicacions estables amb manteniment estès.</em></p>
<p>L&#8217;Ubuntu 8.04 proporciona una plataforma estable per a venedors, desenvolupadors i usuaris de programari i maquinari. Amb tres anys de manteniment per a la versió d&#8217;escriptori, la 8.04 LTS és una gran opció per a desplegaments massius. Un ecosistema substancial, i creixent, de programari lliure i comercial preparat per a l&#8217;Ubuntu proporciona un ampli ventall de possibilitats als usuaris. Aquesta és la vuitena versió de l&#8217;Ubuntu per a escriptoris i la ruta marcada en portar –en una precisa programació semestral– un sistema operatiu comercial, gratuït, estable i completament mantingut segueix essent única.</p>
<p><strong>Les últimes i millors aplicacions</strong></p>
<p>L&#8217;Ubuntu 8.04 LTS eleva el nivell en l&#8217;experiència de l&#8217;escriptori GNU/Linux. Inclou l&#8217;última i més estable versió dels productes principals i, amb aquest esperit, és la primera distribució en portar el Firefox 3 a milions d&#8217;usuaris. La combinació de GNU/Linux i Firefox fa de l&#8217;Ubuntu 8.04 LTS un gran escriptori web, amb una àgil navegació i una molt reduïda exposició als virus, la suplantació de llocs web i als programes espia. «A Mozilla estem molt complaguts que milions d&#8217;usuaris tinguin la seva primera oportunitat de provar el Firefox 3 amb l&#8217;Ubuntu», digué John Lilly, CEO de Mozilla. «L&#8217;Ubuntu i el Firefox demostren com les tecnologies de programari lliure no només poden equiparar-se a les alternatives de programari de propietat, sinó que, de fet, les superen».</p>
<p><strong>Experiència fotogràfica millorada:</strong> la versió millorada del gestor de fotografies predeterminat, F-Spot, juntament amb una millorada detecció de càmeres i mòbils fa possible publicar, classificar, gestionar, visualitzar, esborrar, imprimir i compartir fotografies amb els amics i la família de forma més fàcil que mai.</p>
<p><strong>Compartició i descàrrega de música:</strong> els usuaris poden connectar una PSP, compartir les llistes de reproducció amb amics, comprar a la botiga de música en línia Magnatune, emetre ràdio en temps real, i connectar més dispositius que mai (amb UpnP).</p>
<p><strong>Millor reproducció de vídeo:</strong> el nou reproductor de pel·lícules predeterminat permet navegar pel YouTube i altres recursos de vídeo que es troben a l&#8217;Internet i compartir vídeos amb altra gent. S&#8217;integra amb MythTV, el TVR lliure, i et permet veure els teus programes preferits directament a l&#8217;escriptori. Brasero et permet gravar fàcilment tot el contingut a CD o DVD.</p>
<p><strong>Millores de productivitat:</strong> la integració del rellotge i el calendari permet gestionar el temps al voltant del planeta amb un sol clic per establir, assistir i rebre alertes relacionades amb les vostres cites.</p>
<p><strong>Escriptori actual:</strong> l&#8217;Ubuntu 8.04 LTS combina les últimes aplicacions del GNOME amb efectes visuals d&#8217;escriptori, donant als usuaris una experiència més agradable, intuïtiva i visualment atractiva.</p>
<p><strong>Abast dels serveis</strong></p>
<p><strong>Manteniment estès:</strong> l&#8217;Ubuntu 8.04 LTS per a l&#8217;escriptori tindrà actualitzacions de seguretat i manteniment durant tres anys, de manera que tant els usuaris corporatius com els particulars tenen un cicle més llarg fins a la propera actualització. Aquells que volen les últimes, i millors, aplicacions podran actualitzar a l&#8217;Ubuntu 8.10, previst per a l&#8217;octubre del 2008, i aquells que prefereixin cicles de desplegament més llargs poden continuar amb l&#8217;Ubuntu 8.04 durant tres anys fins a passar cap a la següent versió LTS.</p>
<p><strong>Més aplicacions:</strong> més de 30 venedors independents de programari tenen planificat distribuir i mantenir les seves aplicacions a la plataforma d&#8217;escriptori 8.04 LTS, incloent Adobe, Google, Real Networks, Nero, Skype, Corel, Parallels i Fluendo.</p>
<p><strong>Millor accessibilitat:</strong> el suport gestual permet als usuaris navegar per l&#8217;Ubuntu d&#8217;una manera més natural. També hi ha disponible un major suport per a les ordres de veu, l&#8217;accessibilitat de teclat, les tecles lentes, l&#8217;ampliació de l&#8217;escriptori i més.</p>
<p><strong>Preu i disponibilitat</strong></p>
<p>L&#8217;Ubuntu 8.04 LTS Desktop Edition és gratuït i el teniu disponible per a ser descarregat a <a href="http://www.ubuntu.com/download">http://www.ubuntu.com/download</a>.</p>
<p><small><em>Copyleft 2008 - Text original de Canonical Ltd., traducció de Siegfried Gevatter i Josep Sànchez.</em></small></p>
]]></content:encoded>
			<wfw:commentRss>http://bloc.eurion.net/archives/2008/nota-premsa-ubuntu-hardy-escriptori/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Random stuff about this and that</title>
		<link>http://bloc.eurion.net/archives/2008/random-stuff-about-this-and-that/</link>
		<comments>http://bloc.eurion.net/archives/2008/random-stuff-about-this-and-that/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 21:33:54 +0000</pubDate>
		<dc:creator>RainCT</dc:creator>
		
		<category><![CDATA[Ubuntu-Planet]]></category>

		<guid isPermaLink="false">http://bloc.eurion.net/archives/2008/random-stuff-about-this-and-that/</guid>
		<description><![CDATA[Sorry to disappoint you, but yes, this boring guy is still around and bloggin&#8217; :).
With school, a Wordpress upgrade (see below for more details), the strange fact that I only have ideas for posts when I can&#8217;t write them, etc. this has been pretty abandoned for some months but well, I guess I&#8217;ll be posting [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry to disappoint you, but yes, this boring guy is still around and bloggin&#8217; :).</p>
<p>With school, a Wordpress upgrade (see below for more details), the strange fact that I only have ideas for posts when I can&#8217;t write them, etc. this has been pretty abandoned for some months but well, I guess I&#8217;ll be posting something from time to time again, and as a start I thought that I might write one of those nice random-stuff-which-nobody-wants-to-know posts.</p>
<p><strong>Wordpress</strong><br />
First of all, I now understand why there were that many &#8220;Yay! I upgraded Wordpress!&#8221; posts. After skipping two new versions I decided to finally upgrade as there were some important security fixes, but for some reason it failed to update the database correctly and my blog was kinda broken for some weeks until I took the time to mess with it and create the new tables manually&#8230; I hope that everything works again now, please tell me if you find something that doesn&#8217;t. Ah, and of course they&#8217;ve already released a new version by now&#8230; Let&#8217;s see when I upgrade to that one :P.</p>
<p><strong>The important stuff</strong><br />
Just two posts ago I explained that I had become an Ubuntu Member. Well, now I&#8217;m also a MOTU :). I&#8217;ve also become 17 two months ago, but as by that time the blog was already broken I couldn&#8217;t write one of those cool &#8220;myself.age += 1&#8243; posts xD.</p>
<p><strong>Packaging Jam<br />
</strong>I&#8217;ll be running a little Packaging Jam together with <a href="https://wiki.ubuntu.com/PatrickDavies" title="jpatrick (MOTU)">Jonathan Davies</a> during our LoCo Team&#8217;s <a href="https://wiki.ubuntu.com/CatalanTeam/HolaHardy">Hardy Release party</a> (in Catalan). So if you speak Catalan, always wanted to learn how that packaging stuff works and and happen to be near Caldes de Montbui the 26th of this month, have a look at <a href="https://wiki.ubuntu.com/CatalanTeam/HolaHardy/PackagingJam">this wiki page</a> (in Catalan) and inscribe yourself.</p>
<p><strong>Shell history memo</strong><br />
Well, everyone is doing this, so I can&#8217;t be less:<br />
[rainct, ~]$ history|awk &#8216;{a[$2]++ } END{for(i in a){print a[i] &#8221; &#8221; i}}&#8217;|sort -rn|head<br />
70 geany<br />
68 bzr<br />
59 cd<br />
25 ls<br />
24 rm<br />
22 cat<br />
16 egrep<br />
16 apt-cache<br />
14 debuild<br />
11 ping</p>
]]></content:encoded>
			<wfw:commentRss>http://bloc.eurion.net/archives/2008/random-stuff-about-this-and-that/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Error general d&#8217;Internet</title>
		<link>http://bloc.eurion.net/archives/2008/error-general-dinternet/</link>
		<comments>http://bloc.eurion.net/archives/2008/error-general-dinternet/#comments</comments>
		<pubDate>Thu, 17 Jan 2008 15:54:34 +0000</pubDate>
		<dc:creator>RainCT</dc:creator>
		
		<category><![CDATA[Xorrades]]></category>

		<guid isPermaLink="false">http://bloc.eurion.net/archives/2008/xorrades/error-general-dinternet/</guid>
		<description><![CDATA[Haurien de prohibir de l&#8217;ús de l&#8217;OpenOffice.org, ja que pel que sembla pot ser molt perillós&#8230;

Això resol el dubte de com l&#8217;home que va petar tot l&#8217;Internet va aconseguir-ho. Segur que feia servir l&#8217;OpenOffice.org. (Allò que diuen al vídeo de tenir moltes pàgines obertes es tonteria&#8230; Com volen que així s&#8217;espatlli l&#8217;Internet? L&#8217;OpenOffice és una [...]]]></description>
			<content:encoded><![CDATA[<p>Haurien de prohibir de l&#8217;ús de l&#8217;OpenOffice.org, ja que pel que sembla pot ser <strong>molt</strong> perillós&#8230;</p>
<p style="text-align: center"><img src="http://img297.imageshack.us/img297/8830/oooerrorinternetxl1.png" title="OpenOffice.org: Error general d'Internet" alt="OpenOffice.org: Error general d'Internet" border="0" width="490" height="350" /></p>
<p>Això resol el dubte de com l&#8217;<a href="http://www.youtube.com/watch?v=z4vDClhnJjs">home que va petar tot l&#8217;Internet</a> va aconseguir-ho. Segur que feia servir l&#8217;OpenOffice.org. (Allò que diuen al vídeo de tenir moltes pàgines obertes es tonteria&#8230; Com volen que així s&#8217;espatlli l&#8217;Internet? L&#8217;OpenOffice és una amenaça molt més creïble! :P).<a href="http://www.youtube.com/watch?v=z4vDClhnJjs">  </a></p>
]]></content:encoded>
			<wfw:commentRss>http://bloc.eurion.net/archives/2008/error-general-dinternet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Introduction to Debian&#8217;s Bug Tracking System (BTS)</title>
		<link>http://bloc.eurion.net/archives/2007/introduction-to-debian-bts/</link>
		<comments>http://bloc.eurion.net/archives/2007/introduction-to-debian-bts/#comments</comments>
		<pubDate>Fri, 07 Dec 2007 11:25:51 +0000</pubDate>
		<dc:creator>RainCT</dc:creator>
		
		<category><![CDATA[Debian]]></category>

		<category><![CDATA[Ubuntu-Planet]]></category>

		<guid isPermaLink="false">http://bloc.eurion.net/archives/2007/ubuntu-i-programari-lliure/46/</guid>
		<description><![CDATA[I assume you all know that Ubuntu is based on Debian, and that a lot of the packages available in the repositories are directly &#8220;copied&#8221; from Debian. Some of this packages, however, have been patched by Ubuntu developers and thus have diverged from those in Debian: such packages have to be merged (i.e., the same [...]]]></description>
			<content:encoded><![CDATA[<p>I assume you all know that Ubuntu is based on Debian, and that a lot of the packages available in the repositories are directly &#8220;copied&#8221; from Debian. Some of this packages, however, have been patched by Ubuntu developers and thus have diverged from those in Debian: such packages have to be <a href="https://wiki.ubuntu.com/UbuntuDevelopment/Merging">merged</a> (i.e., the same changes, if they are still necessary, have to be applied again to each new version of them that gets into Ubuntu). Hence, since a) we are very good people and want Debian to enjoy those patched too, and b) such packages represent an unneeded maintenance overheat, as the same changes have to be applied again and again, it&#8217;s obvious that they have to be forwarded to Debian for their inclusion there.</p>
<p>So, why am I writing this? You all know our friend <a href="https://bugs.launchpad.net/ubuntu">Launchpad</a>, right? Now let&#8217;s have a look at <a href="http://www.debian.org/Bugs/">Debian&#8217;s BTS</a>&#8230; One word, intimidating. At least this was what I thought the first time I saw it, so I decided that I would write this post to introduce you to it&#8217;s basic use (it doesn&#8217;t make much sense, as there&#8217;s a big link to the help on the start page, but well&#8230; perhaps if you read it here you&#8217;ll fell more like reading it&#8230; or not :P).</p>
<p><span style="font-weight: bold">Reporting a bug</span></p>
<p>How does it work? Just send an e-mail to submit@bugs.debian.org, with the following content:</p>
<p><span style="font-style: italic">Package: &lt;package name&gt;</span><br />
<span style="font-style: italic">Version: &lt;package version&gt;</span></p>
<p><span style="font-style: italic">&lt;Bug description here&gt;</span></p>
<p>Easy, isn&#8217;t it? The mail subject will be the title for the bug, and the version <em>field</em> can even be omitted if you don&#8217;t know it&#8230; Now, there&#8217;s something more you should know as an Ubuntu user: if you want to recognize a bug as coming from Ubuntu (for example if you are forwarding it from Launchpad), add the two following lines after the package name:</p>
<p><span style="font-style: italic">User: ubuntu-devel@lists.ubuntu.com</span><br />
<span style="font-style: italic">Usertags: origin-ubuntu hardy</span></p>
<p>OK. Now this is all. Just send such a mail and after some minutes you will receive a message telling you the bug number it got. If you want to send additional information just mail to &lt;bug number&gt;@bugs.debian.org. You won&#8217;t need much time to feel comfortable with it ;).</p>
<p><span style="font-weight: bold">Searching bugs</span></p>
<p>Searching for bugs can still be somewhat unfriendly. If you think so, this might help a bit: «sudo aptitude install reportbug-ng». Now look on Applications -&gt; System Tools. Now you are ready to rock on forwarding bugs to Debian!</p>
]]></content:encoded>
			<wfw:commentRss>http://bloc.eurion.net/archives/2007/introduction-to-debian-bts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>This doesn&#8217;t look like an introduction, does it? :)</title>
		<link>http://bloc.eurion.net/archives/2007/this-doesnt-look-like-an-introduction-does-it/</link>
		<comments>http://bloc.eurion.net/archives/2007/this-doesnt-look-like-an-introduction-does-it/#comments</comments>
		<pubDate>Fri, 30 Nov 2007 19:58:13 +0000</pubDate>
		<dc:creator>RainCT</dc:creator>
		
		<category><![CDATA[Ubuntu-Planet]]></category>

		<guid isPermaLink="false">http://bloc.eurion.net/archives/2007/ubuntu-planet/this-doesnt-look-like-an-introduction-does-it/</guid>
		<description><![CDATA[It was somewhat around one and half years ago when I discovered Planet Ubuntu and started reading the thoughts that many of these great persons that make Ubuntu possible take the time to write down there. Some months later I stumbled upon the list of LoCo Teams, and seeing that there was something going on [...]]]></description>
			<content:encoded><![CDATA[<p>It was somewhat around one and half years ago when I discovered Planet Ubuntu and started reading the thoughts that many of these great persons that make Ubuntu possible take the time to write down there. Some months later I stumbled upon the list of LoCo Teams, and seeing that there was something going on about a Catalan Team (which was an inactive project when I read about it the first time) I immediately joined it&#8217;s mailing list, with the time becoming an active member of it.</p>
<p>Not much time had passed when, early this summer, after I had been messing a bit with Launchpad, I had the idea to visit the #ubuntu-motu channel and perhaps try fixing some little bug; and well, that&#8217;s how the <del>evil</del> awesome guys there achieved to wash my mind letting me forget about the web projects I was working on by that time and helped me to successfully start contributing to Ubuntu with packaging related stuff :D.</p>
<p>So that&#8217;s the story of how that «planet were many great Ubuntu guys post», became the «planet were many great Ubuntu Members post and were my messages might appear, too, some day», and now is «the planet for which I&#8217;m writing this message right now».</p>
<p>Well, what more can I say now that I got you all bored, beside this last words?</p>
<p><em><a href="https://wiki.ubuntu.com/UbuntuDevelopment">Join us</a> now and package software;<br />
You&#8217;ll enjoy it, <a href="https://wiki.ubuntu.com/MOTU#head-ec7a97d5af67e96747b4f36993232ff434f4486c">MOTU Contributors</a>, you&#8217;ll enjoy it.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://bloc.eurion.net/archives/2007/this-doesnt-look-like-an-introduction-does-it/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Yehaaa!</title>
		<link>http://bloc.eurion.net/archives/2007/yehaaa/</link>
		<comments>http://bloc.eurion.net/archives/2007/yehaaa/#comments</comments>
		<pubDate>Thu, 29 Nov 2007 19:44:23 +0000</pubDate>
		<dc:creator>RainCT</dc:creator>
		
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://bloc.eurion.net/archives/2007/uncategorized/yehaaa/</guid>
		<description><![CDATA[ 

Vull donar les gràcies a tots els que m&#8217;heu donat el vostre suport! 
I&#8230; bé, ja diré més a planet.ubuntu.com  
]]></description>
			<content:encoded><![CDATA[<p> <a href="http://bloc.eurion.net/wp-content/uploads/2007/11/ubuntumember.png" title="ubuntumember.png"></a></p>
<p style="text-align: center"><a href="http://bloc.eurion.net/wp-content/uploads/2007/11/ubuntumember.png" title="ubuntumember.png"><img src="http://bloc.eurion.net/wp-content/uploads/2007/11/ubuntumember-little.png" title="ubuntumember.png" alt="ubuntumember.png" border="0" width="490" height="240" /></a></p>
<p align="center"><em>Vull donar les gràcies a tots els que m&#8217;heu donat el vostre suport! </em></p>
<p align="center"><em>I&#8230; bé, ja diré més a planet.ubuntu.com <img src='http://bloc.eurion.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </em></p>
]]></content:encoded>
			<wfw:commentRss>http://bloc.eurion.net/archives/2007/yehaaa/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Instal·lar fàcilment programes de la Hardy</title>
		<link>http://bloc.eurion.net/archives/2007/instal%c2%b7lar-facilment-programes-de-la-hardy/</link>
		<comments>http://bloc.eurion.net/archives/2007/instal%c2%b7lar-facilment-programes-de-la-hardy/#comments</comments>
		<pubDate>Fri, 23 Nov 2007 20:47:38 +0000</pubDate>
		<dc:creator>RainCT</dc:creator>
		
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://bloc.eurion.net/archives/2007/ubuntu-i-programari-lliure/instal%c2%b7lar-facilment-programes-de-la-hardy/</guid>
		<description><![CDATA[La Hardy és la versió de l&#8217;Ubuntu que actualment es troba en desenvolupament i que incorpora les últimes versions de molts programes, i fins i tot alguns de nous. No és gaire difícil trobar-nos amb que vulguem instal·lar alguna aplicació (o una versió nova d&#8217;aquesta) que estigui als repositoris de la Hardy però no als [...]]]></description>
			<content:encoded><![CDATA[<p>La <strong>Hardy</strong> és la versió de l&#8217;Ubuntu que actualment es troba en desenvolupament i que incorpora les últimes versions de molts programes, i fins i tot alguns de nous. No és gaire difícil trobar-nos amb que vulguem instal·lar alguna aplicació (o una versió nova d&#8217;aquesta) que estigui als repositoris de la Hardy però no als de la versió estable que estiguem fent servir. Podríem pensar que en aquest cas l&#8217;única possibilitat d&#8217;aconseguir aquest programa (o actualització) és baixar els paquets que calguin, un per un, des de <a href="http://packages.ubuntu.com">packages.ubuntu.com</a>&#8230; Doncs, per sort, no és així :).</p>
<p>En un post al <a href="http://planet.ubuntu.com/">planet anglès</a>, en <a href="https://wiki.ubuntu.com/RaphaelPinson">Raphaël Pinson</a> ens explica com <a href="http://raphink.info/using-backports-safely-with-aptpreferences">gaudir dels «backports» de forma segura</a>; segurament aquesta no és una cosa que interessi gaire (se suposa que els <em>backports</em> no han de portar problemes), però sí que és molt útil el que escriu:  el mateix procediment pot ser adaptat molt fàcilment per tal de que ens possibiliti la instal·lació de paquets de la Hardy utilitzant les mateixes eines amb que treballem habitualment.</p>
<p>Per a això poder fer això només cal:<br />
<strong>1)</strong> obrir una terminal,<br />
<strong>2)</strong> executar-hi «sudo gedit /etc/apt/sources.list», afegir la línia «<em>deb http://archive.ubuntu.com/ubuntu/ main restricted universe multiverse</em>» al document que s&#8217;obrirà a l&#8217;editor de textos i guardar,<br />
<strong>3)</strong> executar (altre cop a la terminal) «sudo gedit /etc/apt/preferences», escriure les quatre línies que hi ha a continuació a l&#8217;editor i guardar,<br />
<em>Explanation: Hardy packages have a lower priority<br />
Package: *<br />
Pin: release a=hardy<br />
Pin-Priority: 75</em><br />
<strong>4)</strong> Executar l&#8217;ordre «sudo aptitude update» per tal d&#8217;actualitzar les llistes de paquets.</p>
<p>Un cop fetes aquestes quatre coses, ja està! Ara ja podeu córrer a obrir el gestor de paquets Synaptic, buscar-hi aquell programa que voleu actualitzar i al menú «Paquet» triar l&#8217;opció  «Força la versió&#8230;», on ens apareixerà aquella que hi ha a la Hardy. Si sou d&#8217;aquells que, com jo, preferiu la terminal, podeu actualitzar un paquet fent: «sudo aptitude install reportbug-ng/hardy» (on «reportbug-ng» és el nom del paquet en qüestió) o en cas de que això no funcioni «sudo aptitude -t hardy install reportbug-ng» (per agafar les dependències també de la Hardy).</p>
]]></content:encoded>
			<wfw:commentRss>http://bloc.eurion.net/archives/2007/instal%c2%b7lar-facilment-programes-de-la-hardy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Nou logotip de Renfe</title>
		<link>http://bloc.eurion.net/archives/2007/nou-logotip-de-renfe/</link>
		<comments>http://bloc.eurion.net/archives/2007/nou-logotip-de-renfe/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 17:37:41 +0000</pubDate>
		<dc:creator>RainCT</dc:creator>
		
		<category><![CDATA[Real Life]]></category>

		<category><![CDATA[Xorrades]]></category>

		<guid isPermaLink="false">http://bloc.eurion.net/archives/2007/real-life/nou-logotip-de-renfe/</guid>
		<description><![CDATA[M&#8217;ha arribat una informació confidencial amb la què no sé que fer,  ja que tampoc faig pas massa ús dels trens, però segur que al nou col·lectiu d&#8217;admiradors de Renfe aquest, &#8220;catalans emprenyats&#8220;, em sembla que es diu (està clar que aquest és un nom irònic, tothom sap que no tenen absolutament cap motiu [...]]]></description>
			<content:encoded><![CDATA[<p>M&#8217;ha arribat una informació confidencial amb la què no sé que fer,  ja que tampoc faig pas massa ús dels trens, però segur que al nou col·lectiu d&#8217;admiradors de Renfe aquest, &#8220;<a href="http://rcarreras.blogspot.com/2007/11/noms-per-catalans-emprenyats.html">catalans emprenyats</a>&#8220;, em sembla que es diu (està clar que aquest és un nom irònic, tothom sap que no tenen absolutament cap motiu per estar-ho) els farà gracia conèixer-la.</p>
<p>La qüestió és que s&#8217;ha filtrat la informació de que l&#8217;<a href="http://barcelona.e-noticies.com/concentraci%F3-pel-mal-servei-de-renfe-14332.html">estimada</a> companyia Renfe, vist que viu una gran època d&#8217;esplendor i considerant el gran bé que té l&#8217;honor d&#8217;aportar a la societat, portant la gent amb <del>tant retard</del> tanta puntualitat com pot a la seva destinació, està pensant en canviar el seu avorrit logotip per un de molt més adequat a la situació:</p>
<p><a href="http://bloc.eurion.net/wp-content/uploads/2007/11/renfebarcelona.png" title="renfebarcelona.png"></a></p>
<p style="text-align: center"><a href="http://bloc.eurion.net/wp-content/uploads/2007/11/renfebarcelona.png" title="renfebarcelona.png"><img src="http://bloc.eurion.net/wp-content/uploads/2007/11/renfebarcelona.png" alt="renfebarcelona.png" width="454" height="200" /></a></p>
<p><em>Traducció per als qui no entenguin la llengua del país veí, que tan amablement ens <del>imposa</del> ofereix els serveis de la Renfe: &#8220;Tingues fe&#8221;.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://bloc.eurion.net/archives/2007/nou-logotip-de-renfe/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tremulous - T&#8217;apuntes a matar aliens?</title>
		<link>http://bloc.eurion.net/archives/2007/tremulous-tapuntes-a-matar-aliens/</link>
		<comments>http://bloc.eurion.net/archives/2007/tremulous-tapuntes-a-matar-aliens/#comments</comments>
		<pubDate>Sun, 11 Nov 2007 13:59:09 +0000</pubDate>
		<dc:creator>RainCT</dc:creator>
		
		<category><![CDATA[Jocs]]></category>

		<category><![CDATA[Programari lliure]]></category>

		<guid isPermaLink="false">http://bloc.eurion.net/archives/2007/ubuntu-i-programari-lliure/tremulous-tapuntes-a-matar-aliens/</guid>
		<description><![CDATA[Trenco el silenci mortal que regnava aquí per parlar-vos d&#8217;un gran shooter en primera persona que he trobat fa cosa d&#8217;una setmana. Es tracta d&#8217;un joc en línia amb dos equips, un d&#8217;humans i un altre d&#8217;aliens (uns «bitxus raros»), que lògicament han d&#8217;acabar amb l&#8217;equip contrari.
El que caracteritza aquest joc, a part de que [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://bloc.eurion.net/wp-content/uploads/2007/11/tremulous1.jpg" title="tremulous1.jpg" alt="tremulous1.jpg" align="left" vspace="5" hspace="5" />Trenco el silenci mortal que regnava aquí per parlar-vos d&#8217;un gran shooter en primera persona que he trobat fa cosa d&#8217;una setmana. Es tracta d&#8217;un joc en línia amb dos equips, un d&#8217;humans i un altre d&#8217;aliens (uns «bitxus raros»), que lògicament han d&#8217;acabar amb l&#8217;equip contrari.</p>
<p>El que caracteritza aquest joc, a part de que és programari lliure, és que a més de consistir en disparar a tot el que es mou també compta amb elements de joc d&#8217;estratègia en temps real, o traduït: també hi ha construccions. Així, els humans tenen els &#8220;telenodes&#8221;, què són el punts de &#8220;spawn&#8221; (el lloc on ressusciten els personatges que han mort), i els aliens tenen els &#8220;eggs&#8221; que venen a ser el mateix; també hi ha defenses automàtiques, punts de regeneració (per als humans, els aliens es curen sols), construccions que possibiliten l&#8217;evolució (per als aliens) o la compra de noves armes (cadascuna és bona per a una cosa en concret) i objectes (armadura, &#8220;jetpack&#8221; per volar, etc.) per als humans, etc. He dit que els aliens poden evolucionar i els humans poden comprar; això ho fan gracies als punts d&#8217;evolució / crèdits que aconsegueixen al matar enemics. Els objectes disponibles també augmenten segons el nivell en que està l&#8217;equip (n&#8217;hi ha 3, i aquest puja a mesura que es mata enemics).</p>
<p><img src="http://bloc.eurion.net/wp-content/uploads/2007/11/tremulous2.jpg" title="tremulous2.jpg" alt="tremulous2.jpg" align="right" vspace="5" hspace="5" /> Podeu trobar el joc als repositoris de l&#8217;Ubuntu i Debian sota el seu nom, Tremulous,  (aneu a «Sistema -&gt; Administració -&gt; Gestor de paquets Synaptic» per a insta?lar-lo) o baixar-ne la versió per a Mac o «aquell altre sistema» a la seva web: <a href="http://tremulous.net">tremulous.net</a>.</p>
<p>Ah, també comentar que el mapa que més m&#8217;agrada és el &#8220;ATCS&#8221;, els altres són molt grans i sempre m&#8217;hi acabo perdent (a part de que sembla que els aliens hi tenen avantatja) :P. Vinga, a veure si ens trobem jugant-hi!</p>
]]></content:encoded>
			<wfw:commentRss>http://bloc.eurion.net/archives/2007/tremulous-tapuntes-a-matar-aliens/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Freevial</title>
		<link>http://bloc.eurion.net/archives/2007/the-freevial/</link>
		<comments>http://bloc.eurion.net/archives/2007/the-freevial/#comments</comments>
		<pubDate>Sun, 09 Sep 2007 17:02:04 +0000</pubDate>
		<dc:creator>RainCT</dc:creator>
		
		<category><![CDATA[Jocs]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://bloc.eurion.net/archives/2007/uncategorized/the-freevial/</guid>
		<description><![CDATA[Avui ha tingut lloc la primera partida de Freevial al món.
Idea de&#8217;n Nil i desenvolupat per en Carles Oriol i jo, el Freevial és un joc de preguntes tipus trivia, amb gràfics similars als dels concursos de TV, que estem fent per a la GrescaGutsy de l&#8217;Equip català d&#8217;Ubuntu.
Aquest matí ens hem reunit uns quants [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://img249.imageshack.us/img249/6071/cartellqh8.jpg" title="The Freevial: Miniatura del Cartell" alt="The Freevial: Miniatura del Cartell" align="left" border="0" vspace="5" width="106" height="150" hspace="5" />Avui ha tingut lloc la primera partida de <a href="https://launchpad.net/freevial" title="Pàgina del projecte: Freevial">Freevial</a> al món.</p>
<p>Idea de&#8217;n Nil i desenvolupat per en <a href="http://www.kumbaworld.com/">Carles Oriol</a> i jo, el Freevial és un joc de preguntes tipus trivia, amb gràfics similars als dels concursos de TV, que estem fent per a la <a href="https://wiki.ubuntu.com/CatalanTeam/GrescaGutsy">GrescaGutsy</a> de l&#8217;<a href="http://ubuntu.cat" title="Equip català d'Ubuntu">Equip català d&#8217;Ubuntu</a>.</p>
<p>Aquest matí ens hem reunit uns quants per tal de provar el joc en una partida real, i de pas escriure més preguntes entre tots. <a href="http://www.flickr.com/photos/13079241@N07/sets/72157601935003907/" title="Més captures de pantalla"><img src="http://farm2.static.flickr.com/1137/1350487795_f63ce47ab4_m.jpg" title="Freevial: Creació d'equip" alt="Freevial: Creació d'equip" align="right" border="0" vspace="5" width="240" height="180" hspace="5" /></a>No crec que en <a href="http://recepteslinux.homelinux.org/wordpress/">papapep</a> tardi gaire en penjar alguna foto.</p>
<p>Ha estat molt bé això de trobar-nos cara a cara desprès de tant temps a les llistes i l&#8217;IRC, i el joc ha pogut demostrar ho bé que funciona.</p>
<p>Per cert, aquesta nit hi ha <a href="http://ubuntuforums.org/showthread.php?t=546048">reunió extraordinadia</a> de l&#8217;equip, i si recordo bé el personatge que s&#8217;ha menjat la meitat de les galetes (aka papapep) ha estat tan amable de proposar que matarà a qui hi falti ;).</p>
]]></content:encoded>
			<wfw:commentRss>http://bloc.eurion.net/archives/2007/the-freevial/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
