<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Touzas. Diario de un Programador</title>
	<atom:link href="http://touzas.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://touzas.wordpress.com</link>
	<description>Cosillas que se me van ocurriendo...</description>
	<lastBuildDate>Sun, 26 Apr 2009 16:05:29 +0000</lastBuildDate>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='touzas.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/909404ae42d49f9268d889c38b70f59e?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Touzas. Diario de un Programador</title>
		<link>http://touzas.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://touzas.wordpress.com/osd.xml" title="Touzas. Diario de un Programador" />
	<atom:link rel='hub' href='http://touzas.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Validación de CIF, NIF y NIE</title>
		<link>http://touzas.wordpress.com/2009/04/26/validacion-de-cif-nif-y-nie-2/</link>
		<comments>http://touzas.wordpress.com/2009/04/26/validacion-de-cif-nif-y-nie-2/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 16:04:22 +0000</pubDate>
		<dc:creator>touzas</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[CIF]]></category>
		<category><![CDATA[DNI]]></category>
		<category><![CDATA[NIE]]></category>
		<category><![CDATA[NIF]]></category>
		<category><![CDATA[validación]]></category>

		<guid isPermaLink="false">http://touzas.wordpress.com/?p=86</guid>
		<description><![CDATA[En un post anterior los enlaces a las descargas de las Dll no funcionan, así que aquí os posteo el código que utilizo: ﻿using System; using System.Collections.Generic; using System.Text; using System.Text.RegularExpressions; namespace confVars { public class validaciones { public static Boolean validaNIFCIF(string data) { if (data == null) return false; if (data == String.Empty) return [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=touzas.wordpress.com&amp;blog=34128&amp;post=86&amp;subd=touzas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>En un post anterior los enlaces a las descargas de las Dll no funcionan, así que aquí os posteo el código que utilizo:</p>
<p>﻿using System;<br />
using System.Collections.Generic;<br />
using System.Text;<br />
using System.Text.RegularExpressions;</p>
<p>namespace confVars {<br />
public class validaciones {<br />
public static Boolean validaNIFCIF(string data) {<br />
if (data == null) return false;<br />
if (data == String.Empty) return false;<br />
if (Char.IsLetter(data, 0) &amp;&amp; data.Substring(0, 1).ToUpper() == “X”)<br />
data = data.Substring(1, data.Length &#8211; 1);</p>
<p>if (data.Length &lt; <img class="wp-smiley" src="http://touzas.es/wp-includes/images/smilies/icon_cool.gif" alt="8)" /> return false;</p>
<p>if (Char.IsLetter(data, 0)) {<br />
if (new Regex(”[A-Za-z][0-9]{7}[A-Za-z0-9]{1}$”).Match(data).Success) {<br />
return true;<br />
//return validadCIF(data);<br />
} else<br />
return false;<br />
} else if (Char.IsLetter(data, data.Length &#8211; 1)) {<br />
//Valida NIF<br />
if (new Regex(”[0-9]{8}[A-Za-z]“).Match(data).Success || new Regex(”[0-9]{7}[A-Za-z]“).Match(data).Success)<br />
return validarNIF(data);<br />
else<br />
return false;<br />
}<br />
return true;<br />
}</p>
<p>private static string getLetra(int id) {<br />
Dictionary&lt;int, String&gt; letras = new Dictionary&lt;int, string&gt;();<br />
letras.Add(0, “T”);<br />
letras.Add(1, “R”);<br />
letras.Add(2, “W”);<br />
letras.Add(3, “A”);<br />
letras.Add(4, “G”);<br />
letras.Add(5, “M”);<br />
letras.Add(6, “Y”);<br />
letras.Add(7, “F”);<br />
letras.Add(8, “P”);<br />
letras.Add(9, “D”);<br />
letras.Add(10, “X”);<br />
letras.Add(11, “B”);<br />
letras.Add(12, “N”);<br />
letras.Add(13, “J”);<br />
letras.Add(14, “Z”);<br />
letras.Add(15, “S”);<br />
letras.Add(16, “Q”);<br />
letras.Add(17, “V”);<br />
letras.Add(18, “H”);<br />
letras.Add(19, “L”);<br />
letras.Add(20, “C”);<br />
letras.Add(21, “K”);<br />
letras.Add(22, “E”);<br />
return letras[id];<br />
}</p>
<p>private static bool validarNIF(string data) {<br />
if (data == String.Empty)<br />
return false;<br />
try {<br />
String letra;<br />
letra = data.Substring(data.Length &#8211; 1, 1);<br />
data = data.Substring(0, data.Length &#8211; 1);<br />
int nifNum = int.Parse(data);<br />
int resto = nifNum % 23;<br />
string tmp = getLetra(resto);<br />
if (tmp.ToLower() != letra.ToLower())<br />
return false;<br />
} catch (Exception ex) {<br />
Console.WriteLine(ex.Message);<br />
return false;<br />
}<br />
return true;<br />
}</p>
<p>private static bool validadCIF(string data) {<br />
try {<br />
int pares = 0;<br />
int impares = 0;<br />
int suma;<br />
string ultima;<br />
int unumero;<br />
string[] uletra = new string[] { “A”, “B”, “C”, “D”, “E”, “F”, “G”, “H”, “I”, “J”, “K”, “L”, “M”, “N”, “0″ };<br />
string[] fletra = new string[] { “A”, “B”, “C”, “D”, “E”, “F”, “G”, “H”, “I”, “J” };<br />
int[] fletra1 = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 };<br />
string xxx;</p>
<p>/*<br />
* T      P      P      N  N  N  N  N  C<br />
Siendo:<br />
T: Letra de tipo de Organización, una de las siguientes: A,B,C,D,E,F,G,H,K,L,M,N,P,Q,S.<br />
P: Código provincial.<br />
N: Númeración secuenial dentro de la provincia.<br />
C: Dígito de control, un número ó letra: Aó1,Bó2,Có3,Dó4,Eó5,Fó6,Gó7,Hó8,Ió9,Jó0.<br />
*<br />
*<br />
A.    Sociedades anónimas.<br />
B.    Sociedades de responsabilidad limitada.<br />
C.    Sociedades colectivas.<br />
D.    Sociedades comanditarias.<br />
E.    Comunidades de bienes y herencias yacentes.<br />
F.    Sociedades cooperativas.<br />
G.    Asociaciones.<br />
H.    Comunidades de propietarios en régimen de propiedad horizontal.<br />
I.    Sociedades civiles, con o sin personalidad jurídica.<br />
J.    Corporaciones Locales.<br />
K.    Organismos públicos.<br />
L.    Congregaciones e instituciones religiosas.<br />
M.    Órganos de la Administración del Estado y de las Comunidades Autónomas.<br />
N.    Uniones Temporales de Empresas.<br />
O.    Otros tipos no definidos en el resto de claves.</p>
<p>*/<br />
data = data.ToUpper();</p>
<p>ultima = data.Substring(8, 1);</p>
<p>int cont = 1;<br />
for (cont = 1; cont &lt; 7; cont++) {<br />
xxx = (2 * int.Parse(data.Substring(cont++, 1))) + “0″;<br />
impares += int.Parse(xxx.ToString().Substring(0, 1)) + int.Parse(xxx.ToString().Substring(1, 1));<br />
pares += int.Parse(data.Substring(cont, 1));<br />
}</p>
<p>xxx = (2 * int.Parse(data.Substring(cont, 1))) + “0″;<br />
impares += int.Parse(xxx.Substring(0, 1)) + int.Parse(xxx.Substring(1, 1));</p>
<p>suma = pares + impares;<br />
unumero = int.Parse(suma.ToString().Substring(suma.ToString().Length &#8211; 1, 1));<br />
unumero = 10 &#8211; unumero;<br />
if (unumero == 10) unumero = 0;</p>
<p>if ((ultima == unumero.ToString()) || (ultima == uletra[unumero - 1]))<br />
return true;<br />
else<br />
return false;</p>
<p>} catch (Exception ex) {<br />
Console.WriteLine(ex.Message);<br />
return false;<br />
}<br />
}<br />
}<br />
}</p>
<p>Espero que os sirva,</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/touzas.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/touzas.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/touzas.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/touzas.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/touzas.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/touzas.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/touzas.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/touzas.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/touzas.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/touzas.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/touzas.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/touzas.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/touzas.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/touzas.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=touzas.wordpress.com&amp;blog=34128&amp;post=86&amp;subd=touzas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://touzas.wordpress.com/2009/04/26/validacion-de-cif-nif-y-nie-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dc26b0ffb67b58607e2094258829ef3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">touzas</media:title>
		</media:content>

		<media:content url="http://touzas.es/wp-includes/images/smilies/icon_cool.gif" medium="image">
			<media:title type="html">8)</media:title>
		</media:content>
	</item>
		<item>
		<title>Montar una unidad remota a través de SSH</title>
		<link>http://touzas.wordpress.com/2009/04/26/montar-una-unidad-remota-a-traves-de-ssh/</link>
		<comments>http://touzas.wordpress.com/2009/04/26/montar-una-unidad-remota-a-traves-de-ssh/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 16:03:12 +0000</pubDate>
		<dc:creator>touzas</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[remoto]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://touzas.wordpress.com/2009/04/26/montar-una-unidad-remota-a-traves-de-ssh/</guid>
		<description><![CDATA[1º -Instalamos los paquetes: aptitude install sshfs fuse-utils 2º- Cargamos el módulo de fuse y lo metemos en /etc/modules para que cargue al inicio: modprobe fuse echo fuse &#62;&#62; /etc/modules 3º- Damos permiso al usuario que montará la carpeta y no olvidemos que estos permisos serán efectivos cuando cierre la sesión y vuelva a logearse [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=touzas.wordpress.com&amp;blog=34128&amp;post=85&amp;subd=touzas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>1º -Instalamos los paquetes:<br />
<strong>aptitude install sshfs fuse-utils</strong></p>
<p>2º- Cargamos el módulo de fuse y lo metemos en /etc/modules para que cargue al inicio:<br />
<strong>modprobe fuse<br />
</strong><strong>echo fuse &gt;&gt; /etc/modules</strong></p>
<p>3º- Damos permiso al usuario que montará la carpeta y no olvidemos que estos permisos serán efectivos cuando cierre la sesión y vuelva a logearse en el sistema (e mi caso touzas):<br />
<strong>addgroup touzas fuse</strong></p>
<p>4º- Creamos un directorio en donde montaremos el directorio remoto e introducimos el comando para montarlo:<br />
<strong>mkdir /media/directorio_local</strong><br />
<strong>$ sshfs usuario_remoto@servidor_remoto:/directorio_remoto /media/directorio_local</strong></p>
<p>Cuidado porque las dos últimas instrucciones se ejecutan como<strong> usuario normal </strong>y <strong>no como root</strong>.</p>
<p>Listo!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/touzas.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/touzas.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/touzas.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/touzas.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/touzas.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/touzas.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/touzas.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/touzas.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/touzas.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/touzas.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/touzas.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/touzas.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/touzas.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/touzas.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=touzas.wordpress.com&amp;blog=34128&amp;post=85&amp;subd=touzas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://touzas.wordpress.com/2009/04/26/montar-una-unidad-remota-a-traves-de-ssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dc26b0ffb67b58607e2094258829ef3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">touzas</media:title>
		</media:content>
	</item>
		<item>
		<title>Mis sources.list</title>
		<link>http://touzas.wordpress.com/2009/04/01/mis-sourceslist/</link>
		<comments>http://touzas.wordpress.com/2009/04/01/mis-sourceslist/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 07:16:12 +0000</pubDate>
		<dc:creator>touzas</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[sources]]></category>
		<category><![CDATA[sources.list]]></category>

		<guid isPermaLink="false">http://touzas.wordpress.com/?p=83</guid>
		<description><![CDATA[Con estos sources tengo todo mi equipo correctamente configurado y funcionando a las mil maravillas. Linux desarrolo 2.6.26-1-amd64 #1 SMP Fri Mar 13 17:46:45 UTC 2009 x86_64 GNU/Linux deb http://ftp.debian.org/debian/ lenny main contrib non-free deb http://security.debian.org/ lenny/updates main contrib #Adobe Reader deb http://www.debian-multimedia.org/ stable main #Deja dup &#8211; Copias de seguridad deb http://ppa.launchpad.net/deja-dup-team/ubuntu intrepid main [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=touzas.wordpress.com&amp;blog=34128&amp;post=83&amp;subd=touzas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Con estos sources tengo todo mi equipo correctamente configurado y funcionando a las mil maravillas.</p>
<p><strong>Linux desarrolo 2.6.26-1-amd64 #1 SMP Fri Mar 13 17:46:45 UTC 2009 x86_64 GNU/Linux</strong></p>
<p>deb http://ftp.debian.org/debian/ lenny main contrib non-free<br />
deb http://security.debian.org/ lenny/updates main contrib</p>
<p><strong>#Adobe Reader</strong><br />
deb http://www.debian-multimedia.org/ stable main</p>
<p><strong>#Deja dup &#8211; Copias de seguridad</strong><br />
deb http://ppa.launchpad.net/deja-dup-team/ubuntu intrepid main<br />
deb-src http://ppa.launchpad.net/deja-dup-team/ubuntu intrepid main</p>
<p><strong>#Enlightment e17</strong><br />
deb http://debian.alphagemini.org/ unstable main<br />
deb-src http://debian.alphagemini.org/ unstable main</p>
<p><strong>#KDE4</strong><br />
deb http://kde4.debian.net/ lenny main</p>
<p><strong>#Compiz fusion</strong><br />
deb http://download.tuxfamily.org/shames/debian-sid/desktopfx/unstable/ ./<br />
deb ftp://ftp.debian.nl/debian/ lenny contrib main</p>
<p><strong>#Docky</strong><br />
deb http://ppa.launchpad.net/do-core/ppa/ubuntu intrepid main<br />
deb-src http://ppa.launchpad.net/do-core/ppa/ubuntu intrepid main</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/touzas.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/touzas.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/touzas.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/touzas.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/touzas.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/touzas.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/touzas.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/touzas.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/touzas.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/touzas.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/touzas.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/touzas.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/touzas.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/touzas.wordpress.com/83/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=touzas.wordpress.com&amp;blog=34128&amp;post=83&amp;subd=touzas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://touzas.wordpress.com/2009/04/01/mis-sourceslist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dc26b0ffb67b58607e2094258829ef3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">touzas</media:title>
		</media:content>
	</item>
		<item>
		<title>Instalar VirtualBox 2.1 en Debian.</title>
		<link>http://touzas.wordpress.com/2009/02/16/instalar-virtualbox-21-en-debian/</link>
		<comments>http://touzas.wordpress.com/2009/02/16/instalar-virtualbox-21-en-debian/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 08:56:59 +0000</pubDate>
		<dc:creator>touzas</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://touzas.wordpress.com/?p=81</guid>
		<description><![CDATA[VirtualBox se ha convertido en muy poco tiempo, gracias a su facilidad de uso, su compatibilidad con una gran cantidad de sistemas anfitriones e invitados y al constante desarrollo en que se encuentra, en la mas popular herramienta de virtualización. Instalación mediante apt-get o aptitude: La otra forma de instalar VirtualBox 2.1, es agregando el [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=touzas.wordpress.com&amp;blog=34128&amp;post=81&amp;subd=touzas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre class="bash" style="font-family:monospace;"></pre>
<p><strong>VirtualBox</strong> se ha convertido en muy poco tiempo, gracias a su facilidad de uso, su compatibilidad con una gran cantidad de sistemas anfitriones e invitados y al constante desarrollo en que se encuentra, en la mas popular herramienta de <strong>virtualización</strong>.</p>
<p><span style="font-weight:bold;">Instalación mediante apt-get o aptitude:</span> La otra forma de instalar <a href="http://www.iguanalinux.com/software-libre/virtualbox-2-1-virtualizacion-cada-vez-mas-facil/">VirtualBox 2.1</a>, es agregando el repositorio para la versión de <strong>Debian</strong> o <strong>Ubuntu</strong> correspondiente al archivo de fuentes de repositorio ubicado en /etc/apt/sources.list:</p>
<pre class="bash" style="font-family:monospace;">deb http:<span style="color:#000000;font-weight:bold;">//</span>download.virtualbox.org<span style="color:#000000;font-weight:bold;">/</span>virtualbox<span style="color:#000000;font-weight:bold;">/</span>debian intrepid non-free
deb http:<span style="color:#000000;font-weight:bold;">//</span>download.virtualbox.org<span style="color:#000000;font-weight:bold;">/</span>virtualbox<span style="color:#000000;font-weight:bold;">/</span>debian hardy non-free
deb http:<span style="color:#000000;font-weight:bold;">//</span>download.virtualbox.org<span style="color:#000000;font-weight:bold;">/</span>virtualbox<span style="color:#000000;font-weight:bold;">/</span>debian gutsy non-free
deb http:<span style="color:#000000;font-weight:bold;">//</span>download.virtualbox.org<span style="color:#000000;font-weight:bold;">/</span>virtualbox<span style="color:#000000;font-weight:bold;">/</span>debian dapper non-free
deb http:<span style="color:#000000;font-weight:bold;">//</span>download.virtualbox.org<span style="color:#000000;font-weight:bold;">/</span>virtualbox<span style="color:#000000;font-weight:bold;">/</span>debian lenny non-free

Añadimos la clave del repositorio
<span style="color:#c20cb9;font-weight:bold;">wget</span> <span style="color:#660033;">-q</span> http:<span style="color:#000000;font-weight:bold;">//</span>download.virtualbox.org<span style="color:#000000;font-weight:bold;">/</span>virtualbox<span style="color:#000000;font-weight:bold;">/</span>debian<span style="color:#000000;font-weight:bold;">/</span>sun_vbox.asc <span style="color:#660033;">-O-</span> <span style="color:#000000;font-weight:bold;">|</span> <span style="color:#c20cb9;font-weight:bold;">sudo</span> <span style="color:#c20cb9;font-weight:bold;">apt-key</span> add -

deb http:<span style="color:#000000;font-weight:bold;">//</span>download.virtualbox.org<span style="color:#000000;font-weight:bold;">/</span>virtualbox<span style="color:#000000;font-weight:bold;">/</span>debian etch non-free

<strong>Procedemos a la instalación</strong>
<span style="color:#000000;"></span></pre>
<pre class="bash" style="font-family:monospace;"><span style="color:#c20cb9;font-weight:bold;">aptitude</span> update
<span style="color:#c20cb9;font-weight:bold;">aptitude</span> <span style="color:#c20cb9;font-weight:bold;">install</span> virtualbox-<span style="color:#000000;">2.1

Y a funcionar!!!
</span></pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/touzas.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/touzas.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/touzas.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/touzas.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/touzas.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/touzas.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/touzas.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/touzas.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/touzas.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/touzas.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/touzas.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/touzas.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/touzas.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/touzas.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=touzas.wordpress.com&amp;blog=34128&amp;post=81&amp;subd=touzas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://touzas.wordpress.com/2009/02/16/instalar-virtualbox-21-en-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dc26b0ffb67b58607e2094258829ef3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">touzas</media:title>
		</media:content>
	</item>
		<item>
		<title>How to mount partition with ntfs file system and read write access</title>
		<link>http://touzas.wordpress.com/2009/02/10/how-to-mount-partition-with-ntfs-file-system-and-read-write-access/</link>
		<comments>http://touzas.wordpress.com/2009/02/10/how-to-mount-partition-with-ntfs-file-system-and-read-write-access/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 08:32:38 +0000</pubDate>
		<dc:creator>touzas</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ntfs]]></category>
		<category><![CDATA[read-write]]></category>

		<guid isPermaLink="false">http://touzas.wordpress.com/?p=79</guid>
		<description><![CDATA[NTFS kernel support ls /lib/modules/2.6.18-5-686/kernel/fs/ &#124; grep ntfs ntfs Install addition software Fuse Install wget http://easynews.dl.sourceforge.net/sourceforge/fuse/fuse-2.7.1.tar.gz tar xzf fuse-2.7.4.tar.gz cd fuse-2.7.4 ./configure --exec-prefix=/; make; make install ntfs-3g install wget http://www.ntfs-3g.org/ntfs-3g-2009.1.1.tgz tar xvzf ntfs-3g-2009.1.1.tgz cd ntfs-3g-2009.1.1 ./configure; make; make install Mount ntfs partition with read write access mount -t ntfs-3g /dev/sdb1 /mnt/ntfs/ Listo!! Tenemos soporte para [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=touzas.wordpress.com&amp;blog=34128&amp;post=79&amp;subd=touzas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3><span class="mw-headline">NTFS kernel support<br />
</span></h3>
<pre>ls /lib/modules/2.6.18-5-686/kernel/fs/ | grep ntfs
ntfs</pre>
<h3><span class="mw-headline">Install addition software</span><span class="mw-headline"><br />
Fuse Install</span></h3>
<pre>wget http://easynews.dl.sourceforge.net/sourceforge/fuse/fuse-2.7.1.tar.gz
tar xzf fuse-2.7.4.tar.gz
cd fuse-2.7.4
./configure --exec-prefix=/; make; make install</pre>
<h4><span class="mw-headline">ntfs-3g install<br />
</span></h4>
<pre>wget http://www.ntfs-3g.org/ntfs-3g-2009.1.1.tgz
tar xvzf ntfs-3g-2009.1.1.tgz
cd ntfs-3g-2009.1.1
./configure; make; make install</pre>
<h3><span class="mw-headline">Mount ntfs partition with read write access</span></h3>
<pre>mount -t ntfs-3g /dev/sdb1 /mnt/ntfs/

Listo!! Tenemos soporte para ntfs, con permisos de Lectura/Escritura para todos los usuarios.</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/touzas.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/touzas.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/touzas.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/touzas.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/touzas.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/touzas.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/touzas.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/touzas.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/touzas.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/touzas.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/touzas.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/touzas.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/touzas.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/touzas.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=touzas.wordpress.com&amp;blog=34128&amp;post=79&amp;subd=touzas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://touzas.wordpress.com/2009/02/10/how-to-mount-partition-with-ntfs-file-system-and-read-write-access/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dc26b0ffb67b58607e2094258829ef3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">touzas</media:title>
		</media:content>
	</item>
		<item>
		<title>Como generar clases a partir de un XSD</title>
		<link>http://touzas.wordpress.com/2009/01/27/como-generar-clases-a-partir-de-un-xsd/</link>
		<comments>http://touzas.wordpress.com/2009/01/27/como-generar-clases-a-partir-de-un-xsd/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 16:56:37 +0000</pubDate>
		<dc:creator>touzas</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[csharp]]></category>
		<category><![CDATA[visual studio]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[xsd]]></category>

		<guid isPermaLink="false">http://touzas.wordpress.com/?p=76</guid>
		<description><![CDATA[Hay muchas aplicaciones que utilizan código XML para comunicarse con Servicios Web. Una forma realmente fácil para generar las clases referentes a esos XML es a traves de los XSD, utilizando las utilidades de Visual Studio 2005 / 2008. Los pasos a seguir son: Acceder a Visual Studio 2005 -&#62; Visual Studio Tools -&#62; Visual [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=touzas.wordpress.com&amp;blog=34128&amp;post=76&amp;subd=touzas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hay muchas aplicaciones que utilizan código XML para comunicarse con Servicios Web.</p>
<p>Una forma realmente fácil para generar las clases referentes a esos XML es a traves de los XSD, utilizando las utilidades de Visual Studio 2005 / 2008.</p>
<p>Los pasos a seguir son:</p>
<ol>
<li>Acceder a Visual Studio 2005 -&gt; Visual Studio Tools -&gt; Visual Studio Command Prompt</li>
<li>Generar nuestro XSD a partir del XML: <strong>C:\xsd archivo.xml -&gt;</strong> Esto generará un archivo.xsd</li>
<li>Generar las clases a partir del archivo XSD: <strong>C:\xsd webSearch.xsd /CLASSES /language:CS</strong> -&gt; Con estro tendremos un archivo.cs con toda la estructura de clases.</li>
</ol>
<p>Espero que os sirva</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/touzas.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/touzas.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/touzas.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/touzas.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/touzas.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/touzas.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/touzas.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/touzas.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/touzas.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/touzas.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/touzas.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/touzas.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/touzas.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/touzas.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=touzas.wordpress.com&amp;blog=34128&amp;post=76&amp;subd=touzas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://touzas.wordpress.com/2009/01/27/como-generar-clases-a-partir-de-un-xsd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dc26b0ffb67b58607e2094258829ef3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">touzas</media:title>
		</media:content>
	</item>
		<item>
		<title>Fuentes Verdana, arial en linux.</title>
		<link>http://touzas.wordpress.com/2009/01/26/fuentes-verdana-arial-en-linux/</link>
		<comments>http://touzas.wordpress.com/2009/01/26/fuentes-verdana-arial-en-linux/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 17:20:06 +0000</pubDate>
		<dc:creator>touzas</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[fuentes]]></category>
		<category><![CDATA[true type]]></category>

		<guid isPermaLink="false">http://touzas.wordpress.com/?p=74</guid>
		<description><![CDATA[Como disponer de las fuentes true type de windows en Linux. aptitude install msttcorefonts Con esto dispondremos de las fuentes: Andale Mono Arial Black Arial (Bold, Italic, Bold Italic) Comic Sans MS (Bold) Courier New (Bold, Italic, Bold Italic) Georgia (Bold, Italic, Bold Italic) Impact Times New Roman (Bold, Italic, Bold Italic) Trebuchet (Bold, Italic, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=touzas.wordpress.com&amp;blog=34128&amp;post=74&amp;subd=touzas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Como disponer de las fuentes true type de windows en Linux.</p>
<p><strong>aptitude install msttcorefonts</strong></p>
<p>Con esto dispondremos de las fuentes:</p>
<ul>
<li><span style="font-family:verdana;font-size:85%;">Andale Mono</span></li>
<li><span style="font-family:verdana;font-size:85%;">Arial Black</span></li>
<li><span style="font-family:verdana;font-size:85%;">Arial (Bold, Italic, Bold Italic)</span></li>
<li><span style="font-family:verdana;font-size:85%;">Comic Sans MS (Bold)</span></li>
<li><span style="font-family:verdana;font-size:85%;">Courier New (Bold, Italic, Bold Italic)</span></li>
<li><span style="font-family:verdana;font-size:85%;">Georgia (Bold, Italic, Bold Italic)</span></li>
<li><span style="font-family:verdana;font-size:85%;">Impact</span></li>
<li><span style="font-family:verdana;font-size:85%;">Times New Roman (Bold, Italic, Bold Italic)</span></li>
<li><span style="font-family:verdana;font-size:85%;">Trebuchet (Bold, Italic, Bold Italic)</span></li>
<li><span style="font-family:verdana;font-size:85%;">Verdana (Bold, Italic, Bold Italic)</span></li>
<li><span style="font-family:verdana;font-size:85%;">Webdings</span></li>
</ul>
<p>Espero que os sirva.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/touzas.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/touzas.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/touzas.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/touzas.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/touzas.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/touzas.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/touzas.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/touzas.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/touzas.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/touzas.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/touzas.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/touzas.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/touzas.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/touzas.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=touzas.wordpress.com&amp;blog=34128&amp;post=74&amp;subd=touzas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://touzas.wordpress.com/2009/01/26/fuentes-verdana-arial-en-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dc26b0ffb67b58607e2094258829ef3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">touzas</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows on Linux</title>
		<link>http://touzas.wordpress.com/2009/01/13/windows-on-linux/</link>
		<comments>http://touzas.wordpress.com/2009/01/13/windows-on-linux/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 12:34:17 +0000</pubDate>
		<dc:creator>touzas</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programación]]></category>
		<category><![CDATA[virtualBox]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://touzas.wordpress.com/?p=68</guid>
		<description><![CDATA[Yo trabajo con .NET y con Visual Studio 2005 y 2008 en cuanto a WinForms se refiere, y tenía siempre el problema de librerias que ahora tengo, y que ahora ya no. Problemas que cuando guardabas una copia de seguridad se te había olvidado una dll del Office que tenías,… todos estos problemas han quedado [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=touzas.wordpress.com&amp;blog=34128&amp;post=68&amp;subd=touzas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Yo trabajo con .NET y con Visual Studio 2005 y 2008 en cuanto a WinForms se refiere, y tenía siempre el problema de librerias que ahora tengo, y que ahora ya no. Problemas que cuando guardabas una copia de seguridad se te había olvidado una dll del Office que tenías,… todos estos problemas han quedado resueltos gracias a Linux y a VirtualBox.</p>
<p>Que maravilla. Ahora simplemente se hace una copia de seguridad del disco de VirtualBox y listo.</p>
<p>Aquí os dejo una captura</p>
<div id="attachment_71" class="wp-caption alignnone" style="width: 505px"><img class="size-full wp-image-71" title="Virtual Box y Debian" src="http://touzas.files.wordpress.com/2009/01/pantallazo.png?w=495&#038;h=396" alt="Virtual Box y Debian" width="495" height="396" /><p class="wp-caption-text">Virtual Box y Debian</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/touzas.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/touzas.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/touzas.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/touzas.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/touzas.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/touzas.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/touzas.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/touzas.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/touzas.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/touzas.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/touzas.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/touzas.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/touzas.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/touzas.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=touzas.wordpress.com&amp;blog=34128&amp;post=68&amp;subd=touzas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://touzas.wordpress.com/2009/01/13/windows-on-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dc26b0ffb67b58607e2094258829ef3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">touzas</media:title>
		</media:content>

		<media:content url="http://touzas.files.wordpress.com/2009/01/pantallazo.png" medium="image">
			<media:title type="html">Virtual Box y Debian</media:title>
		</media:content>
	</item>
		<item>
		<title>Acrobat Reader en Linux.</title>
		<link>http://touzas.wordpress.com/2009/01/13/acrobat-reader-en-linux/</link>
		<comments>http://touzas.wordpress.com/2009/01/13/acrobat-reader-en-linux/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 12:33:34 +0000</pubDate>
		<dc:creator>touzas</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[acrobar]]></category>
		<category><![CDATA[pdf]]></category>

		<guid isPermaLink="false">http://touzas.wordpress.com/?p=64</guid>
		<description><![CDATA[Primero tenemos que añadir a sources.list: deb http://www.debian-multimedia.org/ stable main Una vez echo echo simplemente: aptitude update gpg –keyserver subkeys.pgp.net –recv-keys 07DC563D1F41B907 gpg –armor –export 07DC563D1F41B907 &#124; apt-key add - aptitude install acroread acroread-plugins acroread-dictionary-es Y listo.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=touzas.wordpress.com&amp;blog=34128&amp;post=64&amp;subd=touzas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Primero tenemos que añadir<strong> a sources.list:</strong></p>
<p><strong> deb http://www.debian-multimedia.org/ stable main</strong></p>
<p>Una vez echo echo simplemente:</p>
<p><strong>aptitude update<br />
gpg –keyserver subkeys.pgp.net –recv-keys 07DC563D1F41B907<br />
gpg –armor –export 07DC563D1F41B907 | apt-key add -<br />
aptitude install acroread acroread-plugins acroread-dictionary-es </strong></p>
<p>Y listo.</p>
<div id="attachment_65" class="wp-caption alignnone" style="width: 505px"><img class="size-full wp-image-65" title="acroread" src="http://touzas.files.wordpress.com/2009/01/captura.png?w=495&#038;h=396" alt="PDF y Debian" width="495" height="396" /><p class="wp-caption-text">PDF y Debian</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/touzas.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/touzas.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/touzas.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/touzas.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/touzas.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/touzas.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/touzas.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/touzas.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/touzas.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/touzas.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/touzas.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/touzas.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/touzas.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/touzas.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=touzas.wordpress.com&amp;blog=34128&amp;post=64&amp;subd=touzas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://touzas.wordpress.com/2009/01/13/acrobat-reader-en-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dc26b0ffb67b58607e2094258829ef3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">touzas</media:title>
		</media:content>

		<media:content url="http://touzas.files.wordpress.com/2009/01/captura.png" medium="image">
			<media:title type="html">acroread</media:title>
		</media:content>
	</item>
		<item>
		<title>wifi-radar</title>
		<link>http://touzas.wordpress.com/2008/11/26/wifi-radar/</link>
		<comments>http://touzas.wordpress.com/2008/11/26/wifi-radar/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 09:30:07 +0000</pubDate>
		<dc:creator>touzas</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://touzas.es/?p=43</guid>
		<description><![CDATA[Utilidad de Linux para conectarnos a redes wifi<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=touzas.wordpress.com&amp;blog=34128&amp;post=43&amp;subd=touzas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Utilidad de Linux para conectarnos a redes wifi<a href="http://touzas.files.wordpress.com/2008/11/wifi-radar.png"><img class="alignnone size-full wp-image-61" title="wifi-radar" src="http://touzas.files.wordpress.com/2008/11/wifi-radar.png?w=474&#038;h=344" alt="wifi-radar" width="474" height="344" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/touzas.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/touzas.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/touzas.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/touzas.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/touzas.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/touzas.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/touzas.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/touzas.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/touzas.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/touzas.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/touzas.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/touzas.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/touzas.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/touzas.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=touzas.wordpress.com&amp;blog=34128&amp;post=43&amp;subd=touzas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://touzas.wordpress.com/2008/11/26/wifi-radar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dc26b0ffb67b58607e2094258829ef3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">touzas</media:title>
		</media:content>

		<media:content url="http://touzas.files.wordpress.com/2008/11/wifi-radar.png" medium="image">
			<media:title type="html">wifi-radar</media:title>
		</media:content>
	</item>
	</channel>
</rss>
