<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6156708423375342740</id><updated>2010-03-21T17:31:37.616-04:00</updated><title type='text'>for-you</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://rolannet.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default'/><link rel='alternate' type='text/html' href='http://rolannet.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>EDUARDO RONDON</name><uri>http://www.blogger.com/profile/15891302526450061414</uri><email>noreply@blogger.com</email></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>11</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6156708423375342740.post-1839912823005173207</id><published>2009-12-06T17:59:00.007-04:00</published><updated>2009-12-29T15:18:18.930-04:00</updated><title type='text'>Tormenta Broadcast en redes Windows con solo editar una linea en el servidor DHCP.</title><content type='html'>&lt;span style="font-weight: bold;"&gt;Tormenta Broadcast (Broadcast storm).&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;segun CISCO:&lt;/span&gt;&lt;br /&gt;Suceso de red no deseado, en el que se envían varios broadcasts simultáneamente a todos los segmentos de red. Una tormenta de broadcast usa una parte considerable del ancho de banda de la red y normalmente hace que se agoten los tiempos de espera de la red.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Que es eso de option netbios-node-type? en la configuracion de el servidor dhcp3-server.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;segun MICROSOFT:&lt;/span&gt;&lt;br /&gt;&lt;h3 id="tocHeadRef"&gt;Windows 2000 y Windows NT&lt;/h3&gt;&lt;script type="text/javascript"&gt;                 loadTOCNode(2, 'moreinformation');             &lt;/script&gt;NodeType&lt;br /&gt;Clave: &lt;div class="indent"&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetBT\Parameters&lt;br /&gt;&lt;br /&gt;Tipo de valor: REG_DWORD - número&lt;br /&gt;Intervalo válido: 1,2,4,8 (nodo b, nodo p, nodo m, nodo h)&lt;br /&gt;Valor predeterminado: 1 ó 8, según la configuración del servidor WINS  &lt;/div&gt;Descripción: Este parámetro determina qué métodos utilizará NetBT para registrar y resolver nombres. Un sistema de nodo B utiliza difusiones. Un sistema de nodo p utiliza consultas de nombre de punto a punto sólo a un servidor de nombres (WINS). Un sistema de nodo m emite difusiones primero y después consulta al servidor de nombre. Un sistema de nodo H consulta primero al servidor de nombres y después emite difusiones. Resolución mediante LMHOSTS y/o el servicio de nombre de dominio (DNS), si está habilitado, seguirá estos métodos. Esta clave, si se utiliza, anula la clave DhcpNodeType. Si ninguna clave está presente, el sistema utiliza el b-nodo como predeterminado si no hay servidores de WINS configurados para el cliente. El sistema utiliza de manera predeterminada el nodo H si hay al menos un servidor de WINS configurado. &lt;h3 id="tocHeadRef"&gt;Windows 95&lt;/h3&gt;&lt;script type="text/javascript"&gt;                 loadTOCNode(2, 'moreinformation');             &lt;/script&gt;NodeType&lt;br /&gt;Clave:&lt;div class="indent"&gt;HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\VxD\MSTCP&lt;br /&gt;&lt;br /&gt;Tipo de valor: DWORD&lt;br /&gt;Intervalo válido: 1, 2, 4 o 8&lt;br /&gt;Valor predeterminado: 1 (nodo b) si no se especifica ningún valor o no hay servidores WINS configurados en la red; 8 (nodo h) si se especifican servidores WINS y NodeType no es lo contrario se definen en el registro. &lt;/div&gt;Descripción: Este parámetro especifica el modo de resolución de nombres NetBIOS utilizada NetBIOS sobre TCP/IP. 1 = nodo b (difusión), 2 = nodo p (consultas de nombre de punto a punto a un servidor WINS), 4 = nodo m (servidor de nombre de difusión a continuación, consulta) y 8 = nodo h (servidor de nombre de consulta, a continuación, de difusión). Si está habilitado DNS (que también habilitada LMHOSTS en Windows 95), resolución de nombres también seguirá el modo definido por este parámetro. Este valor también se puede configurar mediante DHCP.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Instalacion de un servidor dhcp en debian lenny&lt;/span&gt;&lt;br /&gt;#apt-get install dhcp3-server&lt;br /&gt;&lt;br /&gt;#nano nano /etc/dhcp3/dhcpd.conf&lt;br /&gt;&lt;br /&gt;option netbios-node-type 8;&lt;br /&gt;ddns-update-style none;&lt;br /&gt;&lt;br /&gt;option domain-name "rolannet.org";&lt;br /&gt;&lt;br /&gt;default-lease-time 600;&lt;br /&gt;max-lease-time 7200;&lt;br /&gt;&lt;br /&gt;authoritative;&lt;br /&gt;log-facility local7;&lt;br /&gt;option ntp-servers 10.1.12.10;&lt;br /&gt;&lt;br /&gt;# lan dinamica&lt;br /&gt;subnet 192.168.0.0 netmask 255.255.255.0 {&lt;br /&gt;    option domain-name "eduardo.rondon.com.ve";&lt;br /&gt;    option domain-name-servers 200.44.32.12;&lt;br /&gt;    option subnet-mask 255.255.255.0;&lt;br /&gt;    default-lease-time 3600;&lt;br /&gt;    max-lease-time 7200;&lt;br /&gt;    range 192.168.0.150 192.168.0.100;&lt;br /&gt;    option routers 192.168.0.1;&lt;br /&gt;    option broadcast-address 192.168.0.255;&lt;br /&gt;    option netbios-name-servers 192.168.0.1;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;#nota recuerda que para que todo te funcione debes tener una ip estatica en la interface por la cual este servidor atendera las solicitudes de direcciones, asi que debes editar el archivo "nano /etc/network/interfaces" y el archivo (nano /etc/default/dhcp3-server ) para establecer el nombre de la interface.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6156708423375342740-1839912823005173207?l=rolannet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rolannet.blogspot.com/feeds/1839912823005173207/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://rolannet.blogspot.com/2009/12/coregir-tormenta-broadcast-en-redes.html#comment-form' title='0 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/1839912823005173207'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/1839912823005173207'/><link rel='alternate' type='text/html' href='http://rolannet.blogspot.com/2009/12/coregir-tormenta-broadcast-en-redes.html' title='Tormenta Broadcast en redes Windows con solo editar una linea en el servidor DHCP.'/><author><name>EDUARDO RONDON</name><uri>http://www.blogger.com/profile/15891302526450061414</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='02550045831296317303'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6156708423375342740.post-1686279530075367414</id><published>2009-11-27T20:07:00.006-04:00</published><updated>2009-11-27T20:33:43.868-04:00</updated><title type='text'>Instalando EnGenius. en Debian</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Bfsvt5oOUng/SxBvu_5k4oI/AAAAAAAAAIA/bfAEGCozS8A/s1600/prodImg231.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 400px; height: 212px;" src="http://2.bp.blogspot.com/_Bfsvt5oOUng/SxBvu_5k4oI/AAAAAAAAAIA/bfAEGCozS8A/s400/prodImg231.jpg" alt="" id="BLOGGER_PHOTO_ID_5408946005689557634" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Adaptador usb EnGenius. modelo: EUB-3701EXT (&lt;span class="Apple-style-span" style="word-spacing: 0px; font-style: normal; font-variant: normal; font-weight: normal; line-height: 16px; font-size-adjust: none; font-stretch: normal; text-transform: none; color: rgb(102, 102, 102); text-indent: 0px; white-space: normal; letter-spacing: normal; border-collapse: collapse; orphans: 2; widows: 2;font-family:Arial;font-size:180%;"  &gt;&lt;span style="color: rgb(102, 102, 102);font-family:'Arial','sans-serif';"  lang="EN-US"&gt;Ralink&lt;/span&gt;&lt;/span&gt;)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Descarga el driver desde la pagina del fabricante.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.ralinktech.com/support.php?s=2"&gt;http://www.ralinktech.com/support.php?s=2&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;busca en la lista y selecciona el modelo de tu adaptador&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Bfsvt5oOUng/SxBtzSg6nDI/AAAAAAAAAH4/Eh8VQgs0ItM/s1600/Pantallazo.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_Bfsvt5oOUng/SxBtzSg6nDI/AAAAAAAAAH4/Eh8VQgs0ItM/s400/Pantallazo.png" alt="" id="BLOGGER_PHOTO_ID_5408943880382618674" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;acepta y descarga el codigo fuente.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_Bfsvt5oOUng/SxBsZCJpblI/AAAAAAAAAHw/jIXWI4-bAcw/s1600/Pantallazo-3.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_Bfsvt5oOUng/SxBsZCJpblI/AAAAAAAAAHw/jIXWI4-bAcw/s400/Pantallazo-3.png" alt="" id="BLOGGER_PHOTO_ID_5408942329801829970" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;descomprime el codigo fuente y cambiate al directorio del mismo&lt;br /&gt;#tar --bzip2 -xvf 2009_1110_RT3070_Linux_STA_v2.1.2.0.tar.bz2&lt;br /&gt;&lt;br /&gt;#cd /home/tu-usuario/Desktop/2009_1110_RT3070_Linux_STA_v2.1.2.0&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Compilar y instalar el firmware&lt;br /&gt;#make&lt;br /&gt;#make install&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_Bfsvt5oOUng/SxBrVkvGIZI/AAAAAAAAAHo/zkqZTq5hrj4/s1600/Pantallazo-6.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_Bfsvt5oOUng/SxBrVkvGIZI/AAAAAAAAAHo/zkqZTq5hrj4/s400/Pantallazo-6.png" alt="" id="BLOGGER_PHOTO_ID_5408941170854601106" border="0" /&gt;&lt;/a&gt;Listo ya esta instalado y funcionando...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6156708423375342740-1686279530075367414?l=rolannet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rolannet.blogspot.com/feeds/1686279530075367414/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://rolannet.blogspot.com/2009/11/instalando-engenius-en-debian.html#comment-form' title='0 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/1686279530075367414'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/1686279530075367414'/><link rel='alternate' type='text/html' href='http://rolannet.blogspot.com/2009/11/instalando-engenius-en-debian.html' title='Instalando EnGenius. en Debian'/><author><name>EDUARDO RONDON</name><uri>http://www.blogger.com/profile/15891302526450061414</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='02550045831296317303'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_Bfsvt5oOUng/SxBvu_5k4oI/AAAAAAAAAIA/bfAEGCozS8A/s72-c/prodImg231.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6156708423375342740.post-1980953144561286735</id><published>2009-10-06T21:04:00.003-04:00</published><updated>2009-10-06T21:16:21.580-04:00</updated><title type='text'>compilar kernel en debian...</title><content type='html'># apt-get install debhelper kernel-package libncurses5-dev&lt;br /&gt;&lt;br /&gt;$ cd /usr/src &lt;br /&gt;&lt;br /&gt;dercargar la version mas reciente del kernel en kenel.org&lt;br /&gt;&lt;br /&gt;     $ tar --bzip2 -xvf kernel-source-2.x.xx.tar.bz2&lt;br /&gt;     $ ln -s kernel-source-2.x.xx linux&lt;br /&gt;     $ cd /usr/src/linux&lt;br /&gt;     $ make menuconfig            # personalizar a gusto&lt;br /&gt;     $ make-kpkg clean            # indispensable (consultar: man make-kpkg)&lt;br /&gt;     $ fakeroot make-kpkg --initrd kernel_image kernel_source kernel_headers&lt;br /&gt;     &lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Bfsvt5oOUng/Ssvp_87NNWI/AAAAAAAAAG0/U-4b-IBMnrM/s1600-h/kernel.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 236px;" src="http://2.bp.blogspot.com/_Bfsvt5oOUng/Ssvp_87NNWI/AAAAAAAAAG0/U-4b-IBMnrM/s400/kernel.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5389658663974417762" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;     $ cd ..&lt;br /&gt;     # dpkg -i kernel-image*.deb pcmcia-cs*.deb # instalar&lt;br /&gt;&lt;br /&gt;listo reiniciar y iniciar con el nuevo kernel...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6156708423375342740-1980953144561286735?l=rolannet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rolannet.blogspot.com/feeds/1980953144561286735/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://rolannet.blogspot.com/2009/10/compilar-kernel-en-debian.html#comment-form' title='0 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/1980953144561286735'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/1980953144561286735'/><link rel='alternate' type='text/html' href='http://rolannet.blogspot.com/2009/10/compilar-kernel-en-debian.html' title='compilar kernel en debian...'/><author><name>EDUARDO RONDON</name><uri>http://www.blogger.com/profile/15891302526450061414</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='02550045831296317303'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_Bfsvt5oOUng/Ssvp_87NNWI/AAAAAAAAAG0/U-4b-IBMnrM/s72-c/kernel.bmp' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6156708423375342740.post-5115114318178431616</id><published>2009-10-04T18:28:00.004-04:00</published><updated>2009-10-04T18:41:39.972-04:00</updated><title type='text'>atheros on kismet (debian)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_Bfsvt5oOUng/Sski11SpgpI/AAAAAAAAAGs/CJ6sxypcXu8/s1600-h/kismet.JPG"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 241px;" src="http://4.bp.blogspot.com/_Bfsvt5oOUng/Sski11SpgpI/AAAAAAAAAGs/CJ6sxypcXu8/s400/kismet.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5388876737359217298" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Equipo&lt;br /&gt;#lspci&lt;br /&gt;Ethernet controller: Atheros Communications Inc. AR5212/AR5213 Multiprotocol MAC/baseband processor (rev 01)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;editar el archivo de configuracion de kismet.&lt;br /&gt; #nano /etc/kismet/kismet.conf&lt;br /&gt;&lt;br /&gt;modificar la siguiente linea.&lt;br /&gt;&lt;br /&gt;source=madwifi_g,wifi0,madwifi&lt;br /&gt;&lt;br /&gt;______________________________&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;listo ya kismet funciona sin problemas...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6156708423375342740-5115114318178431616?l=rolannet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rolannet.blogspot.com/feeds/5115114318178431616/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://rolannet.blogspot.com/2009/10/atheros-on-kismet-debian.html#comment-form' title='0 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/5115114318178431616'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/5115114318178431616'/><link rel='alternate' type='text/html' href='http://rolannet.blogspot.com/2009/10/atheros-on-kismet-debian.html' title='atheros on kismet (debian)'/><author><name>EDUARDO RONDON</name><uri>http://www.blogger.com/profile/15891302526450061414</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='02550045831296317303'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_Bfsvt5oOUng/Sski11SpgpI/AAAAAAAAAGs/CJ6sxypcXu8/s72-c/kismet.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6156708423375342740.post-1986289156912536869</id><published>2009-05-26T15:36:00.000-04:00</published><updated>2009-05-26T16:51:10.285-04:00</updated><title type='text'>Nettop Fit-PC2</title><content type='html'>&lt;span style=";font-family:arial;font-size:100%;"  &gt;&lt;br /&gt;&lt;/span&gt;   	&lt;meta equiv="CONTENT-TYPE" content="text/html; charset=utf-8"&gt; 	&lt;title&gt;&lt;/title&gt; 	&lt;meta name="GENERATOR" content="OpenOffice.org 3.0  (Linux)"&gt; 	&lt;style type="text/css"&gt; 	&lt;!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } 		H1 { margin-bottom: 0.21cm } 		H1.western { font-family: "Liberation Serif", serif } 		H1.cjk { font-family: "DejaVu Sans" } 		H1.ctl { font-family: "DejaVu Sans" } &lt;/style&gt;&lt;span style="font-family:DejaVu Sans Mono, sans-serif;"&gt;&lt;span style="font-size:100%;"&gt;bajo consumo y reducidas dimensiones. Están orientados a la navegación y la ofimatica, por lo que sus prestaciones son muy reducidas, aunque suficientes para estas funciones. También suelen usarse como centros multimedia, conectados por ejemplo a un televisor.&lt;/span&gt;&lt;/span&gt; &lt;p&gt;&lt;span style="font-family:DejaVu Sans Mono, sans-serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;este modelo varia entre $245 y $399&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:arial;"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/p&gt; &lt;span style=";font-family:arial;font-size:100%;"  &gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_Bfsvt5oOUng/ShxSY4M3gMI/AAAAAAAAAFw/nbnv-Kqpe1Y/s1600-h/500px-Fit-pc2-art-large.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 320px;" src="http://1.bp.blogspot.com/_Bfsvt5oOUng/ShxSY4M3gMI/AAAAAAAAAFw/nbnv-Kqpe1Y/s400/500px-Fit-pc2-art-large.jpg" alt="" id="BLOGGER_PHOTO_ID_5340233845511258306" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;h2 style="font-family: arial;" face="arial"&gt; &lt;/h2&gt;&lt;h4  style="font-family:arial;"&gt;&lt;span style="font-size:100%;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_Bfsvt5oOUng/ShxR9Fqc72I/AAAAAAAAAFg/bVPgHwcjXm4/s1600-h/Annotations.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 317px;" src="http://3.bp.blogspot.com/_Bfsvt5oOUng/ShxR9Fqc72I/AAAAAAAAAFg/bVPgHwcjXm4/s400/Annotations.png" alt="" id="BLOGGER_PHOTO_ID_5340233368088670050" border="0" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/h4&gt;&lt;span style=";font-family:arial;font-size:100%;"  &gt;&lt;span class="mw-headline"&gt;Especificaciones:.&lt;/span&gt;&lt;/span&gt;  &lt;span style=";font-family:arial;font-size:100%;"  &gt;&lt;a name="CPU" id="CPU"&gt;&lt;/a&gt;&lt;/span&gt;&lt;h4  style="font-family:arial;"&gt; &lt;span style="font-size:100%;"&gt;&lt;span class="mw-headline"&gt; CPU &lt;/span&gt;&lt;/span&gt;&lt;/h4&gt; &lt;ul  style="font-family:arial;"&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt; Intel Atom Z530 1.6GHz / Z510 1.1GHz &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;span style=";font-family:arial;font-size:100%;"  &gt;&lt;a name="Chipset" id="Chipset"&gt;&lt;/a&gt;&lt;/span&gt;&lt;h4  style="font-family:arial;"&gt; &lt;span style="font-size:100%;"&gt;&lt;span class="mw-headline"&gt; Chipset &lt;/span&gt;&lt;/span&gt;&lt;/h4&gt; &lt;ul  style="font-family:arial;"&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt; Intel US15W SCH &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;span style=";font-family:arial;font-size:100%;"  &gt;&lt;a name="Memory" id="Memory"&gt;&lt;/a&gt;&lt;/span&gt;&lt;h4  style="font-family:arial;"&gt; &lt;span style="font-size:100%;"&gt;&lt;span class="mw-headline"&gt; Memory &lt;/span&gt;&lt;/span&gt;&lt;/h4&gt; &lt;ul  style="font-family:arial;"&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt; 1GB DDR2-533 on-board &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;span style=";font-family:arial;font-size:100%;"  &gt;&lt;a name="Storage" id="Storage"&gt;&lt;/a&gt;&lt;/span&gt;&lt;h4  style="font-family:arial;"&gt; &lt;span style="font-size:100%;"&gt;&lt;span class="mw-headline"&gt; Storage &lt;/span&gt;&lt;/span&gt;&lt;/h4&gt; &lt;ul  style="font-family:arial;"&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt; Internal bay for 2.5" SATA HDD &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt; miniSD socket &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;span style=";font-family:arial;font-size:100%;"  &gt;&lt;a name="Display_and_Graphics" id="Display_and_Graphics"&gt;&lt;/a&gt;&lt;/span&gt;&lt;h4  style="font-family:arial;"&gt; &lt;span style="font-size:100%;"&gt;&lt;span class="mw-headline"&gt; Display and Graphics &lt;/span&gt;&lt;/span&gt;&lt;/h4&gt; &lt;ul  style="font-family:arial;"&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt; Intel GMA500 graphics acceleration &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt; Full hardware video acceleration of H.264, MPEG2, VC1, and WMV9 &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt; DVI Digital output up to 1920 x 1080 through HDMI connector &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;span style=";font-family:arial;font-size:100%;"  &gt;&lt;a name="Audio" id="Audio"&gt;&lt;/a&gt;&lt;/span&gt;&lt;h4  style="font-family:arial;"&gt; &lt;span style="font-size:100%;"&gt;&lt;span class="mw-headline"&gt; Audio &lt;/span&gt;&lt;/span&gt;&lt;/h4&gt; &lt;ul  style="font-family:arial;"&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt; High definition 2.0 &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt; Line-out, line-in, mic &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;span style=";font-family:arial;font-size:100%;"  &gt;&lt;a name="Networking" id="Networking"&gt;&lt;/a&gt;&lt;/span&gt;&lt;h4  style="font-family:arial;"&gt; &lt;span style="font-size:100%;"&gt;&lt;span class="mw-headline"&gt; Networking &lt;/span&gt;&lt;/span&gt;&lt;/h4&gt; &lt;ul  style="font-family:arial;"&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt; 1000 BaseT Ethernet &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt; 802.11g WLAN &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;span style=";font-family:arial;font-size:100%;"  &gt;&lt;a name="USB" id="USB"&gt;&lt;/a&gt;&lt;/span&gt;&lt;h4  style="font-family:arial;"&gt; &lt;span style="font-size:100%;"&gt;&lt;span class="mw-headline"&gt; USB &lt;/span&gt;&lt;/span&gt;&lt;/h4&gt; &lt;ul  style="font-family:arial;"&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt; 6 USB 2.0 High Speed ports &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;span style=";font-family:arial;font-size:100%;"  &gt;&lt;a name="IR" id="IR"&gt;&lt;/a&gt;&lt;/span&gt;&lt;h4  style="font-family:arial;"&gt; &lt;span style="font-size:100%;"&gt;&lt;span class="mw-headline"&gt; IR &lt;/span&gt;&lt;/span&gt;&lt;/h4&gt; &lt;ul  style="font-family:arial;"&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt; Programmable consumer IR receiver &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;span style=";font-family:arial;font-size:100%;"  &gt;&lt;a name="Software" id="Software"&gt;&lt;/a&gt;&lt;/span&gt;&lt;h2  style="font-family:arial;"&gt; &lt;span style="font-size:100%;"&gt;BIOS &lt;/span&gt;&lt;/h2&gt; &lt;ul  style="font-family:arial;"&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt; Phoenix BIOS &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt; Bootable from HDD, USB thumb drive, USB CDROM, USB hard disk, over network &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;span style=";font-family:arial;font-size:100%;"  &gt;&lt;a name="Operating_Systems" id="Operating_Systems"&gt;&lt;/a&gt;&lt;/span&gt;&lt;h4  style="font-family:arial;"&gt; &lt;span style="font-size:100%;"&gt;&lt;span class="mw-headline"&gt; Operating Systems &lt;/span&gt;&lt;/span&gt;&lt;/h4&gt; &lt;ul  style="font-family:arial;"&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt; Ubuntu Linux 8.04&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style=";font-family:arial;font-size:100%;"  &gt;link&gt;&lt;br /&gt;&lt;/span&gt;  	&lt;meta equiv="CONTENT-TYPE" content="text/html; charset=utf-8"&gt; 	&lt;title&gt;&lt;/title&gt; 	&lt;meta name="GENERATOR" content="OpenOffice.org 3.0  (Linux)"&gt; 	&lt;style type="text/css"&gt; 	&lt;!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } 		A:link { so-language: zxx } 	--&gt; 	&lt;/style&gt;  &lt;p  style="margin-bottom: 0cm;font-family:arial;"&gt;&lt;span style="font-size:100%;"&gt;&lt;a href="http://fit-pc2.com/wiki/index.php?title=Main_Page"&gt;http://fit-pc2.com/wiki/index.php?title=Main_Page&lt;/a&gt;&lt;/span&gt;&lt;/p&gt; &lt;p  style="margin-bottom: 0cm;font-family:arial;"&gt;&lt;span style="font-size:100%;"&gt;&lt;a href="http://www.compulab.co.il/fitpc2/html/fitpc2-price.htm"&gt;http://www.compulab.co.il/fitpc2/html/fitpc2-price.htm&lt;/a&gt;&lt;/span&gt;&lt;/p&gt; &lt;p  style="margin-bottom: 0cm;font-family:arial;"&gt;&lt;span style="font-size:100%;"&gt;&lt;a href="http://www.compulab.co.il/fitpc2/html/fitpc2-datasheet.htm"&gt;http://www.compulab.co.il/fitpc2/html/fitpc2-datasheet.htm&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6156708423375342740-1986289156912536869?l=rolannet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rolannet.blogspot.com/feeds/1986289156912536869/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://rolannet.blogspot.com/2009/05/nettop-fit-pc2.html#comment-form' title='0 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/1986289156912536869'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/1986289156912536869'/><link rel='alternate' type='text/html' href='http://rolannet.blogspot.com/2009/05/nettop-fit-pc2.html' title='Nettop Fit-PC2'/><author><name>EDUARDO RONDON</name><uri>http://www.blogger.com/profile/15891302526450061414</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='02550045831296317303'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_Bfsvt5oOUng/ShxSY4M3gMI/AAAAAAAAAFw/nbnv-Kqpe1Y/s72-c/500px-Fit-pc2-art-large.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6156708423375342740.post-7699324821360486196</id><published>2009-05-17T14:38:00.000-04:00</published><updated>2009-05-17T15:30:23.579-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Nokia'/><category scheme='http://www.blogger.com/atom/ns#' term='Debian'/><title type='text'>N810</title><content type='html'>&lt;span style="" onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;b&gt;&lt;span style="font-size:180%;"&gt;Apostando por el Software Libre....&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Nokia + Wi-Fi  + teclado completo + GPS + Linux = N810&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_Bfsvt5oOUng/ShBfA90FmzI/AAAAAAAAAFA/QzB2mrKTfhs/s1600-h/800px-N810-open.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_Bfsvt5oOUng/ShBfA90FmzI/AAAAAAAAAFA/QzB2mrKTfhs/s400/800px-N810-open.jpg" alt="" id="BLOGGER_PHOTO_ID_5336870028631710514" border="0" /&gt;&lt;/a&gt;&lt;strong&gt;Conexiones&lt;/strong&gt; &lt;ul class="standard_list"&gt;&lt;li&gt;Estándar WLAN: IEEE 802.11b/g  &lt;/li&gt;&lt;li&gt;Especificación Bluetooth v. 2.0. +EDR (Perfiles admitidos: HID, FTP, DUN, GAP, SPP, HSP, SAP y OPP)&lt;/li&gt;&lt;li&gt;USB de alta velocidad para la conexión con el PC&lt;/li&gt;&lt;li&gt;Toma de 3,5 mm para auriculares estéreo (Conector AV Nokia)&lt;/li&gt;&lt;/ul&gt;&lt;span style="" onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;b&gt;Maemo&lt;/b&gt; es un &lt;a href="http://64.233.169.132/translate_c?hl=es&amp;amp;sl=en&amp;amp;u=http://en.wikipedia.org/wiki/Operating_system&amp;amp;prev=/search%3Fq%3DOS2008%26hl%3Des%26client%3Diceweasel-a%26rls%3Dorg.debian:es-AR:unofficial&amp;amp;rurl=translate.google.com&amp;amp;usg=ALkJrhgfg6feuUjG_g8lYeQDTzo3JP7l4A" title="Sistema operativo"&gt;sistema operativo&lt;/a&gt; para el &lt;a href="http://64.233.169.132/translate_c?hl=es&amp;amp;sl=en&amp;amp;u=http://en.wikipedia.org/wiki/Nokia_Internet_Tablet&amp;amp;prev=/search%3Fq%3DOS2008%26hl%3Des%26client%3Diceweasel-a%26rls%3Dorg.debian:es-AR:unofficial&amp;amp;rurl=translate.google.com&amp;amp;usg=ALkJrhgqeIlvpAuolXHa0jI7Y-mrJN_H5A" title="Nokia Internet Tablet" class="mw-redirect"&gt;Nokia Internet Tablet&lt;/a&gt; línea de &lt;a href="http://64.233.169.132/translate_c?hl=es&amp;amp;sl=en&amp;amp;u=http://en.wikipedia.org/wiki/Handheld_computer&amp;amp;prev=/search%3Fq%3DOS2008%26hl%3Des%26client%3Diceweasel-a%26rls%3Dorg.debian:es-AR:unofficial&amp;amp;rurl=translate.google.com&amp;amp;usg=ALkJrhiWtY2ZdCUYKGdYr4TH2C_rD1Mbdw" title="Computadora de mano" class="mw-redirect"&gt;ordenadores de mano.&lt;/a&gt;&lt;/span&gt; &lt;p&gt; &lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;Maemo se basa en &lt;a href="http://64.233.169.132/translate_c?hl=es&amp;amp;sl=en&amp;amp;u=http://en.wikipedia.org/wiki/Debian_GNU/Linux&amp;amp;prev=/search%3Fq%3DOS2008%26hl%3Des%26client%3Diceweasel-a%26rls%3Dorg.debian:es-AR:unofficial&amp;amp;rurl=translate.google.com&amp;amp;usg=ALkJrhiXMFs8tOgJ6BoTilgP4UibJrbTbA" title="Debian GNU / Linux" class="mw-redirect"&gt;Debian GNU / Linux&lt;/a&gt;, basa gran part&lt;/span&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;e de su &lt;a href="http://64.233.169.132/translate_c?hl=es&amp;amp;sl=en&amp;amp;u=http://en.wikipedia.org/wiki/GUI&amp;amp;prev=/search%3Fq%3DOS2008%26hl%3Des%26client%3Diceweasel-a%26rls%3Dorg.debian:es-AR:unofficial&amp;amp;rurl=translate.google.com&amp;amp;usg=ALkJrhihvDztWzoXtisOCOHbkxjSPJRUfA" title="GUI" class="mw-redirect"&gt;interfaz gráfica,&lt;/a&gt;&lt;/span&gt;&lt;a href="http://64.233.169.132/translate_c?hl=es&amp;amp;sl=en&amp;amp;u=http://en.wikipedia.org/wiki/GUI&amp;amp;prev=/search%3Fq%3DOS2008%26hl%3Des%26client%3Diceweasel-a%26rls%3Dorg.debian:es-AR:unofficial&amp;amp;rurl=translate.google.com&amp;amp;usg=ALkJrhihvDztWzoXtisOCOHbkxjSPJRUfA" title="GUI" class="mw-redirect"&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;(hildon)&lt;/span&gt;&lt;/a&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt; en el &lt;/span&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;proyecto&lt;/span&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt; &lt;a href="http://64.233.169.132/translate_c?hl=es&amp;amp;sl=en&amp;amp;u=http://en.wikipedia.org/wiki/GNOME&amp;amp;prev=/search%3Fq%3DOS2008%26hl%3Des%26client%3Diceweasel-a%26rls%3Dorg.debian:es-AR:unofficial&amp;amp;rurl=translate.google.com&amp;amp;usg=ALkJrhhDv00W5tZpigLmItfNKTmLP1LgEw" title="GNOME"&gt;GNOME&lt;/a&gt;.&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_Bfsvt5oOUng/ShBk3qLMkgI/AAAAAAAAAFY/awNsgaw-0Aw/s1600-h/Maemo.org_logo_contest_glaoliver_1.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 200px;" src="http://1.bp.blogspot.com/_Bfsvt5oOUng/ShBk3qLMkgI/AAAAAAAAAFY/awNsgaw-0Aw/s400/Maemo.org_logo_contest_glaoliver_1.png" alt="" id="BLOGGER_PHOTO_ID_5336876465810870786" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Bfsvt5oOUng/ShBkM_xo8xI/AAAAAAAAAFQ/466-ZVsMrZ0/s1600-h/Itos_2008_desktop.jpg"&gt;&lt;br /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="" onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;b&gt;Hildon&lt;/b&gt; es una &lt;a href="http://64.233.169.132/translate_c?hl=es&amp;amp;sl=en&amp;amp;u=http://en.wikipedia.org/wiki/Application_framework&amp;amp;prev=/search%3Fq%3DOS2008%26hl%3Des%26client%3Diceweasel-a%26rls%3Dorg.debian:es-AR:unofficial&amp;amp;rurl=translate.google.com&amp;amp;usg=ALkJrhhXVqND3Dt6FdZv7o8rilVVgiigMw" title="Marco de aplicación"&gt;aplicación marco&lt;/a&gt; originalmente desarr&lt;/span&gt;&lt;span style="" onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;ollado para los dispositivos móviles &lt;a href="http://64.233.169.132/translate_c?hl=es&amp;amp;sl=en&amp;amp;u=http://en.wikipedia.org/wiki/PDA&amp;amp;prev=/search%3Fq%3DOS2008%26hl%3Des%26client%3Diceweasel-a%26rls%3Dorg.debian:es-AR:unofficial&amp;amp;rurl=translate.google.com&amp;amp;usg=ALkJrhj7IdefTvFu1VZnit_8EHT5dE8FYQ" title="PDA" class="mw-redirect"&gt;(PDAs,&lt;/a&gt; &lt;a href="http://64.233.169.132/translate_c?hl=es&amp;amp;sl=en&amp;amp;u=http://en.wikipedia.org/wiki/Mobile_phone&amp;amp;prev=/search%3Fq%3DOS2008%26hl%3Des%26client%3Diceweasel-a%26rls%3Dorg.debian:es-AR:unofficial&amp;amp;rurl=translate.google.com&amp;amp;usg=ALkJrhgca8YTB7XOad9uRsBZ68yHr7f3Ew" title="Teléfono móvil"&gt;teléfonos móviles,&lt;/a&gt; etc) para &lt;a href="http://64.233.169.132/translate_c?hl=es&amp;amp;sl=en&amp;amp;u=http://en.wikipedia.org/wiki/Linux&amp;amp;prev=/search%3Fq%3DOS2008%26hl%3Des%26client%3Diceweasel-a%26rls%3Dorg.debian:es-AR:unofficial&amp;amp;rurl=translate.google.com&amp;amp;usg=ALkJrhiDx9GWKVljSUAFznS2B47DfBfpzw" title="De Linux"&gt;Linux&lt;/a&gt;&lt;/span&gt;&lt;span style="" onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;span class="google-src-text" style="direction: ltr; text-align: left;"&gt;.&lt;/span&gt; Ha sido desarrollado por &lt;a href="http://64.233.169.132/translate_c?hl=es&amp;amp;sl=en&amp;amp;u=http://en.wikipedia.org/wiki/Nokia&amp;amp;prev=/search%3Fq%3DOS2008%26hl%3Des%26client%3Diceweasel-a%26rls%3Dorg.debian:es-AR:unofficial&amp;amp;rurl=translate.google.com&amp;amp;usg=ALkJrhjaYw26echdv_itcoHoolrrVD0L0g" title="Nokia"&gt;Nokia&lt;/a&gt; para el &lt;a href="http://64.233.169.132/translate_c?hl=es&amp;amp;sl=en&amp;amp;u=http://en.wikipedia.org/wiki/Maemo&amp;amp;prev=/search%3Fq%3DOS2008%26hl%3Des%26client%3Diceweasel-a%26rls%3Dorg.debian:es-AR:unofficial&amp;amp;rurl=translate.google.com&amp;amp;usg=ALkJrhix3d1Lv7agwvc_6cpjsKfJ7q2wfw" title="Maemo"&gt;Maemo&lt;/a&gt; y es ahora una parte de &lt;a href="http://64.233.169.132/translate_c?hl=es&amp;amp;sl=en&amp;amp;u=http://en.wikipedia.org/wiki/GNOME&amp;amp;prev=/search%3Fq%3DOS2008%26hl%3Des%26client%3Diceweasel-a%26rls%3Dorg.debian:es-AR:unofficial&amp;amp;rurl=translate.google.com&amp;amp;usg=ALkJrhhDv00W5tZpigLmItfNKTmLP1LgEw" title="GNOME"&gt;GNOME.&lt;/a&gt;&lt;/span&gt; &lt;span style="" onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;Se centra en proporcionar una interfaz amigable. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;El desarrollo para Maemo se hace con &lt;a href="http://es.wikipedia.org/w/index.php?title=Scratchbox&amp;amp;action=edit&amp;amp;redlink=1" class="new" title="Scratchbox (aún no redactado)"&gt;Scratchbox&lt;/a&gt; Crosscompilation toolkit.&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Sitios de Interes:.&lt;br /&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span onmouseover="_tipon(this)" onmouseout="_tipoff()"&gt;&lt;a href="http://maemo.org/"&gt;http://maemo.org/&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.nokia.es/productos/moviles/n810/especificaciones"&gt;http://www.nokia.es/productos/moviles/n810/especificaciones&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.scratchbox.org/"&gt;http://www.scratchbox.org/&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.gnome.org/"&gt;http://www.gnome.org/&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6156708423375342740-7699324821360486196?l=rolannet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rolannet.blogspot.com/feeds/7699324821360486196/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://rolannet.blogspot.com/2009/05/n810.html#comment-form' title='0 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/7699324821360486196'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/7699324821360486196'/><link rel='alternate' type='text/html' href='http://rolannet.blogspot.com/2009/05/n810.html' title='N810'/><author><name>EDUARDO RONDON</name><uri>http://www.blogger.com/profile/15891302526450061414</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='02550045831296317303'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_Bfsvt5oOUng/ShBfA90FmzI/AAAAAAAAAFA/QzB2mrKTfhs/s72-c/800px-N810-open.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6156708423375342740.post-2230920238310745679</id><published>2009-04-28T20:49:00.000-04:00</published><updated>2009-04-28T21:37:00.322-04:00</updated><title type='text'>Imagen Flotante en Tu Blog (HTML)</title><content type='html'>Edicion HTML&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Bfsvt5oOUng/Sfepx_M9IkI/AAAAAAAAAEw/gFzSnoe3OTs/s1600-h/pag.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 239px;" src="http://2.bp.blogspot.com/_Bfsvt5oOUng/Sfepx_M9IkI/AAAAAAAAAEw/gFzSnoe3OTs/s400/pag.JPG" alt="" id="BLOGGER_PHOTO_ID_5329915360260727362" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1. Estructura:&lt;span style="text-decoration: underline;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_Bfsvt5oOUng/SfeojD1vKgI/AAAAAAAAAEY/OqSlMVqtN9E/s1600-h/1.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 49px;" src="http://1.bp.blogspot.com/_Bfsvt5oOUng/SfeojD1vKgI/AAAAAAAAAEY/OqSlMVqtN9E/s400/1.JPG" alt="" id="BLOGGER_PHOTO_ID_5329914004295854594" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;2. Nos deberia quedar algo asi.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_Bfsvt5oOUng/Sfeo5G2PkaI/AAAAAAAAAEg/PLFoVDlhbTA/s1600-h/3.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 142px;" src="http://1.bp.blogspot.com/_Bfsvt5oOUng/Sfeo5G2PkaI/AAAAAAAAAEg/PLFoVDlhbTA/s400/3.JPG" alt="" id="BLOGGER_PHOTO_ID_5329914383060406690" border="0" /&gt;&lt;/a&gt;&lt;a href="http://tux.crystalxp.net/es.id.17032-wolvegetax-zebrux.html"&gt;&lt;br /&gt;http://tux.crystalxp.net/es.id.17032-wolvegetax-zebrux.html&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6156708423375342740-2230920238310745679?l=rolannet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rolannet.blogspot.com/feeds/2230920238310745679/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://rolannet.blogspot.com/2009/04/imagen-flotante-en-tu-blog-html.html#comment-form' title='0 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/2230920238310745679'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/2230920238310745679'/><link rel='alternate' type='text/html' href='http://rolannet.blogspot.com/2009/04/imagen-flotante-en-tu-blog-html.html' title='Imagen Flotante en Tu Blog (HTML)'/><author><name>EDUARDO RONDON</name><uri>http://www.blogger.com/profile/15891302526450061414</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='02550045831296317303'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_Bfsvt5oOUng/Sfepx_M9IkI/AAAAAAAAAEw/gFzSnoe3OTs/s72-c/pag.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6156708423375342740.post-1719226261129179192</id><published>2009-04-15T17:28:00.000-04:00</published><updated>2009-04-15T17:33:09.385-04:00</updated><title type='text'>5 CNSL</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Bfsvt5oOUng/SeZR5bN4HaI/AAAAAAAAAC0/kim4CZ8zHGA/s1600-h/cnsl.bmp"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 333px; height: 101px;" src="http://2.bp.blogspot.com/_Bfsvt5oOUng/SeZR5bN4HaI/AAAAAAAAAC0/kim4CZ8zHGA/s400/cnsl.bmp" alt="" id="BLOGGER_PHOTO_ID_5325033656412544418" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;Informacion: &lt;a href="http://cnsl.org.ve/tiki-index.php"&gt;http://cnsl.org.ve/tiki-index.php&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6156708423375342740-1719226261129179192?l=rolannet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rolannet.blogspot.com/feeds/1719226261129179192/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://rolannet.blogspot.com/2009/04/5-cnsl.html#comment-form' title='0 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/1719226261129179192'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/1719226261129179192'/><link rel='alternate' type='text/html' href='http://rolannet.blogspot.com/2009/04/5-cnsl.html' title='5 CNSL'/><author><name>EDUARDO RONDON</name><uri>http://www.blogger.com/profile/15891302526450061414</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='02550045831296317303'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_Bfsvt5oOUng/SeZR5bN4HaI/AAAAAAAAAC0/kim4CZ8zHGA/s72-c/cnsl.bmp' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6156708423375342740.post-3684935881873371172</id><published>2009-04-15T17:20:00.000-04:00</published><updated>2009-04-23T20:39:12.845-04:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Bfsvt5oOUng/SeZQDjVPASI/AAAAAAAAACc/KE6GnYa9uS4/s1600-h/flisol.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 105px;" src="http://2.bp.blogspot.com/_Bfsvt5oOUng/SeZQDjVPASI/AAAAAAAAACc/KE6GnYa9uS4/s320/flisol.png" alt="" id="BLOGGER_PHOTO_ID_5325031631366324514" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:130%;"&gt;&lt;strong&gt;Festival Latinoamericano de Instalación de Software Libre&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;                                                                                                                   Sábado 25 de Abril. 2009&lt;br /&gt;&lt;br /&gt;Asiste en tu Ciudad! La entrada es libre y gratuita.&lt;br /&gt;¿Te lo vas a perder?&lt;br /&gt;¡Anotate ya!&lt;br /&gt;FLISOL 2009&lt;br /&gt;&lt;br /&gt;Para mayor informacion:. &lt;a href="http://flisol.info/FLISOL2009/Venezuela/PuertoOrdaz"&gt;http://flisol.info/FLISOL2009/Venezuela/PuertoOrdaz&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Bfsvt5oOUng/SfEJ-h3AjII/AAAAAAAAADE/PmulsRj91L8/s1600-h/poster_1a.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 281px; height: 400px;" src="http://2.bp.blogspot.com/_Bfsvt5oOUng/SfEJ-h3AjII/AAAAAAAAADE/PmulsRj91L8/s400/poster_1a.png" alt="" id="BLOGGER_PHOTO_ID_5328050804001639554" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6156708423375342740-3684935881873371172?l=rolannet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rolannet.blogspot.com/feeds/3684935881873371172/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://rolannet.blogspot.com/2009/04/festival-latinoamericano-de-instalacion.html#comment-form' title='0 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/3684935881873371172'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/3684935881873371172'/><link rel='alternate' type='text/html' href='http://rolannet.blogspot.com/2009/04/festival-latinoamericano-de-instalacion.html' title=''/><author><name>EDUARDO RONDON</name><uri>http://www.blogger.com/profile/15891302526450061414</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='02550045831296317303'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_Bfsvt5oOUng/SeZQDjVPASI/AAAAAAAAACc/KE6GnYa9uS4/s72-c/flisol.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6156708423375342740.post-2323999370613170343</id><published>2009-04-15T03:08:00.000-04:00</published><updated>2009-04-15T03:14:01.382-04:00</updated><title type='text'>Instalando Atheros 5007EG con madwifi en Debian</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Bfsvt5oOUng/SeWItxYLW2I/AAAAAAAAACU/9yaDUljk05k/s1600-h/atheros.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 152px;" src="http://2.bp.blogspot.com/_Bfsvt5oOUng/SeWItxYLW2I/AAAAAAAAACU/9yaDUljk05k/s320/atheros.jpg" alt="" id="BLOGGER_PHOTO_ID_5324812454365715298" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;p&gt;1. Abrir un Terminal&lt;/p&gt; &lt;p&gt;2. Descarga madwifi:&lt;/p&gt; &lt;p&gt;wget -c http://snapshots.madwifi-project.org/&lt;a href="http://snapshots.madwifi-project.org/madwifi-hal-0.10.5.6-current.tar.gz"&gt;madwifi-hal-0.10.5.6-current.tar.gz&lt;/a&gt;&lt;/p&gt; &lt;p&gt;3. Descomprimir el paquete:&lt;/p&gt; &lt;p&gt;tar xvf &lt;a href="http://snapshots.madwifi-project.org/madwifi-hal-0.10.5.6-current.tar.gz"&gt;madwifi-hal-0.10.5.6-current.tar.gz&lt;/a&gt;&lt;/p&gt; &lt;p&gt;4. Entrar  en el directorio descomprimido.&lt;/p&gt; &lt;p&gt;cd &lt;a href="http://snapshots.madwifi-project.org/madwifi-hal-0.10.5.6-current.tar.gz"&gt;madwifi-hal-0.10.5.6-current&lt;/a&gt;&lt;/p&gt; &lt;p&gt;5. Paquetes esenciales para la compilacion de los fuentes.&lt;/p&gt; &lt;p&gt;sudo apt-get update &amp;amp;&amp;amp; sudo aptitude install build-essential&lt;/p&gt; &lt;p&gt;6. Instala y Agrega los Modulos&lt;/p&gt; &lt;p&gt;sudo make install&lt;br /&gt;sudo modprobe ath_pci&lt;br /&gt;sudo modprobe wlan_scan_sta&lt;/p&gt; &lt;p&gt;7. Instala Wifi-Radar&lt;/p&gt; &lt;p&gt;sudo apt-get install wifi-radar&lt;/p&gt; &lt;p&gt;8. Restart el computador y ya …..&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6156708423375342740-2323999370613170343?l=rolannet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rolannet.blogspot.com/feeds/2323999370613170343/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://rolannet.blogspot.com/2009/04/instalando-atheros-5007eg-con-madwifi.html#comment-form' title='0 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/2323999370613170343'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/2323999370613170343'/><link rel='alternate' type='text/html' href='http://rolannet.blogspot.com/2009/04/instalando-atheros-5007eg-con-madwifi.html' title='Instalando Atheros 5007EG con madwifi en Debian'/><author><name>EDUARDO RONDON</name><uri>http://www.blogger.com/profile/15891302526450061414</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='02550045831296317303'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_Bfsvt5oOUng/SeWItxYLW2I/AAAAAAAAACU/9yaDUljk05k/s72-c/atheros.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6156708423375342740.post-855042565164990897</id><published>2009-04-15T03:03:00.000-04:00</published><updated>2009-04-15T03:08:01.492-04:00</updated><title type='text'>chipset Intel 82801H con ALSA en Debian lenny</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Bfsvt5oOUng/SeWHqVYhHRI/AAAAAAAAACM/p9R-ram4pR0/s1600-h/debian211.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 235px;" src="http://2.bp.blogspot.com/_Bfsvt5oOUng/SeWHqVYhHRI/AAAAAAAAACM/p9R-ram4pR0/s320/debian211.png" alt="" id="BLOGGER_PHOTO_ID_5324811295799713042" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;p&gt;Primero lo Primero&lt;/p&gt; &lt;p&gt;$ lspci&lt;br /&gt;00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 03)&lt;/p&gt; &lt;p&gt;Paso1 Instalar:&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;# aptitude install build-essential module-assistant&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;Paso2 Descargar el Modulo o Drivers:&lt;/p&gt; &lt;p&gt;Ahora vamos a descargar las fuentes del paquete en una ubicación cualquiera, por ejemplo: /home/usuario/Desktop:&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;$ wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.17.tar.bz2&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;Paso3 Descomprimir:&lt;/p&gt; &lt;p&gt;Nos vamos al directorio /home/usuario/Desktop y descomprimimos el archivo:&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;$ tar xvf alsa-driver-1.0.17.tar&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;Ingresamos al directorio:&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;$ cd alsa-driver-1.0.17/&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;Paso4 Configurar y Compilar:&lt;/p&gt; &lt;p&gt;Vamos ahora a configurar, y compilar el paquete para que se adapte a nuestro sistema&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;# ./configure &amp;amp;&amp;amp; make &amp;amp;&amp;amp; make install&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;para configurarlo:&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;# alsaconf&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;Escoger su tarjeta de sonido, en nuestro caso “Intel  82801H” lo hacemos y presionamos “OK” o “Aceptar”&lt;/p&gt; &lt;p&gt;Pregunta si queremos que automáticamente incluya el modulo a nuestro kernel y diremos que si. Ahora subiremos el volumen y editaremos nuestro ecualizador:&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;# alsamixer&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;Paso5 Reiniciaremos:&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;# /etc/init.d/alsasound restart&lt;br /&gt;# /etc/init.d/gdm restart&lt;/p&gt;&lt;/blockquote&gt; &lt;blockquote&gt;&lt;p&gt;listo ya funciona….&lt;/p&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6156708423375342740-855042565164990897?l=rolannet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rolannet.blogspot.com/feeds/855042565164990897/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://rolannet.blogspot.com/2009/04/chipset-intel-82801h-con-alsa-en-debian.html#comment-form' title='0 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/855042565164990897'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6156708423375342740/posts/default/855042565164990897'/><link rel='alternate' type='text/html' href='http://rolannet.blogspot.com/2009/04/chipset-intel-82801h-con-alsa-en-debian.html' title='chipset Intel 82801H con ALSA en Debian lenny'/><author><name>EDUARDO RONDON</name><uri>http://www.blogger.com/profile/15891302526450061414</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='02550045831296317303'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_Bfsvt5oOUng/SeWHqVYhHRI/AAAAAAAAACM/p9R-ram4pR0/s72-c/debian211.png' height='72' width='72'/><thr:total>0</thr:total></entry></feed>