<?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:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8952967452932106993</id><updated>2011-07-08T14:09:13.541-04:30</updated><title type='text'>BlogRockCounter</title><subtitle type='html'>V1.3</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://blogrockcounter.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8952967452932106993/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://blogrockcounter.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>RockCounter</name><uri>http://www.blogger.com/profile/03192168202884370546</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>8</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8952967452932106993.post-4984425776508522475</id><published>2010-08-08T18:18:00.004-04:30</published><updated>2010-08-08T18:58:22.088-04:30</updated><title type='text'>Configuración sencilla de Servidor DHCP en Debian</title><content type='html'>&lt;div style="text-align: justify;"&gt;Lo primero es instalar el paquete necesario para la activación de nuestro servidor DHCP.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;apt-get install &lt;span style="font-weight: bold;"&gt;dhcp3-server&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;Una&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;&lt;/span&gt;ves echo esto procedemos a la configuración, para ello debemos editar el archivo creado por defecto en la instalación del servidor ubicado en la ruta &lt;span style="font-weight: bold;"&gt;/etc/dhcp3/dhcpd.conf&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;A continuación se muestra un Ejemplo de como debe quedar el archivo cuando estamos configurando un servidor DHCP con interacción con un DNS dinamito el cual lo podemos tener configurado en el mismo equipo o en un servidor remoto.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#Estas lineas deben estar activas para indicar a nuestro servidor DHCP que estamos trabajando con un servidor DNS Dinámico.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;ddns-update-style interim;&lt;br /&gt;ignore client-updates;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#En estas lineas configuramos la zona primaria que maneja nuestro servidor DNS que para este ejemplo es &lt;/span&gt;&lt;span style="font-weight: bold;"&gt;casa.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;zone casa. {&lt;br /&gt;       primary 192.168.2.2; #Dirección IP de nuestro servidor DNS&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#Aquí indicamos la zona reversa la cual utiliza nuestro servidor DNS para resolver a través de la dirección IP.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;zone 2.168.192.in-addr.arpa. {&lt;br /&gt;       primary 192.168.2.2; #Dirección IP de nuestro servidor DNS&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#Esto indica que la actualización de la Base de Datos de Host del servidor DNS esta activa.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;ddns-updates on;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#Aquí declaramos la red con la que estamos trabajando.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;subnet 192.168.2.0 netmask 255.255.255.0 {&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#Con esto indicamos que nuestro servidor DHCP es autoritativo.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;authoritative;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#Se indica la dirección de nuestra puerta de enlace.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;option routers 192.168.2.1;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#Dirección de nuestra mascara de subred.&lt;/span&gt;&lt;br /&gt;                                &lt;br /&gt;option subnet-mask 255.255.255.0;   &lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#El rango de direcciones IP que va a otorgar nuestro servidor DHCP.&lt;/span&gt;&lt;br /&gt;                    &lt;br /&gt;range 192.168.2.3 192.168.2.20;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#Dirección IP de nuestro servidor DNS.&lt;/span&gt;&lt;br /&gt;                            &lt;br /&gt;option domain-name-servers 192.168.2.2;            &lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#Nombre del domino con el que estamos trabajando.&lt;/span&gt;&lt;br /&gt;   &lt;br /&gt;option domain-name "casa";&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#La zona horaria con la que estamos trabajando que para nuestro caso es Eastern Standar Time.&lt;/span&gt;&lt;br /&gt;                                &lt;br /&gt;option time-offset -14400;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#Tiempo de renovación de las direcciones IP.&lt;/span&gt;&lt;br /&gt;                                 &lt;br /&gt;default-lease-time 600;                                     &lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#Tiempo máximo de arrendamiento de las direcciones IP.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;max-lease-time 7200;&lt;br /&gt;                                        &lt;br /&gt;&lt;span style="font-weight: bold;"&gt;#Interfaz con la que trabajara el servidor DHCP.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;interfaces="eth0";                                         &lt;br /&gt;}&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;br /&gt;Con esta configuración sencilla tenemos un servidor DHCP totalmente funcional.&lt;br /&gt;&lt;br /&gt;Recuerda que las direcciones IP que otorga nuestro servidor DHCP se almacenan en el archivo &lt;span style="font-weight: bold;"&gt;/var/lib/dhcp3/dhcpd.leases&lt;/span&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/8952967452932106993-4984425776508522475?l=blogrockcounter.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blogrockcounter.blogspot.com/feeds/4984425776508522475/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8952967452932106993&amp;postID=4984425776508522475' title='0 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8952967452932106993/posts/default/4984425776508522475'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8952967452932106993/posts/default/4984425776508522475'/><link rel='alternate' type='text/html' href='http://blogrockcounter.blogspot.com/2010/08/configuracion-sencilla-de-servidor-dhcp.html' title='Configuración sencilla de Servidor DHCP en Debian'/><author><name>RockCounter</name><uri>http://www.blogger.com/profile/03192168202884370546</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8952967452932106993.post-7805950005514733549</id><published>2009-11-19T22:24:00.003-04:30</published><updated>2009-11-19T22:31:19.985-04:30</updated><title type='text'>Solucionar Problema de Sonido en Ubuntu 9.10</title><content type='html'>&lt;div style="text-align: justify;"&gt;Esta mañana actualice mi Ubuntu de 9.04 a 9.10 lo primero que note es que al iniciar no tenia sonido, después de buscar y buscar en internet diferentes soluciones encontré la que mas se ajusta a la situación que es reinstalar todos los servicios del ALSA.&lt;br /&gt;&lt;br /&gt;Para hacerlo solo debes ejecutar el comando&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;sudo alsa force-reload&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;También asegurate que en la parte de sonido este desactivada la opción silenciar parecerá una tontería pero suele pasar.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-family:monospace;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8952967452932106993-7805950005514733549?l=blogrockcounter.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blogrockcounter.blogspot.com/feeds/7805950005514733549/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8952967452932106993&amp;postID=7805950005514733549' title='1 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8952967452932106993/posts/default/7805950005514733549'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8952967452932106993/posts/default/7805950005514733549'/><link rel='alternate' type='text/html' href='http://blogrockcounter.blogspot.com/2009/11/solucionar-problema-de-sonido-en-ubuntu.html' title='Solucionar Problema de Sonido en Ubuntu 9.10'/><author><name>RockCounter</name><uri>http://www.blogger.com/profile/03192168202884370546</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8952967452932106993.post-2812754484059752082</id><published>2009-08-08T22:00:00.004-04:30</published><updated>2009-08-08T22:56:33.560-04:30</updated><title type='text'>Actualizar Ubuntu Intrepid a Jaunty</title><content type='html'>   	&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 } 	--&gt; 	&lt;/style&gt;  &lt;p style="margin-bottom: 0cm; text-align: justify;"&gt; Para los que desean actualizar su Ubuntu de la versión 8.10 a la versión 9.04 sin necesidad de reinstalar el sistema operativo solo debemos ingresar en &lt;span style="font-weight: bold;"&gt;Sistema&lt;/span&gt; ==&gt; &lt;span style="font-weight: bold;"&gt;Administración&lt;/span&gt; ==&gt; &lt;span style="font-weight: bold;"&gt;Orígenes de Software&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;Luego aquí debemos seleccionar la pestaña Actualización y seleccionar &lt;span style="font-weight: bold;"&gt;Ediciones Normales&lt;/span&gt; en la opción &lt;span style="font-weight: bold;"&gt;Mostrar nuevas versiones de la distribución&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;Luego en el Gestor de actualizaciones deberá aparecerte un recuadro notificando de una nueva versión para tu distribución.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_CPQ90p5khyA/Sn427Pfa_FI/AAAAAAAAADo/4z4mEj6lHKE/s1600-h/Pantallazo.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 250px;" src="http://3.bp.blogspot.com/_CPQ90p5khyA/Sn427Pfa_FI/AAAAAAAAADo/4z4mEj6lHKE/s400/Pantallazo.png" alt="" id="BLOGGER_PHOTO_ID_5367788197270715474" border="0" /&gt;&lt;/a&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 } 	--&gt; 	&lt;/style&gt;  &lt;p style="margin-bottom: 0cm;"&gt;Haz clic en la opción actualizar para iniciar el proceso de actualización, dependiendo de tu velocidad de conexión puede tardar de entre 1 a 2 horas.&lt;/p&gt; &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8952967452932106993-2812754484059752082?l=blogrockcounter.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blogrockcounter.blogspot.com/feeds/2812754484059752082/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8952967452932106993&amp;postID=2812754484059752082' title='0 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8952967452932106993/posts/default/2812754484059752082'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8952967452932106993/posts/default/2812754484059752082'/><link rel='alternate' type='text/html' href='http://blogrockcounter.blogspot.com/2009/08/actualizar-ubuntu-intrepid-jaunty.html' title='Actualizar Ubuntu Intrepid a Jaunty'/><author><name>RockCounter</name><uri>http://www.blogger.com/profile/03192168202884370546</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_CPQ90p5khyA/Sn427Pfa_FI/AAAAAAAAADo/4z4mEj6lHKE/s72-c/Pantallazo.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8952967452932106993.post-1913072265094946965</id><published>2009-08-06T19:38:00.005-04:30</published><updated>2009-08-08T22:57:33.827-04:30</updated><title type='text'>Video Tutoriales con recordMyDesktop</title><content type='html'>&lt;div style="text-align: justify;"&gt;Es la aplicación libre para crear vídeos tutoriales realizando una grabación de tu escritorio para instalarlo solo debemos abrir tu gestor de paquetes synaptic y seleccionar los paquetes gtk-recordmydesktop y recordmydesktop. Luego en el menú Aplicaciones ==&gt; Sonido y Video ==&gt; gtk-recordMyDesktop.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_CPQ90p5khyA/Sntyc_rERnI/AAAAAAAAADg/hLHPYjwPICE/s1600-h/Pantallazo.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 250px;" src="http://1.bp.blogspot.com/_CPQ90p5khyA/Sntyc_rERnI/AAAAAAAAADg/hLHPYjwPICE/s400/Pantallazo.png" alt="" id="BLOGGER_PHOTO_ID_5367009223396050546" border="0" /&gt;&lt;/a&gt;&lt;span style="font-weight: bold;font-size:78%;" &gt;CLIC SOBRE LA IMAGEN PARA AMPLIAR&lt;/span&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/8952967452932106993-1913072265094946965?l=blogrockcounter.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blogrockcounter.blogspot.com/feeds/1913072265094946965/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8952967452932106993&amp;postID=1913072265094946965' title='0 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8952967452932106993/posts/default/1913072265094946965'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8952967452932106993/posts/default/1913072265094946965'/><link rel='alternate' type='text/html' href='http://blogrockcounter.blogspot.com/2009/08/recordmydesktop.html' title='Video Tutoriales con recordMyDesktop'/><author><name>RockCounter</name><uri>http://www.blogger.com/profile/03192168202884370546</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_CPQ90p5khyA/Sntyc_rERnI/AAAAAAAAADg/hLHPYjwPICE/s72-c/Pantallazo.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8952967452932106993.post-945229825566788054</id><published>2009-08-04T21:50:00.011-04:30</published><updated>2009-08-08T22:58:13.707-04:30</updated><title type='text'>Personalizando el Escritorio con gDesklets</title><content type='html'>&lt;div style="text-align: justify;"&gt;Para los que creían que la característica sidebar del Windows Vista era algo único de Microsoft inventado por Bill Gates les traigo esta interesante aplicación, &lt;span style="font-weight: bold;"&gt;gDesklets&lt;/span&gt; la cual te permite personalizar tu escritorio con interesantes gadgets con la gran diferencia que no requiere la cantidad excesiva de memoria que necesita el Vista para esto.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_CPQ90p5khyA/SnjvAOX7emI/AAAAAAAAADM/lixmquZbago/s1600-h/Pantallazo.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 250px;" src="http://2.bp.blogspot.com/_CPQ90p5khyA/SnjvAOX7emI/AAAAAAAAADM/lixmquZbago/s400/Pantallazo.png" alt="" id="BLOGGER_PHOTO_ID_5366301743149447778" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:78%;"&gt;&lt;span style="font-weight: bold;"&gt;CLIC SOBRE LA IMAGEN PARA AMPLIAR&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;Para instalarlo puedes utilizar el &lt;span style="font-weight: bold;"&gt;Synaptic&lt;/span&gt; o a través de consola con &lt;span style="font-weight: bold;"&gt;apt-get install gdesklets&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;Una vez instalado puedes ejecutarlo por Aplicaciones ==&gt; Accesorios ==&gt; gDesklets.&lt;br /&gt;&lt;br /&gt;Dentro de la aplicación selecciona los gadgets que deseas y arrastrarlos a la posición del escritorio donde deseas ubicarlo.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_CPQ90p5khyA/SnjwKAjuDqI/AAAAAAAAADU/XR9Mw0Ko1-Y/s1600-h/Pantallazo.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 250px;" src="http://1.bp.blogspot.com/_CPQ90p5khyA/SnjwKAjuDqI/AAAAAAAAADU/XR9Mw0Ko1-Y/s400/Pantallazo.png" alt="" id="BLOGGER_PHOTO_ID_5366303010751123106" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:78%;"&gt;&lt;span style="font-weight: bold;"&gt;CLIC SOBRE LA IMAGEN PARA AMPLIAR&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;Luego solo debes ingresar en Sistema ==&gt; Preferencias ==&gt; Sesiones y añadirlo en la pestaña de &lt;span style="font-weight: bold;"&gt;programas al inicio&lt;/span&gt; para que se ejecute automáticamente cuando inicies sesión.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8952967452932106993-945229825566788054?l=blogrockcounter.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blogrockcounter.blogspot.com/feeds/945229825566788054/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8952967452932106993&amp;postID=945229825566788054' title='1 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8952967452932106993/posts/default/945229825566788054'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8952967452932106993/posts/default/945229825566788054'/><link rel='alternate' type='text/html' href='http://blogrockcounter.blogspot.com/2009/08/personalizando-el-escritorio-con.html' title='Personalizando el Escritorio con gDesklets'/><author><name>RockCounter</name><uri>http://www.blogger.com/profile/03192168202884370546</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_CPQ90p5khyA/SnjvAOX7emI/AAAAAAAAADM/lixmquZbago/s72-c/Pantallazo.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8952967452932106993.post-8022748281031032903</id><published>2009-08-02T14:06:00.008-04:30</published><updated>2009-08-04T19:29:52.456-04:30</updated><title type='text'>AALIB</title><content type='html'>Curiosiando un poco encontre esta interesante libreria AA la cual te permite reproducir videos con puros caracteres ASCII para verla en acción puedes instalar el DEMO con el comando &lt;span style="font-weight: bold;"&gt;apt-get install bb&lt;/span&gt; y luego en una consola como un usuario comun y silvestre puedes ejecutarlo tipeando bb.&lt;br /&gt;&lt;br /&gt;Tambien puedes usar esta libreria para reproducir videos en puro caracter ASCII con el mplayer para ello al momento de compilarlo usa el configure de la siguiente manera &lt;span style="font-weight: bold;"&gt;./configure --enable-aa &lt;/span&gt;(necesitais aalib1-dev) y despues mplayer -vo aa para ver los divx.&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/C0Jts9eajH0&amp;hl=es&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/C0Jts9eajH0&amp;hl=es&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8952967452932106993-8022748281031032903?l=blogrockcounter.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blogrockcounter.blogspot.com/feeds/8022748281031032903/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8952967452932106993&amp;postID=8022748281031032903' title='0 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8952967452932106993/posts/default/8022748281031032903'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8952967452932106993/posts/default/8022748281031032903'/><link rel='alternate' type='text/html' href='http://blogrockcounter.blogspot.com/2009/08/aalib.html' title='AALIB'/><author><name>RockCounter</name><uri>http://www.blogger.com/profile/03192168202884370546</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8952967452932106993.post-7660096085796594358</id><published>2009-07-31T22:54:00.012-04:30</published><updated>2009-08-02T12:11:21.429-04:30</updated><title type='text'>Compilar Kernel en Debian o Ubuntu</title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-family:arial;"&gt;Hace poco me vi en la Necesidad de &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;compi&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:100%;"&gt;lar una versión mas actualizada del kernel para mi &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_1"&gt;debian&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_2"&gt;lenny&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_3"&gt;navegando&lt;/span&gt; un poco por &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_4"&gt;Internet&lt;/span&gt; &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_5"&gt;encontré&lt;/span&gt; un &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_6"&gt;procedimiento&lt;/span&gt; que a mi parecer es el mas sencillo y explico a continuación&lt;span style="font-family:arial;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;Lo primero que debemos hacer es descargar la versión del kernel que vayamos a utilizar a mi en particular me gusta descargarlos de esta pagina &lt;a href="http://www.kernel.org/"&gt;www.kernel.org&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;En mi caso descargue la versión 2.6.27.1 comprimida en formato .&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_7"&gt;tar&lt;/span&gt;.&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_8"&gt;bz&lt;/span&gt;2&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;Copia la imagen en el directorio /&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_9"&gt;usr&lt;/span&gt;/&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_10"&gt;src&lt;/span&gt; y &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_11"&gt;descomprimela&lt;/span&gt; puedes usar el comando &lt;span style="font-weight: bold;" class="blsp-spelling-error" id="SPELLING_ERROR_12"&gt;tar&lt;/span&gt;&lt;span style="font-weight: bold;"&gt; -&lt;/span&gt;&lt;span style="font-weight: bold;" class="blsp-spelling-error" id="SPELLING_ERROR_13"&gt;jxvf&lt;/span&gt;&lt;span style="font-weight: bold;"&gt; linux-2.6.27.1.tar.bz2&lt;/span&gt; en caso de que &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_14"&gt;allas&lt;/span&gt; descargado la imagen comprimida en formato .&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_15"&gt;tar&lt;/span&gt;.&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_16"&gt;gz&lt;/span&gt; puedes usar el comando &lt;span style="font-weight: bold;" class="blsp-spelling-error" id="SPELLING_ERROR_17"&gt;tar&lt;/span&gt;&lt;span style="font-weight: bold;"&gt; -&lt;/span&gt;&lt;span style="font-weight: bold;" class="blsp-spelling-error" id="SPELLING_ERROR_18"&gt;zxvf&lt;/span&gt;&lt;span style="font-weight: bold;"&gt; linux-2.6.27.1.tar.gz&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;a name="toc5"&gt;&lt;/a&gt;&lt;/span&gt;    &lt;span style="font-size:100%;"&gt;Ahora vamos a proceder a configurar nuestro kernel voy a explicar las 3 maneras mas &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_19"&gt;fáciles&lt;/span&gt; que &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_20"&gt;encontré&lt;/span&gt; para hacerlo.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;Lo primero que debes hacer es instalar la &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_21"&gt;suit&lt;/span&gt; para compilación de paquetes lo puedes hacer con &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_22"&gt;apt&lt;/span&gt;-&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_23"&gt;get&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_24"&gt;install&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_25"&gt;build&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_26"&gt;essential&lt;/span&gt;.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;Luego debes dirigirte al directorio donde &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_27"&gt;descomprimistes&lt;/span&gt; el kernel y empezar la &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_28"&gt;configuración&lt;/span&gt; del kernel con cualquiera de los 3 &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_29"&gt;métodos&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-size:100%;" &gt;&lt;span style="font-family:arial;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;b&gt;1era alternativa:&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;&lt;code  style="font-weight: bold; color: rgb(0, 0, 0);font-family:arial;"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_30"&gt;make&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_31"&gt;config&lt;/span&gt;&lt;/code&gt; &lt;-- Hay que tener algo de experiencia, si no la tienes no te recomiendo seguir este camino ya que hace muchas preguntas de hardware. &lt;/span&gt; &lt;/div&gt;&lt;p style="text-align: justify;"&gt; &lt;span style="font-size:100%;"&gt;&lt;b&gt;2da alternativa:&lt;/b&gt; &lt;code  style="font-weight: bold; color: rgb(0, 0, 0);font-family:arial;"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_32"&gt;make&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_33"&gt;menuconfig&lt;/span&gt;&lt;/code&gt; &lt;-- Es muy cómodo hacer la &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_34"&gt;configuración&lt;/span&gt; por este método porque posees un menú muy sencillo he interactivo. &lt;u&gt;NOTA&lt;/u&gt;: Necesitas tener instalado las las librerías &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_35"&gt;ncurses&lt;/span&gt;, en &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_36"&gt;debian&lt;/span&gt;: &lt;code  style="font-weight: bold; color: rgb(0, 0, 0);font-family:arial;"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_37"&gt;apt-get&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_38"&gt;install&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_39"&gt;libncurses&lt;/span&gt;5-&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_40"&gt;dev&lt;/span&gt;&lt;/code&gt;&lt;/span&gt; &lt;/p&gt;&lt;div style="text-align: justify;"&gt; &lt;/div&gt;&lt;p style="text-align: justify;"&gt; &lt;span style="font-size:100%;"&gt;&lt;b&gt;3&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_41"&gt;ra&lt;/span&gt; alternativa:&lt;/b&gt; &lt;code  style="font-weight: bold; color: rgb(0, 0, 0);font-family:arial;"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_42"&gt;make&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_43"&gt;xconfig&lt;/span&gt;&lt;/code&gt; &lt;-- Debes tener instalado y en &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_44"&gt;funcionamiento&lt;/span&gt; el servidor X, ya que toda la &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_45"&gt;configuración&lt;/span&gt; se hace &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_46"&gt;gráficamente&lt;/span&gt; (haciendo uso del sistema de ventanas). &lt;u&gt;NOTA:&lt;/u&gt; Necesitas tener instaladas las librerías &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_47"&gt;QT&lt;/span&gt;, en &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_48"&gt;debian&lt;/span&gt; &lt;code  style="font-weight: bold; color: rgb(0, 0, 0);font-family:arial;"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_49"&gt;apt-get&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_50"&gt;install&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_51"&gt;libqt&lt;/span&gt;3-&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_52"&gt;dev&lt;/span&gt;&lt;/code&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-family:arial;"&gt;&lt;span style="font-weight: bold;"&gt;NOTA:&lt;/span&gt; Si ya has compilado anteriormente el kernel antes de realizar cualquiera de estos 3 &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_53"&gt;métodos&lt;/span&gt; debes limpiar las fuentes con el comando &lt;span style="font-weight: bold;"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_54"&gt;make&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_55"&gt;mrproper&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:100%;"&gt;De los 3 &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_56"&gt;métodos&lt;/span&gt; anteriores me fui por el segundo ya que me parece el mas sencillo y no necesitas tener activa la interfaz &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_57"&gt;gráfica&lt;/span&gt; para utilizarlo.&lt;/span&gt;&lt;span style="font-weight: bold;font-size:100%;" &gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:100%;"&gt;Recuerda al momento de configurar el kernel debes tener cuidado con los &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_58"&gt;módulos&lt;/span&gt; que selecciones &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_59"&gt;asegurate&lt;/span&gt; de seleccionar solo lo necesario de otra manera tu kernel seria muy pesado y &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_60"&gt;causaría&lt;/span&gt; que tu sistema ande con lentitud.&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:100%;"&gt;Bien ya tenemos nuestro kernel configurado ahora solo debemos compilarlo &lt;/span&gt;como estamos haciendolo a la Debian Way lo primero que debemos hacer es instalar el paquete necesario para realizar la &lt;span style="font-size:100%;"&gt;compilación &lt;span style="font-weight: bold;"&gt;apt-get install kernel-package &lt;/span&gt;y debemos ejecutar los siguientes comandos.&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify; font-weight: bold;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span&gt;make-kpkg clean&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify; font-family: arial; font-weight: bold;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_64"&gt;make&lt;/span&gt;&lt;span&gt;-&lt;/span&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_65"&gt;kpkg&lt;/span&gt;&lt;span&gt; --&lt;/span&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_66"&gt;initrd&lt;/span&gt;&lt;span&gt; kernel_&lt;/span&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_67"&gt;image&lt;/span&gt;&lt;span&gt; kernel-&lt;/span&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_68"&gt;headers&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;&lt;span style=";font-family:arial;font-size:100%;"  &gt;&lt;code&gt;&lt;/code&gt;&lt;/span&gt;&lt;/div&gt;&lt;p style="font-family: arial; text-align: justify;"&gt; &lt;/p&gt;&lt;div style="text-align: justify;"&gt;   &lt;/div&gt;&lt;p style="text-align: justify;"&gt; &lt;span style="font-size:100%;"&gt;&lt;code&gt;&lt;/code&gt;Estos 2 comandos te crearan 2 archivos .&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_69"&gt;deb&lt;/span&gt; uno con el kernel y el otro con las cabeceras, las cabeceras son opcionales pero son necesarias para instalar &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_70"&gt;aplicaciones&lt;/span&gt; importantes como los drivers &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_71"&gt;propietario&lt;/span&gt; de &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_72"&gt;NVIDIA&lt;/span&gt;.&lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-family:arial;"&gt;Luego de esto solo nos queda compilar lo puedes hacer con los comandos:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold;font-family:arial;" &gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_73"&gt;dpkg&lt;/span&gt; -i KERNEL.&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_74"&gt;deb&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold;font-family:arial;" &gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_75"&gt;dpkg&lt;/span&gt; -i KERNEL-&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_76"&gt;HEADERS&lt;/span&gt;.&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_77"&gt;deb&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=";font-family:arial;font-size:100%;"  &gt;Para finalizar solo debes realizar tu equipo y iniciar con tu nuevo kernel.&lt;/span&gt;&lt;a name="toc7"&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8952967452932106993-7660096085796594358?l=blogrockcounter.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blogrockcounter.blogspot.com/feeds/7660096085796594358/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8952967452932106993&amp;postID=7660096085796594358' title='0 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8952967452932106993/posts/default/7660096085796594358'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8952967452932106993/posts/default/7660096085796594358'/><link rel='alternate' type='text/html' href='http://blogrockcounter.blogspot.com/2009/07/compilar-kernel-en-debian-o-ubuntu.html' title='Compilar Kernel en Debian o Ubuntu'/><author><name>RockCounter</name><uri>http://www.blogger.com/profile/03192168202884370546</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8952967452932106993.post-8005599674607320507</id><published>2009-07-29T21:15:00.002-04:30</published><updated>2009-07-31T23:37:14.285-04:30</updated><title type='text'>Sun MicroSystems VirtualBox</title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_CPQ90p5khyA/SnD-SP9kJrI/AAAAAAAAAC4/ESZhC9pMlD4/s1600-h/virtualbox-logo-290x300.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 219px; height: 226px;" src="http://3.bp.blogspot.com/_CPQ90p5khyA/SnD-SP9kJrI/AAAAAAAAAC4/ESZhC9pMlD4/s400/virtualbox-logo-290x300.jpg" alt="" id="BLOGGER_PHOTO_ID_5364066745674114738" border="0" /&gt;&lt;/a&gt;La caja virtual de &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;Sun&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_1"&gt;Microsystems&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_2"&gt;VirtualBox&lt;/span&gt; es la solución para aquellas personas que desean tener varios sistemas operativos en su &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_3"&gt;Pc&lt;/span&gt; sin necesidad de tener que crear varias particiones en el equipo que alojen a los mismos.&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;Entre las novedades que tiene &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_4"&gt;VirtualBox&lt;/span&gt; es un total Soporte para tu Maquina Virtual de &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_5"&gt;Video&lt;/span&gt;, Sonido, &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_6"&gt;USB&lt;/span&gt;, Red, &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_7"&gt;Cdrom&lt;/span&gt;, &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_8"&gt;Disket&lt;/span&gt; &lt;span style="font-weight: bold;"&gt;(Si Aun lo Usas)&lt;/span&gt; y hasta puertos &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_9"&gt;seriales&lt;/span&gt;. &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_10"&gt;Ademas&lt;/span&gt; de todo esto tiene la posibilidad de crear directorios compartidos entre el sistema &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_11"&gt;anfitrion&lt;/span&gt; y el sistema &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_12"&gt;Virtualizado&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;Ahora es mas &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_13"&gt;fácil&lt;/span&gt; crear tus maquinas virtuales gracias al asistente que trae &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_14"&gt;VirtualBox&lt;/span&gt; el cual te permite instalar varias &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_15"&gt;Distros&lt;/span&gt; de Linux, Solaris, &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_16"&gt;BSD&lt;/span&gt;, &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_17"&gt;IBM&lt;/span&gt; OS y de &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_18"&gt;Windows&lt;/span&gt; entre ellos el nuevo &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_19"&gt;Windows&lt;/span&gt;7.&lt;br /&gt;&lt;br /&gt;Puedes Descargarlo de la pagina &lt;a href="http://www.virtualbox.org/"&gt;&lt;cite&gt;www.&lt;b&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_20"&gt;virtualbox&lt;/span&gt;&lt;/b&gt;.&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_21"&gt;org&lt;/span&gt;/&lt;/cite&gt;&lt;/a&gt;&lt;cite&gt;&lt;/cite&gt; .&lt;br /&gt;&lt;br /&gt;Para instalar esta aplicación bajo Linux debes tener &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_22"&gt;pre&lt;/span&gt;-instalado las cabeceras de tu kernel luego de esto solo debes ejecutar el archivo .&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_23"&gt;deb&lt;/span&gt; que &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_24"&gt;descargastes&lt;/span&gt; de la pagina &lt;span style="font-weight: bold;"&gt;(Esto en caso de que tu distribución de Linux sea Debian o &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_25"&gt;Ubuntu&lt;/span&gt;)&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;Recuerda que luego que tengas &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_26"&gt;virtualizado&lt;/span&gt; tu Sistema Operativo debes instalar en el, la imagen de &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_27"&gt;VirtualBoxAddition&lt;/span&gt; que viene con el paquete de instalación esto le dará soporte a tu maquina virtual para que utilice la resolución y aceleración 3D del sistema &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_28"&gt;anfitrión&lt;/span&gt; &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_29"&gt;además&lt;/span&gt; de permitirte la &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_30"&gt;compartición&lt;/span&gt; de carpetas.&lt;br /&gt;&lt;br /&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/8952967452932106993-8005599674607320507?l=blogrockcounter.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blogrockcounter.blogspot.com/feeds/8005599674607320507/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8952967452932106993&amp;postID=8005599674607320507' title='1 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8952967452932106993/posts/default/8005599674607320507'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8952967452932106993/posts/default/8005599674607320507'/><link rel='alternate' type='text/html' href='http://blogrockcounter.blogspot.com/2009/07/java-virtualbox.html' title='Sun MicroSystems VirtualBox'/><author><name>RockCounter</name><uri>http://www.blogger.com/profile/03192168202884370546</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_CPQ90p5khyA/SnD-SP9kJrI/AAAAAAAAAC4/ESZhC9pMlD4/s72-c/virtualbox-logo-290x300.jpg' height='72' width='72'/><thr:total>1</thr:total></entry></feed>
