<?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>stuff</title>
	<atom:link href="http://blog.beford.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.beford.org</link>
	<description></description>
	<lastBuildDate>Fri, 13 Aug 2010 22:59:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Obtener lista de karma en teams Launchpad.net</title>
		<link>http://blog.beford.org/2010/07/30/obtener-lista-de-karma-en-teams-launchpad-net/</link>
		<comments>http://blog.beford.org/2010/07/30/obtener-lista-de-karma-en-teams-launchpad-net/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 23:55:13 +0000</pubDate>
		<dc:creator>Fernando</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.beford.org/?p=108</guid>
		<description><![CDATA[Update: I've just updated the bookmarklet, I added the option to tell it the team size, it was hardcoded at 200, now you can put the value, also it doesn't show members with 0 karma. I'll probably get off my &#8230; <a href="http://blog.beford.org/2010/07/30/obtener-lista-de-karma-en-teams-launchpad-net/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Update:</strong> I've just updated the bookmarklet, I added the option to tell it the team size, it was hardcoded at 200, now you can put the value, also it doesn't show members with 0 karma. I'll probably get off my laziness and code it in perl/python <img src='http://blog.beford.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Este es un pequeño javascript para obtener una lista de los miembros de un equipo de launchpad, organizada por el karma, utilizando el API de launchpad.net y Mochikit.</p>
<p>Arrastren el enlace a su barra de favoritos, y luego dentro de www.launchpad.net hagan clic en el:  <a href="javascript:(function(){var%20d=loadJSONDoc('/api/devel/~'+prompt('Team%20name:',%20'ubuntu-co')+'/members?ws.size='+prompt('Team%20size:',%20'250'));d.addBoth(function(res){res.entries.sort(function(a,b){return%20parseFloat(b.karma)-parseFloat(a.karma)});msg=&quot;&quot;;for(i=0;i&lt;res.total_size;i++){if(res.entries[i].karma==0)%20break;msg=msg+&quot;\r\n&quot;+'&lt;tr&gt;&lt;td&gt;'+(i+1)+'&lt;/td&gt;&lt;td&gt;&lt;a%20href=&quot;/~'+res.entries[i].name+'&quot;%20class=&quot;sprite%20person&quot;&gt;'+res.entries[i].display_name+'&lt;/a&gt;&lt;/td&gt;&lt;td&gt;'+res.entries[i].karma+'&lt;/td&gt;&lt;/tr&gt;';};document.body.innerHTML=&quot;&lt;table%20class=\&quot;listing\&quot;%20id=\&quot;activemembers\&quot;&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;&amp;nbsp;&lt;/th&gt;&lt;th&gt;Name&lt;/th&gt;&lt;th&gt;Karma&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&quot;+msg+&quot;&lt;/tbody&gt;&lt;/table&gt;&quot;;});})();">Karma table</a></p>
<p><a href="http://blog.beford.org/wp-content/uploads/2010/07/bookmarklet.png"><img class="aligncenter size-medium wp-image-110" title="bookmarklet" src="http://blog.beford.org/wp-content/uploads/2010/07/bookmarklet-300x284.png" alt="" width="300" height="284" /></a></p>
<p>Este es el codigo mejor organizado, para el que lo quiera ver:</p>
<pre>javascript:(
 function(){
 var d = loadJSONDoc('/api/devel/~'+prompt('Team name:', 'ubuntu-co')+'/members?ws.size=200');
 d.addBoth(function (res) {
 res.entries.sort(function(a,b) { return parseFloat(b.karma) - parseFloat(a.karma) } );
 msg = "";
 for (i=0;i&lt;res.total_size;i++) {
 msg =  msg + "\r\n" + '&lt;tr&gt;&lt;td&gt;'+(i+1)+'&lt;/td&gt;
&lt;td&gt;&lt;a href="/~'+res.entries[i].name+'"&gt;'+res.entries[i].display_name+'&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;'+res.entries[i].karma+'&lt;/td&gt;&lt;/tr&gt;';
 };
 document.body.innerHTML="&lt;table class=\"listing\" id=\"activemembers\"&gt;
&lt;thead&gt;&lt;tr&gt;&lt;th&gt;&amp;nbsp;&lt;/th&gt;&lt;th&gt;Name&lt;/th&gt;&lt;th&gt;Karma&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;
&lt;tbody&gt;"+msg+"&lt;/tbody&gt;
&lt;/table&gt;";
 });
 }
)();
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.beford.org/2010/07/30/obtener-lista-de-karma-en-teams-launchpad-net/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Explotar vulnerabilidad LNK</title>
		<link>http://blog.beford.org/2010/07/27/explotar-vulnerabilidad-lnk/</link>
		<comments>http://blog.beford.org/2010/07/27/explotar-vulnerabilidad-lnk/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 17:40:20 +0000</pubDate>
		<dc:creator>Fernando</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[spanish]]></category>

		<guid isPermaLink="false">http://blog.beford.org/?p=100</guid>
		<description><![CDATA[Gracias al analisis sobre la vulnerabilidad y explotacion de LNK realizado por Daniel, se pudo crear un archivo LNK indetectable por los Antivirus que reproduce esta falla, les recomiendo esta lectura a los que esten interesados en este bug.]]></description>
			<content:encoded><![CDATA[<p>Gracias al <a title="Análisis vulnerabilidad CVE-2010-2568 (Archivos .LNK)" href="http://www.sinfocol.org/2010/07/analisis-vulnerabilidad-cve-2010-2568/">analisis sobre la vulnerabilidad y explotacion de LNK</a> realizado por Daniel, se pudo crear un archivo LNK indetectable por los Antivirus que reproduce esta falla, les recomiendo esta lectura a los que esten interesados en este bug.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.beford.org/2010/07/27/explotar-vulnerabilidad-lnk/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Defconf and smpCTF 2010 PreQuals</title>
		<link>http://blog.beford.org/2010/07/12/defconf-and-smpctf-2010-prequals/</link>
		<comments>http://blog.beford.org/2010/07/12/defconf-and-smpctf-2010-prequals/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 18:16:23 +0000</pubDate>
		<dc:creator>Fernando</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[smpctf]]></category>

		<guid isPermaLink="false">http://blog.beford.org/?p=98</guid>
		<description><![CDATA[Este año participé con el equipo de Daniel en los Prequals de Defcon y smpCTF. Fue una gran experiencia, no habia participado en este tipo de eventos hace varios años, desde que deje de resolver los retos de Yashira, logramos &#8230; <a href="http://blog.beford.org/2010/07/12/defconf-and-smpctf-2010-prequals/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Este año participé con el equipo de <a href="http://sinfocol.org">Daniel</a> en los Prequals de Defcon y smpCTF. Fue una gran experiencia, no habia participado en este tipo de eventos hace varios años, desde que deje de resolver los retos de Yashira, logramos quedar en las posiciones 91/266 en Defcon y 30/196 en el smpCTF, por encima de otros equipos de Colombia.</p>
<p>Daniel ya publicó algunos papers sobre Defcon, y pronto colocará los nuevos sobre smpCTF.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.beford.org/2010/07/12/defconf-and-smpctf-2010-prequals/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>La General Electrics necesita un traductor :D</title>
		<link>http://blog.beford.org/2009/12/30/la-general-electrics-necesita-un-traductor-d/</link>
		<comments>http://blog.beford.org/2009/12/30/la-general-electrics-necesita-un-traductor-d/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 01:55:32 +0000</pubDate>
		<dc:creator>Fernando</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.beford.org/2009/12/30/la-general-electrics-necesita-un-traductor-d/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.beford.org/wp-content/uploads/2009/12/ge1.jpg"><img class="aligncenter size-thumbnail wp-image-93" title="ge" src="http://blog.beford.org/wp-content/uploads/2009/12/ge1-150x150.jpg" alt="ge" width="150" height="150" /></a></p>
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://blog.beford.org/2009/12/30/la-general-electrics-necesita-un-traductor-d/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Reparando el error 1606: Could not access network location %APPDATA%</title>
		<link>http://blog.beford.org/2009/12/29/reparando-el-error-1606-could-not-access-network-location-appdata/</link>
		<comments>http://blog.beford.org/2009/12/29/reparando-el-error-1606-could-not-access-network-location-appdata/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 21:50:43 +0000</pubDate>
		<dc:creator>Fernando</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blog.beford.org/2009/12/29/reparando-el-error-606-could-not-access-network-location-appdata/</guid>
		<description><![CDATA[Este problema puede ocurrir al intentar instalar o desinstalar algún programa: Tambien ocurre cuando se instala el Microsoft Security Essentials, y el numero de error es 0x80070643. Para solucionarlo ejecutamos el regedit, y vamos a: HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders Verificamos el &#8230; <a href="http://blog.beford.org/2009/12/29/reparando-el-error-1606-could-not-access-network-location-appdata/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Este problema puede ocurrir al intentar instalar o desinstalar algún programa:</p>
<p style="text-align: center;"><a href="http://blog.beford.org/wp-content/uploads/2009/12/Dibujo.jpg"><img class="size-thumbnail wp-image-71 aligncenter" title="Dibujo" src="http://blog.beford.org/wp-content/uploads/2009/12/Dibujo-150x150.jpg" alt="Dibujo" width="150" height="150" /></a></p>
<p>Tambien ocurre cuando se instala el Microsoft Security Essentials, y el numero de error es 0x80070643.</p>
<p>Para solucionarlo ejecutamos el regedit, y vamos a:</p>
<p>HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders</p>
<p>Verificamos el tipo y el valor de el registro AppData, tiene que ser REG_EXPANDED_SZ, y en mi caso tenia un valor incorrecto «%APPDATA%» lo cambiamos por «%USERPROFILE%\AppData\Roaming». He preparado un archivo archivo .reg para corregir automaticamente este problema, lo pueden descargar aqui.</p>
<p><a href="http://support.microsoft.com/kb/886549">http://support.microsoft.com/kb/886549</a></p>
<p><strong>Actualizacion: </strong>Microsoft ha publicado una herramienta para corregir el problema automaticamente, asi que les pongo el enlace para las personas que aun tengan este problema: <a title="Microsoft Fix It" href="http://go.microsoft.com/?linkid=9708107">http://go.microsoft.com/?linkid=9708107</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.beford.org/2009/12/29/reparando-el-error-1606-could-not-access-network-location-appdata/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Como reparar bucle infinito Actualizacion 3 de 3</title>
		<link>http://blog.beford.org/2009/11/20/como-reparar-bucle-infinito-actualizacion-3-de-3/</link>
		<comments>http://blog.beford.org/2009/11/20/como-reparar-bucle-infinito-actualizacion-3-de-3/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 04:29:47 +0000</pubDate>
		<dc:creator>Fernando</dc:creator>
				<category><![CDATA[Español]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[it]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blog.beford.org/?p=63</guid>
		<description><![CDATA[Durante la instalacion del SP1 de Windows Vista, es posible que el equipo quede en un estado donde cada vez que arranque nos muestre un mensaje que diga 'Configurando actualizacion 3 de 3' se reinicie, y al encender nuevamente siempre &#8230; <a href="http://blog.beford.org/2009/11/20/como-reparar-bucle-infinito-actualizacion-3-de-3/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Durante la instalacion del SP1 de Windows Vista, es posible que el equipo quede en un estado donde cada vez que arranque nos muestre un mensaje que diga 'Configurando actualizacion 3 de 3' se reinicie, y al encender nuevamente siempre nos muestre el mismo mensaje. </p>
<p>Para reparar este problema, algunas veces se puede ingresar al sistema en modo seguro, y renombrar los archivos pending.xml y cleanup.xml de Windows\WinSXS, cuando no es posible hacerlo y contamos con el medio de instalacion, podremos usar la opcion de Reparar sistema, ya que no todos los fabricantes envian el medio de instalacion original es posible que no lo tengamos, en este caso, iniciamos el equipo desde un Windows PE / BartPE, o un LiveCD de GNU/Linux. </p>
<p>Si usamos GNU/Linux, debemos montar la particion NTFS donde esta instalado Windows. Una vez hecho esto nos movemos a la carpeta C:\Windows\WinSXS y renombramos dos archivos que alli se encuentran, pending.xml y cleanup.xml, en mi caso solo esto fue necesario. </p>
<p>Los pasos detallados para Windows PE / BartPE son, escribir en el terminal de windows los siguientes comandos:</p>
<p><code>cd /D C:\Windows\WinSXS<br />
ren pending.xml pending.old<br />
ren cleanup.xml cleanup.old</code></p>
<p>Cerramos todas las ventanas, reiniciamos el equipo y deberia arrancar sin problemas.</p>
<p>Fuente: <a title="http://www.tipandtrick.net/2008/endless-reboot-loop-while-configuring-updates-stage-3-of-3-during-vista-sp1-installation/" href="http://www.tipandtrick.net/2008/endless-reboot-loop-while-configuring-updates-stage-3-of-3-during-vista-sp1-installation/">http://www.tipandtrick.net/2008/endless-reboot-loop-while-configuring-updates-stage-3-of-3-during-vista-sp1-installation/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.beford.org/2009/11/20/como-reparar-bucle-infinito-actualizacion-3-de-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Wave &#8211; Make your friends logout gadget</title>
		<link>http://blog.beford.org/2009/11/20/google-wave-make-your-friends-logout-gadget/</link>
		<comments>http://blog.beford.org/2009/11/20/google-wave-make-your-friends-logout-gadget/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 04:04:14 +0000</pubDate>
		<dc:creator>Fernando</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[csrf]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[wave]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[XSS]]></category>

		<guid isPermaLink="false">http://blog.beford.org/?p=58</guid>
		<description><![CDATA[Adding this gadget to any wave will make people log out when they see it: http://beford.org/stuff/waveg.xml The code: &#60;script type="text/javascript"&#62; top.location="https://wave.google.com/wave/logout"; &#60;/script&#62;]]></description>
			<content:encoded><![CDATA[<p>Adding this gadget to any wave will make people log out when they see it:</p>
<p><a href="http://beford.org/stuff/waveg.xml">http://beford.org/stuff/waveg.xml</a></p>
<p>The code:</p>
<p><code>&lt;script type="text/javascript"&gt;<br />
top.location="https://wave.google.com/wave/logout";<br />
&lt;/script&gt;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.beford.org/2009/11/20/google-wave-make-your-friends-logout-gadget/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Fix Firefox look on KDE4</title>
		<link>http://blog.beford.org/2009/11/20/fix-firefox-look-on-kde4/</link>
		<comments>http://blog.beford.org/2009/11/20/fix-firefox-look-on-kde4/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 03:31:54 +0000</pubDate>
		<dc:creator>Fernando</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[archlinux]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[kde4]]></category>

		<guid isPermaLink="false">http://blog.beford.org/?p=44</guid>
		<description><![CDATA[To fix the look of Shiretoko on Archlinux do: pacman -Syy pacman -S pacman -S qtcurve-gtk2 Go to Applications -&#62; Settings -&#62; GTK Styles and Fonts Select 'Use another style' and choose 'QtCurve' and you are done. Before After]]></description>
			<content:encoded><![CDATA[<p>To fix the look of Shiretoko on Archlinux do:</p>
<blockquote><p>pacman -Syy<br />
pacman -S pacman -S qtcurve-gtk2</p></blockquote>
<p>Go to Applications -&gt; Settings -&gt; GTK Styles and Fonts</p>
<p>Select 'Use another style' and choose 'QtCurve' and you are done.</p>
<p>Before</p>
<p><a href="http://blog.beford.org/wp-content/uploads/2009/11/snapshot2.png"><img class="alignnone size-thumbnail wp-image-45" title="snapshot2" src="http://blog.beford.org/wp-content/uploads/2009/11/snapshot2-150x150.png" alt="snapshot2" width="150" height="150" /></a></p>
<p>After</p>
<p><a href="http://blog.beford.org/wp-content/uploads/2009/11/snapshot3.png"><img class="alignnone size-thumbnail wp-image-46" title="snapshot3" src="http://blog.beford.org/wp-content/uploads/2009/11/snapshot3-150x150.png" alt="snapshot3" width="150" height="150" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.beford.org/2009/11/20/fix-firefox-look-on-kde4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cosas que pasan</title>
		<link>http://blog.beford.org/2008/11/02/cosas-que-pasan/</link>
		<comments>http://blog.beford.org/2008/11/02/cosas-que-pasan/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 06:56:25 +0000</pubDate>
		<dc:creator>Fernando</dc:creator>
				<category><![CDATA[Español]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[XSS]]></category>

		<guid isPermaLink="false">http://blog.beford.org/?p=30</guid>
		<description><![CDATA[El mmg de Hades publico esto antes que yo, un XSS en live mail, estaba almacenado en /stuff hace tiempo ya, es un simple poc, que muestra los contactos.  Fue reportado a Microsoft hace casi 1 mes, recibi un correo diciendo que ya &#8230; <a href="http://blog.beford.org/2008/11/02/cosas-que-pasan/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>El mmg de Hades publico esto antes que yo, un XSS en live mail, estaba almacenado en /stuff hace tiempo ya, es un simple poc, que muestra los contactos.  Fue reportado a Microsoft hace casi 1 mes, recibi un correo diciendo que ya habrian creado un reporte interno, donde se encargarian del asunto.</p>
<p>POC: <a href="http://beford.org/stuff/live.htm">http://beford.org/stuff/live.htm</a></p>
<p>Y otra cosa interesante que encontre, es algo en la <a href="http://m.google.com">interface movil de google</a>, en la seccion para configurar el idioma, el parametro continue, recibe la ruta donde se encontraba el usuario, para poder retornarlo alli una vez seleccione el idioma. Aparentemente no estan haciendo una concatenacion de 'm.google.com/' + continue sino de 'm.google.com' + continue. Pasandole a continue un valor de '.otrodominio.com' hariamos que todos los enlaces apunten a un sitio externo fuera de google.</p>
<p>POC: <a href="http://m.google.com/languages/?dc=gorganic&amp;continue=.beford.org">http://m.google.com/languages/?dc=gorganic&amp;continue=.beford.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.beford.org/2008/11/02/cosas-que-pasan/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Nseries Nokia N810</title>
		<link>http://blog.beford.org/2008/06/25/nseries-nokia-n810/</link>
		<comments>http://blog.beford.org/2008/06/25/nseries-nokia-n810/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 00:22:25 +0000</pubDate>
		<dc:creator>Fernando</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Maemo]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[n810]]></category>

		<guid isPermaLink="false">http://blog.beford.org/?p=26</guid>
		<description><![CDATA[I've already got the N810, so far I've got to say that it's an awesome device, it's way smaller than I thought it would be. I had to flash the N810 using the lastest firmware in order to install some &#8230; <a href="http://blog.beford.org/2008/06/25/nseries-nokia-n810/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I've already got the N810, so far I've got to say that it's an awesome device, it's way smaller than I thought it would be. I had to <a href="http://maemo.org/community/wiki/HOWTO_FlashLatestNokiaImageWithLinux/">flash the N810</a> using the lastest firmware in order to install some applications such as <a href="http://www.skype.com/download/skype/nokia/">Skype</a>. I was a bit scared of doing it because I had some issues last time I flashed my cell phone, a Sony Ericcson W810i, I fuxored it although I was using Sony's Official tool to update it, I was unable to use it for a weeks, the time it took me to do read about flashing with some 3rd party tools.</p>
<p>I've got the scratchbox environment running, I had some issues installing it on Ubuntu Hardy, following some advices from qwerty12 on <a href="http://www.internettablettalk.com">ITT</a> solved everything and allowed me to get the <a href="http://www.internettablettalk.com/forums/showthread.php?p=175208">Maemo SDK running on lastest Ubuntu</a>.</p>
<p>I had to disable vdso by adding vdso=0 to the kernel line on /boot/grub/menu.lst file. The second problem is related to a memory protection that got enabled on lastest kernel, you need to edit /etc/sysctl.conf and change: vm.mmap_min_addr = 65536 to: vm.mmap_min_addr = 4096.</p>
<p>I've already installed the following apps:</p>
<ul>
<li>Canola / Mplayer</li>
<li>FBReader / Evince / Xournal</li>
<li>MaemoFTP / rdesktop / openssh</li>
<li>Duke3D / LxDoom / Quake / iNES</li>
<li>Pidgin / XChat / Skype</li>
</ul>
<p>I was looking for a torrent client, found transmission for maemo, but it was not working very well, it was pausing itself after a while, so with my sbox installation, compiled libtorrent and rtorrent from debian's repository, and installed on n810 with dpkg, it works like a charm.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.beford.org/2008/06/25/nseries-nokia-n810/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
