<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>intrepid-ibex &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/intrepid-ibex/</link>
	<description>Feed of posts on WordPress.com tagged "intrepid-ibex"</description>
	<pubDate>Sat, 28 Nov 2009 02:29:02 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Sources-Apticons V0.5.5]]></title>
<link>http://elsoftwarelibre.wordpress.com/2009/11/14/sources-apticons-v0-5-5/</link>
<pubDate>Sat, 14 Nov 2009 18:01:49 +0000</pubDate>
<dc:creator>Soft-Libre</dc:creator>
<guid>http://elsoftwarelibre.wordpress.com/2009/11/14/sources-apticons-v0-5-5/</guid>
<description><![CDATA[Sources-Apticons, se trata de una pequeña aplicación que nos permite un manejo prolijo y seguro de n]]></description>
<content:encoded><![CDATA[Sources-Apticons, se trata de una pequeña aplicación que nos permite un manejo prolijo y seguro de n]]></content:encoded>
</item>
<item>
<title><![CDATA[Ejecutar Aplicaciones gráficas con ssh]]></title>
<link>http://jfibergran.wordpress.com/2009/11/09/ejecutar-aplicaciones-graficas-con-ssh/</link>
<pubDate>Mon, 09 Nov 2009 11:41:14 +0000</pubDate>
<dc:creator>FiBER</dc:creator>
<guid>http://jfibergran.wordpress.com/2009/11/09/ejecutar-aplicaciones-graficas-con-ssh/</guid>
<description><![CDATA[Para poder seguir esta guía, es necesario que tengas instalado y configurado tu servidor Ssh. Para e]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Para poder seguir esta guía, es <strong>necesario que tengas instalado y configurado tu servidor<a href="http://jfibergran.wordpress.com/2009/11/07/ssh-tu-linux-en-todas-partes/"> Ssh</a></strong>.</p>
<p>Para ejecutar aplicaciones gráficas a través de conexiones ssh,  hay que habilitar <em>X11 Forwarding</em>. Esta opción hay que habilitarla <span style="text-decoration:underline;">tanto en el Servidor como en el Cliente</span>.</p>
<p>Además en el <strong>Servidor</strong> tenemos que instalar <em>xorg-xauth</em>:</p>
<blockquote><p>pacman -S xorg-xauth</p></blockquote>
<p>Una vez instalado modificamos el archivo <em>sshd_config</em></p>
<blockquote><p>nano /etc/ssh/sshd_config</p></blockquote>
<p>añadiendo las siguientes líneas:</p>
<blockquote><p>AllowTcpForwarding yes<br />
X11Forwarding yes<br />
X11DisplayOffset 10<br />
X11UseLocalhost yes</p></blockquote>
<p>En el <strong>Cliente</strong> también tenemos que editar el archivo de configuración:</p>
<blockquote><p>nano /etc/ssh/ssh_config</p></blockquote>
<p>Y por último, para poder ejecutar aplicaciones x11 remotamente, debemos iniciar la sesión ssh con la siguiente orden:</p>
<blockquote><p>ssh -X -p port user@server-address</p></blockquote>
<p>Si recibes errores durante la ejecución de aplicaciones, prueba con esta otra orden:</p>
<blockquote><p>ssh -Y -p port user@server-address</p></blockquote>
<p>Ahora puedes ejecutar cualquier aplicación gráfica de forma remota gracias a SSH.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Manual de GRUB]]></title>
<link>http://jfibergran.wordpress.com/2009/11/09/manual-de-grub/</link>
<pubDate>Sun, 08 Nov 2009 23:22:21 +0000</pubDate>
<dc:creator>FiBER</dc:creator>
<guid>http://jfibergran.wordpress.com/2009/11/09/manual-de-grub/</guid>
<description><![CDATA[Introducción En todos los discos duros, se reserva un espacio para el MBR (Master Boot Record) o Sec]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h1>Introducción</h1>
<p>En todos los discos duros, se reserva un espacio para el <em>MBR (Master Boot Record) o Sector de Arranque</em>. Esta es la estructura básica, sobre el espacio restante se hacen las particiones, y en ellas se puede o no instalar un SO (Sistema Operativo).</p>
<p><img class="aligncenter size-full wp-image-487" title="grub" src="http://jfibergran.wordpress.com/files/2009/11/grub.png" alt="grub" width="472" height="552" /></p>
<p>Cada SO tiene su gestor de arranque, así que cuando instalamos un SO, en el proceso de instalación se modifica el MBR del disco para que pueda arrancar el SO que hay instalado en la partición x.</p>
<p>En el caso de Windows, ese sector de arranque, solo permite arrancar Windows, sin embargo Linux, utiliza gestores de arranque que permiten arrancar otros SO&#8217;s instalados en el disco, gestores de arranque como <em>LiLo o Grub</em>.</p>
<h1>Funcionamiento de Grub</h1>
<p>Como grub es un cargador de arranque, veremos que pasa desde que encendemos el ordenador:</p>
<ol>
<li>Primero la <em>BIOS</em>, enlaza a un dispositivo de arranque, como el HDD o CD-ROM, en el caso de HDD, se le pasa el control al MBR del Disco.</li>
<li>En el MBR se encuentra la Fase 1 del GRUB, ya que el MBR solo tiene 512 bytes de espacio. La fase 1 carga la siguiente fase del GRUB, que puede encontrarse en cualquier parte del disco duro.</li>
<li>De la fase 1 se puede pasar a la 1.5 o a la fase 2, de todos modos la 1.5 pasa a la 2, así que obviaremos detalles en esto.</li>
<li>La fase 2, que es la que contiene el menú, lo muestra, y una vez el usuario elige la opción, Grub carga el kernel elegido</li>
</ol>
<p>De modo que Grub se instala en dos partes, primero en el MBR como ya hemos dicho, y después en el disco, bien en una partición <em>/boot</em> o bien en la partición <em>/</em> de la distribución linux principal.</p>
<p>En cualquier caso Grub, una vez instalado se encuentra en <em>/boot</em> , y ahí tiene su archivo de configuración, donde podemos configurar las opciones de arranque.</p>
<p><strong>Como arranca Linux</strong></p>
<p>Para arrancar un SO Linux los pasos son los siguientes:</p>
<ol>
<li>Decirle a Grub la partición en la que se encuentra instalado el SO Linux</li>
<li>Iniciar el kernel</li>
</ol>
<p>Un ejemplo de como cargar un SO Linux, sería el siguiente:</p>
<blockquote><p>root (hd0,1)<br />
kernel	/vmlinuz root=/dev/hda2 ro</p></blockquote>
<h2>Como arranca Windows</h2>
<p>Para arrancar un SO Windows seguimos estos pasos:</p>
<ol>
<li>Decirle a Grub la partición en la que se encuentra instalado</li>
<li>Hacer la partición Activa</li>
<li>Llamara al cargador de arranque Windows</li>
</ol>
<p>El ejemplo de como cargar un SO Windows, es este:</p>
<blockquote><p>root (hd0,0)<br />
makeactive<br />
chainloader +1</p></blockquote>
<h2>menu.lst</h2>
<p>El archivo de configuración para Grub es el menu.lst, que se encuentra en /boot/grub/.</p>
<p>En este archivo debemos de poner las entradas del menú de Grub, con sus opciones de arranque correspondiente, además de algunos valores generales.</p>
<p>Los Discos Duros se enumeran desde 0, y las particiones también se enumeran desde 0. Así por ejemplo para la primera partición del primer disco escribiríamos (hd0,0)</p>
<p>Ejemplo de <em>/boot/grub/menu.lst</em>:</p>
<blockquote>
<pre># Configuration General
timeout   5
default   1
color light-blue/black light-cyan/blue

# Entradas del menú
# (0) Arch Linux
title  Arch Linux
root   (hd0,1)
kernel /boot/vmlinuz26 root=/dev/sda2 ro vga=773
initrd /boot/kernel26.img
</pre>
<pre># (1) Windows XP
title Windows XP
rootnoverify (hd0,0)
makeactive
chainloader +1</pre>
</blockquote>
<h2>grub.cfg</h2>
<p>El archivo de configuración para Grub2 es el grub.cfg, que se encuentra en /boot/grub/ .</p>
<p>En el archivo debemos de poner las entradas del menú de Grub2, con sus opciones de arranque correspondientes, además de algunos valores generales.</p>
<p>Los Discos Duros se enumeran desde 0, sin embargo lasparticiones se enumeran desde 1. Así por ejemplo para la primera partición del primer disco escribiríamos (hd0,1)</p>
<p>Ejemplo de <em>/boot/grub/gurb.cfg</em>:</p>
<blockquote>
<pre># Configuration General
set timeout=5
set default=0

# (0) Arch Linux
menuentry "Arch Linux" {
set root=(hd0,2)
linux /vmlinuz26 root=/dev/sda2 ro
initrd /kernel26.img
}

# (1) Windows
menuentry "Windows" {
set root=(hd0,1)
chainloader +1
}</pre>
</blockquote>
<h1>Solución a problemas básicos con Grub</h1>
<h2>Como restaurar Grub</h2>
<p>A veces no es posible prescindir de Windows, bien por los juegos o por trabajo, pero no todo se puede hacer en Linux. Pero en Windows es necesario un formateo cada cierto tiempo. Al formatear Windows, el MBR se reescribe para este, perdiendo Grub en 99% de los casos.</p>
<p>La solución es reinstalar grub, para lo que tendremos que arrancar desde alguna distribución live:</p>
<ul>
<li><a href="http://partedmagic.com/download.html">PartedMagic</a>: Es una distribución Live, ideada para trabajar con particiones.</li>
<li><a href="http://gparted.sourceforge.net/download.php">GParted Live</a>: Es otra distribución Live, ideada para trabajar con particiones.</li>
<li><a href="http://www.archlinux.org/download/">Arch Linux</a>: Es el CD de Instalación de Arch Linux, pero arranca una consola desde la que podemos trabajar igual.</li>
<li><a href="http://www.debian.org/CD/">Debian</a>: Igual que Arch, es el CD de Instalación de Debian, arranca una consola desde la que podemos reinstalar grub.</li>
</ul>
<p>Además prácticamente podemos reinstalar grub desde cualquier CD Linux. Veamos como reinstalar el Grub.</p>
<p>Ejecutamos el interprete de comandos de grub:</p>
<blockquote><p>grub</p></blockquote>
<p>Indicamos la localización de la partición donde se encuentra Grub:</p>
<blockquote><p>root (hdX,Y)</p></blockquote>
<p>Instalamos grub en el MBR del Disco.</p>
<blockquote><p>setup (hdX)</p></blockquote>
<p>Salimos y reiniciamos, ya está grub reinstalado.</p>
<blockquote><p>quit</p></blockquote>
<h2>Grub no muestra el menú sino su consola</h2>
<p>Este error puede darse tanto en Grub como en Grub 2. Suele darse cuando las ordenes escritas en el <em>menu.lst</em> o en el <em>grub.cfg</em> no son correctas. En particular cuando no hemos escrito correctamente el número de disco o partición.</p>
<p>En lugar del menú, aparece el mensaje de debajo.</p>
<blockquote><p>GNU GRUB version 0.97 (640K lower / 3072K upper memory)</p>
<p>[Minimal BASH-like line editing is supported. For the first<br />
word, TAB list possible command completions. Anywhere else TAB lists<br />
the possible completitions of a device/filename. ]</p>
<p>grub&#62;</p></blockquote>
<p>La respuesta es clara, primero pulsamos <em>TAB</em>, así vemos los posibles comandos a ejecutar. Entre ellos se encuentra cat, con lo que es fácil ver el archivo <em>menu.lst</em> o <em>grub.cfg</em>.</p>
<blockquote><p>cat /boot/grub/menu.lst<br />
cat /boot/grub/grub.cfg</p></blockquote>
<p>Con esto podemos ver las ordenes necesarias para el arranque,  que en el caso de Linux son <em>root </em>y<em> kernel</em> . En realidad este paso no es necesario si sabes lo que hay que poner. El <em>cat </em>es solo para orientarse/recordar comandos.</p>
<p>Una vez vistos basta con escribir los comandos y arrancar el SO Linux, y una vez hecho lo primero es modificar el archivo de configuración, para no volver a obtener este error.</p>
<h2>Errores numerados</h2>
<p>Además de estos hay otros errores numerados, aunque la solución a veces es parecida a estos dos anteriores, siempre viene bien saber el motivo del error.</p>
<p><a href="http://jfibergran.wordpress.com/2009/11/08/lista-de-errores-grub/">Aquí</a> la lista de errores.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Lista de Errores Grub]]></title>
<link>http://jfibergran.wordpress.com/2009/11/08/lista-de-errores-grub/</link>
<pubDate>Sun, 08 Nov 2009 19:57:29 +0000</pubDate>
<dc:creator>FiBER</dc:creator>
<guid>http://jfibergran.wordpress.com/2009/11/08/lista-de-errores-grub/</guid>
<description><![CDATA[El arranque de Grub se divide en dos etapas, Stage 1 y Stage 2 cada una de ellas tiene sus mensajes ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>El arranque de Grub se divide en dos etapas, <strong>Stage 1</strong> y <strong>Stage 2</strong> cada una de ellas tiene sus mensajes de error. Listaremos los errores en función de la etapa en la que aparecen:</p>
<h2>Stage 1</h2>
<p>En esta etapa tan solo se muestra el error y se detiene el sistema:</p>
<ul>
<li><strong>Hard Disk Error: </strong>No se puede averiguar la geometría ni el tamaño del disco.</li>
<li><strong>Floppy Error:</strong> El error es el mismo que el anterior, pero se refiere a un Diskette.</li>
<li><strong>Read Error:</strong> Error de lectura al intentar pasar a la segunda etapa (stage 2).</li>
<li><strong>Geom Error: </strong>La ubicación en disco del Stage 2 no es accesible mediante llamadas BIOS. Este error suele deberse a modificaciones en la configuración del disco, ya sea modificar la tabla de particiones o cmabiar el disco de máquina.</li>
</ul>
<h2>Stage 2</h2>
<ol>
<li><strong>Filename must be either an absolute filename or blocklist: </strong>El fichero solicitado por grub, no cumple la sintaxis exigida.</li>
<li><strong>Bad file or directory type: </strong>El fichero solicitado por grub, no es un archivo regular sino un enlace simbólico, directorio o pipe (tubería).</li>
<li><strong>Bad or corrupt data while decompressing file: </strong>Este error aparece cuando la descompresión devuelve un error. Suele tratarse de un fichero dañado.</li>
<li><strong>Bad or incompatible header in compressed file: </strong> La cabecera de un fichero comprimido es incorrecta.</li>
<li><strong>Partition table invalid or corrupt: </strong> Este error aparece cuando la verificación de la tabla de particiones falla. A este error hay que temerle.</li>
<li><strong>Mismatched or corrupt version of stage1/stage2: </strong>Este error se debe a versiones incompatibles o dañadas de stage1 o stage2.</li>
<li><strong>Loading below 1MB is not supported: </strong>Aparece cuando la dirección más baja de un núcleo está por debajo de la cota de 1MB. El formato zImage de Linux es un caso especial, se puede manejar ya que su dirección de carga es fija y tiene un tamaño máximo.</li>
<li><strong>Kernel must be loaded before booting: </strong>Si le indicamos a grub que ejecute una secuencia de arranque sin haberle indicado un núcleo antes, aparece este error.</li>
<li><strong>Unknown boot failure: </strong> Razones desconocidas.</li>
<li><strong>Unsupported Multiboot features requested: </strong>A veces las características Multiboot requieren una característica que no se reconoce. El kernel requiere una gestión especial que Grub no tiene.</li>
<li><strong>Unrecognized device string: </strong>Se espera un nombre de dispositivo y el texto encontrado no cumple las reglas de nombres de dispositivos.</li>
<li><strong>Invalid device requested: </strong>El nombre de dispositivo es válido pero tiene un error en otro sitio.</li>
<li><strong>Invalid or unsupported executable format: </strong> La imagen del núcleo no se reconoce como multiboot o alguno de los formatos reconocidos.</li>
<li><strong>Filesystem compatibility error, cannot read whole file: </strong>Algún Sistema de Archivos de los que tiene que leer Grub, tiene una limitación en el tamaño de lectura. Se corrige eliminando dicho límite.</li>
<li><strong>File not found: </strong> No se encuentra el archivo solicitado, pero la ruta es correcta.</li>
<li><strong>Inconsistent filesystem structure: </strong>Error en la estructura del sistema de archivos. Suele deberse a un Sistema de Archivos dañado</li>
<li><strong>Cannot mount selected partition: </strong> La partición existe, pero Grub no la reconoce.</li>
<li><strong>Selected cylinder exceeds maximum supported by BIOS: </strong> La lectura intenta ir más allá del área direccionada por la BIOS. El error aparece cuando se intentan leer bloques lineales. Suele aparecer en discos IDE de gran tamaño.</li>
<li><strong>Linux kernel must be loaded before initrd: </strong>El error se debe a que hemos puesto initrd antes que kernel.</li>
<li><strong>Multiboot kernel must be loaded before modules: </strong>El error se debe a que hemos cargado módulos antes de cargar un núcleo Multiboot.</li>
<li><strong>Selected disk does not exist: </strong>El disco refereido no está presente o no se reconoce por la BIOS.</li>
<li><strong>No such partition: </strong>No existe la partición específica.</li>
<li><strong>Error while parsing number: </strong>Grub espera leer un número y encuentra datos incorrectos.</li>
<li><strong>Attempt to access block outside partition: </strong>La dirección lineal del bloque está fuera de la partición. Se debe a daños en el sistema de Archivos o a algún bug detectado por Grub.</li>
<li><strong>Disk read error: </strong> Se ha producido un error de lectura en el disco.</li>
<li><strong>Too many symbolic links: </strong>Demasiados enlaces simbólicos. El máximo son 5. Puede ser que los enlaces tengan un bucle.</li>
<li><strong>Unrecognized command: </strong>Cuando introducimos un nombre de orden no reconocido por Grub. Puede tratarse de un error al escribir.</li>
<li><strong>Selected item cannot fit into memory: </strong>Aparece cuando tratamos de cargar en memoria algo que no cabe.</li>
<li><strong>Disk write error: </strong>Este error se produce cuando grub intenta escribir en disco. Esto solo puede ocurrir durante la instalación o con la orden makeactive.</li>
<li><strong>Invalid argument: </strong>Algún argumento de alguna orden es incorrecto.</li>
<li><strong>File is not sector aligned: </strong>Cuando se accede a una partición ReiserFS. Se debe montar la partición con la opción &#8216;notail&#8217;.</li>
<li><strong>Must be authenticated: </strong>Se trata de acceder a un arranque protegido por contraseña. Hay que introducir una contraseña válida.</li>
<li><strong>Serial device not configured: </strong>Se intenta cmabiar el terminal a uno serie, pero no se ha activado ningún dispositivo serie.</li>
<li><strong>No spare sectors on the disk: </strong>Cuando no queda espacio libre. Si se intenta entrar en los sectores no usados tras el MBR, pero la partición primera empieza justo después del MBR.</li>
</ol>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Recordando los wallpapers de Ubuntu]]></title>
<link>http://onoametal.wordpress.com/2009/09/25/recordando-los-wallpapers-de-ubuntu/</link>
<pubDate>Fri, 25 Sep 2009 19:05:03 +0000</pubDate>
<dc:creator>onoametal</dc:creator>
<guid>http://onoametal.wordpress.com/2009/09/25/recordando-los-wallpapers-de-ubuntu/</guid>
<description><![CDATA[En OMG! Ubuntu me encuentro con este buen post sobre los diferentes wallpapers que han estado a lo l]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:left;"><img class="aligncenter" src="http://lh6.ggpht.com/_FJH0hYZmVtc/SrzEiQHEPkI/AAAAAAAADQQ/2WjJCa8-G2M/View%20omgubuntnuwww_thumb%5B3%5D.jpg?imgmax=800" alt="" width="400" height="74" /></p>
<p style="text-align:left;">En <a href="http://d0od.blogspot.com/2009/09/ubuntu-wallpaper.html" target="_blank">OMG! Ubuntu</a> me encuentro con este buen post sobre los diferentes wallpapers que han estado a lo largo de la vida de Ubuntu. Personalmente mi primer encuentro con Ubuntu fue con Dapper Drake:</p>
<p style="text-align:center;"><img class="aligncenter" src="http://lh6.ggpht.com/_BFud75Vu4Z4/Sr0S6uMCLQI/AAAAAAAABjE/yhdV4zGej_U/s800/dapper.png" alt="" width="448" height="280" /></p>
<p style="text-align:left;">Lo recuerdo como si fuera ayer&#8230; Cuál es el mejor? No sé, digamos que todos tienen lo suyo&#8230;</p>
<p style="text-align:left;">Por ahora esperaremos a ver qué nos trae Karmic (yo no he probado ningun Alpha ni Beta, voy a esperar al release final).</p>
<p style="text-align:left;">Up The Irons!!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cómo instalar GNOME Shell en Ubuntu Koala, Jackalope y/o Ibex]]></title>
<link>http://elsoftwarelibre.wordpress.com/2009/09/23/como-instalar-gnome-shell-en-ubuntu-koala-jackalope-yo-ibex/</link>
<pubDate>Wed, 23 Sep 2009 03:21:20 +0000</pubDate>
<dc:creator>Soft-Libre</dc:creator>
<guid>http://elsoftwarelibre.wordpress.com/2009/09/23/como-instalar-gnome-shell-en-ubuntu-koala-jackalope-yo-ibex/</guid>
<description><![CDATA[Cómo sabemos, GNOME 3.0 traerá notrables cambios, algunos indican que será un cambio radical para es]]></description>
<content:encoded><![CDATA[Cómo sabemos, GNOME 3.0 traerá notrables cambios, algunos indican que será un cambio radical para es]]></content:encoded>
</item>
<item>
<title><![CDATA[Ubuntu Tweak 0.4.9 Has Been Released]]></title>
<link>http://ubuntulady.wordpress.com/2009/09/13/ubuntu-tweak-0-4-9-has-been-released/</link>
<pubDate>Sun, 13 Sep 2009 22:50:27 +0000</pubDate>
<dc:creator>ubuntulady</dc:creator>
<guid>http://ubuntulady.wordpress.com/2009/09/13/ubuntu-tweak-0-4-9-has-been-released/</guid>
<description><![CDATA[Ubuntu Tweak 0.4.9 was released Saturday, September 12, 2009 after more than one month&#8217;s devel]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ubuntu Tweak 0.4.9 was released Saturday, September 12, 2009 after more than one month&#8217;s development.  The new version covers Karmic (still in development) as well as Hardy, Intrepid and Jaunty.</p>
<p>One thing the latest version of Ubuntu Tweak will do is to make your sources.list file more manageable.  By default, Ubuntu Tweak will save its third party sources into its own file under /etc/apt/sources.list.d/</p>
<p>When you open the Source Editor, Ubuntu Tweak will show you the main sources.list in the window.</p>
<p><img style="max-width:800px;" src="http://ubuntulady.files.wordpress.com/2009/09/screenshot-ubuntu-tweak.png" alt="" /></p>
<p>You can also select the drop down menu to view or edit other list files.  They are stored under /etc/apt/sources.list.d/  (If you don&#8217;t use Separated Sources, you can disable it in the Preferences Dialog:</p>
<p><img src="http://ubuntulady.files.wordpress.com/2009/09/screenshot-ubuntu-tweak-preferences.png" alt="" /></p>
<p>A lot of PPAs (third party sources) have been added.  These are aMule, Google Testing Repository, GmChess (Chinese Chess), Smplayer Testing, GIMP Testing, Back In Time (a backup tool), Geany, SpiceBird, Moblin Testing, PlayOnLinux, RedNotebook, Breathe Icon Theme, Qt, Mono, Exaile, Clutter, Ubuntu X Unstable, and Gloobus, as well as the themes Arc-Colors, Gnome-Colors and Shiki-Colors.</p>
<p>In addition, Ubuntu Tweak has added a notification in the notification area when you enable a source.  In addition, once you click Refresh to update and the update is done, a window will come up showing you what new applications can be installed and what updates can be applied.</p>
<p>One more thing to note:  from this version forward, Ubuntu Tweak will have different packages for i386 and amd64.  You can download the correct package for this version at <a href="https://launchpad.net/ubuntu-tweak/0.4.x/0.4.9">https://launchpad.net/ubuntu-tweak/0.4.x/0.4.9</a>.Technorati Tags: <a class="performancingtags" rel="tag" href="http://technorati.com/tag/Ubuntu Tweak">Ubuntu Tweak</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/Ubuntu">Ubuntu</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/Karmic">Karmic</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/Jaunty">Jaunty</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/Intrepid">Intrepid</a></p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=3b011f3d-bde8-8f95-be1e-fd663abcfb5e" alt="" /></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[If it ain't broken, don't fix it!]]></title>
<link>http://xianblog.wordpress.com/2009/09/06/if-it-aint-broken-dont-fix-it/</link>
<pubDate>Sat, 05 Sep 2009 22:24:03 +0000</pubDate>
<dc:creator>xi'an</dc:creator>
<guid>http://xianblog.wordpress.com/2009/09/06/if-it-aint-broken-dont-fix-it/</guid>
<description><![CDATA[I tend to minimise the instances when I have to change of Linux version on my computer (a Macbook Pr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;"><a href="https://shop.canonical.com/images/UBN00076.jpg"><img class="alignleft" title="Hardy Heron tee-shirt" src="https://shop.canonical.com/images/UBN00076.jpg" alt="" width="270" height="270" /></a></p>
<p style="text-align:justify;"><strong>I</strong> tend to minimise the instances when I have to change of Linux version on my computer (a Macbook Pro <a href="https://help.ubuntu.com/community/MacBook3-1/Intrepid">Santa Rosa</a>), for this always is a traumatic event with potential consequences on my work, and therefore I had postponed leaving Kubuntu 7.10 (<a href="https://wiki.ubuntu.com/GutsyGibbon">Gutsy Gibbon</a>) in a typical procrastinating attitude,  i.e. till something stopped working! This happened yesterday with a failed attempt at upgrading R and I thus moved to Kubuntu 8.04 (<a href="https://wiki.ubuntu.com/HardyHeron">Hardy Heron</a>), using the upgrade option rather than re-installing the whole thing from scratch. The only manual steps were to change xorg.conf to accomodate the touchpad and to install madwif to get access to the wireless—the most frustrating part was finding a <a href="http://snapshots.madwifi-project.org/madwifi-hal-0.10.5.6/">valid</a> address! (Upgrading Ubuntu means that each intermediate version needs to be installed before moving to the next.) Now that <em>everything</em> works nicely (including <em>suspend</em> and <em>hibernate</em>, and my earlier heating problem seems to be resolved as well!), I am wondering whether or not I should move to the next version of Kubuntu 8.10 (<a href="https://wiki.ubuntu.com/IntrepidIbex">Intrepid Ibex</a>, terrible <a href="http://shop.canonical.com/images/Intrepid%20Green%20Men.jpg">tee-shirt</a>!) or even to the most recent  Kubuntu 9.04 (<a href="https://wiki.ubuntu.com/JauntyJackalope">Jaunty Jackalope</a>, terrible name: <a href="http://twitter.com/darkuncle/status/1075196618">jaundiced jackal</a>, jovial <a href="http://en.wikipedia.org/wiki/Jabiru">jabiru</a>, jocular jellyfish, or jittery jaguar would have sounded way better! The next animal in the list of releases is a <a href="https://lists.ubuntu.com/archives/ubuntu-devel-announce/2009-February/000536.html">koala</a>, although <a href="https://wiki.ubuntu.com/KarmicKoala">karmic</a> would hardly have been my adjective of choice)&#8230; As an aside about this future <a href="http://tuxarena.blogspot.com/2009/08/kubuntu-910-karmic-koala-overview.html">release</a>, an interesting <a href="http://www.desktoplinux.com/news/NS9476906471.html">announcement</a> is that Ubuntu 9.10 would support cloud computing.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Mangaka Linux, distro para los anime fans]]></title>
<link>http://fausto23.wordpress.com/2009/08/28/mangaka-linux-distro-para-los-anime-fans/</link>
<pubDate>Fri, 28 Aug 2009 21:29:48 +0000</pubDate>
<dc:creator>fausto23</dc:creator>
<guid>http://fausto23.wordpress.com/2009/08/28/mangaka-linux-distro-para-los-anime-fans/</guid>
<description><![CDATA[Cuando me entere de esto, tuve que leerlo 2 veces y pellizcarme, Mangaka Linux es una distro basada ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter" title="Ubuntu anime" src="http://imgur.com/nU7v1l.png" alt="" width="348" height="452" /></p>
<p>Cuando me entere de esto, tuve que leerlo 2 veces y pellizcarme, <a href="http://animesoft.wordpress.com/about/">Mangaka Linux</a> es una distro basada en Ubuntu 8.10 para todos los mangakas, fansubbers y fans del anime. En lo técnico, esta basada en Ubuntu Jaunty con kernel 2.6.27-14, con LXDE u Openbox como interfaz, clama un boot de 8 seg y poder reproducir vídeos 720p de tus series favoritas sin problemas en una netbook.</p>
<p>Además de contar con el software necesario para los que colaboran en fansubs con herramientas libres ;D, cuenta con artwork con temática anime (obvio <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ).</p>
<p>Y como nacio este proyecto, cito al admin del sitio:</p>
<p><em>&#8220;Me ha gustado el anime y las computadoras desde que era joven. Aburrido de las mentiras, virus y el monopolio de M$, decidí cambiar a Linux. Mas aun asi mis amigos fansubbers y yo sentíamos que algo le faltaba a Linux y asi es como se me ocurrió la idea de crear una distro veloz basada en Ubuntu para los fansubbers, mangakas y fans del anime.</em></p>
<p>En este blog apoyamos proyectos que utilicen software libre y se relacionen con el anime (<a href="http://fausto23.wordpress.com/2009/03/21/pelicula-anime-solo-con-software-libre/">como Morevna</a>) y este claro que no sera la excepción.</p>
<p>Mangaka Linux se encuentra en la segunda version de su primer release y pronto sacara la 2 release de esta distro (codename: Chu) y podemos descargarlo de aquí <a href="http://linuxtracker.org/index.php?page=torrent-details&#38;id=478d9405795c1f06d67163dcca8311baf5ff5e0c">[DVD, 1.95 GB, torrent]</a></p>
<p>Una sorpresa lo flexible que son los sistemas GNU/Linux que se adecuan a cualquier publico.</p>
<p>Sayounara</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Themes for Ubuntu]]></title>
<link>http://ubuntulady.wordpress.com/2009/07/11/themes-for-ubuntu/</link>
<pubDate>Sat, 11 Jul 2009 04:39:37 +0000</pubDate>
<dc:creator>ubuntulady</dc:creator>
<guid>http://ubuntulady.wordpress.com/2009/07/11/themes-for-ubuntu/</guid>
<description><![CDATA[A couple of weeks ago, while I was in Salt Lake City helping out at the UMCOR (United Methodist Comm]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="font-family:sans-serif;">A couple of weeks ago, while I was in Salt Lake City helping out at the UMCOR (United Methodist Committee on Relief) depot that has just started up there, Ubuntu Geek ran a beautifully detailed <a href="http://www.ubuntugeek.com/nice-ubuntu-themes-for-jaunty-and-intrepid-users.html">article</a> on the new repository of Zgegblog themes for Jaunty and Intrepid.  I won&#8217;t quote much of the article, except to say how to get these themes into your sources.list and onto your computer.</span></p>
<p><span style="font-family:sans-serif;">First for the sources.list.  This will require you to open up System &#62; Administration &#62; Software Sources, go to the Third-Party Software tag, click on add and add the line</span></p>
<p><span style="font-family:sans-serif;"><em>deb http://ppa.launchpad.net/bisigi/ppa/ubuntu jaunty main</em> (or Intrepid if that is your version).</span></p>
<p><span style="font-family:sans-serif;">The following command will add the GPG key to let your computer know the repository is signed and safe for your use:</span></p>
<p><span style="font-family:sans-serif;">sudo apt-key adv &#8211;recv-keys &#8211;keyserver keyserver.ubuntu.com 1781bd45c4c3275a34bb6aec6e871c4a881574de</span></p>
<p><span style="font-family:sans-serif;">Then, once you update, you can type <em>sudo aptitude install zgegblog-themes</em>.  (They can also be installed separately.)</span></p>
<p><span style="font-family:sans-serif;">Even though I am running Karmic, I installed these themes without a hitch.  Here is my favorite of the group, Balanzan.</span></p>
<p><span style="font-family:sans-serif;"><img src="http://ubuntulady.files.wordpress.com/2009/07/balanzan.png" alt="" /></span></p>
<p><span style="font-family:sans-serif;">Karmic Koala also has a group of new themes, available right in the repository.  These are based on the brave (blue), wine, noble (purple), wise (green), dust and human themes.  There are wallpapers to go with them.  Here is the shiki-brave theme with the arc-brave wallpaper:</span></p>
<p><span style="font-family:sans-serif;"><img src="http://ubuntulady.files.wordpress.com/2009/07/brave.png" alt="" /></span></p>
<p><span style="font-family:sans-serif;">To install these themes, type in your terminal or Alt+F2 window, </span></p>
<p><span style="font-family:sans-serif;"><em>sudo aptitude install shiki-human-theme shiki-brave-theme shiki-noble-theme shiki-wine-theme shiki-dust-theme shiki-wise-theme arc-human arc-noble arc-wise arc-dust arc-wine arc-brave</em></span></p>
<p><span style="font-family:sans-serif;"> </span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[desktop ku]]></title>
<link>http://pinusdesember.wordpress.com/2009/07/02/desktop-ku/</link>
<pubDate>Thu, 02 Jul 2009 03:05:40 +0000</pubDate>
<dc:creator>pinusdesember</dc:creator>
<guid>http://pinusdesember.wordpress.com/2009/07/02/desktop-ku/</guid>
<description><![CDATA[desktop ku]]></description>
<content:encoded><![CDATA[desktop ku]]></content:encoded>
</item>
<item>
<title><![CDATA[Lo más visto en PutoLinux de todos los tiempos]]></title>
<link>http://pillateunlinux.wordpress.com/2009/05/31/lo-mas-visto-en-putolinux-de-todos-los-tiempos/</link>
<pubDate>Sun, 31 May 2009 10:00:39 +0000</pubDate>
<dc:creator>pragmart</dc:creator>
<guid>http://pillateunlinux.wordpress.com/2009/05/31/lo-mas-visto-en-putolinux-de-todos-los-tiempos/</guid>
<description><![CDATA[Cómo instalar el puto Firefox 3 en Debian Lenny 8.901 visitas Cómo instalar el puto driver Wifi Athe]]></description>
<content:encoded><![CDATA[Cómo instalar el puto Firefox 3 en Debian Lenny 8.901 visitas Cómo instalar el puto driver Wifi Athe]]></content:encoded>
</item>
<item>
<title><![CDATA[Network Manager + SecureW2]]></title>
<link>http://jfibergran.wordpress.com/2009/05/22/network-manager-securew2/</link>
<pubDate>Fri, 22 May 2009 11:15:03 +0000</pubDate>
<dc:creator>FiBER</dc:creator>
<guid>http://jfibergran.wordpress.com/2009/05/22/network-manager-securew2/</guid>
<description><![CDATA[Para conectarse a redes WiFi que utilicen el cliente SecureW2 en Windows, (este es el caso de la con]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Para conectarse a redes WiFi que utilicen el cliente SecureW2 en Windows, (este es el caso de la conexión cviugr-v2 de la Universidad de Granada (UGR) ), existe una forma bastante sencilla de hacerlo con Network Manager.</p>
<p>Primero hay que descargar el <a href="http://www.ugr.es/informatica/cvi-ugr/download/SCS_CAs.pem">certificado</a>, es el <em>GTE CyberTrust Global Root</em>.</p>
<p>Y una vez hecho, hay que conectarse a la red y dejarla como en la imagen:</p>
<p><img class="aligncenter size-full wp-image-459" title="securew2" src="http://jfibergran.wordpress.com/files/2009/05/securew2.jpg" alt="securew2" width="414" height="597" /></p>
<p>La parte resaltada en verde, es donde hay que seleccionar el certificado que hemos descargado.</p>
<p>Fuente: <a href="http://siesgratrisdame2.wordpress.com/2009/02/26/otra-forma-de-conectar-a-cviugr-v2/">siesgratisdame2</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Linux Mint 6: From freedom came elegance..]]></title>
<link>http://ravikanthl.wordpress.com/2009/05/08/linux-mint-6-from-freedom-came-elegance/</link>
<pubDate>Fri, 08 May 2009 15:49:10 +0000</pubDate>
<dc:creator>Ravi</dc:creator>
<guid>http://ravikanthl.wordpress.com/2009/05/08/linux-mint-6-from-freedom-came-elegance/</guid>
<description><![CDATA[Ubuntu has proven to be such a popular distribution that there are even other distributions based of]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ubuntu has proven to be such a popular distribution that there are even other distributions based off of it nowadays <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> . One such distro I found amazing was the Linux Mint which seeks to take the ease-of-use provided by Ubuntu to a new level and, for the most part, succeeds. That even there own Linux Mint&#8217;s slogan is &#8220;From freedom came elegance&#8221; and that&#8217;s very appropriate for what this distribution is all about..</p>
<div class="wp-caption aligncenter" style="width: 434px"><a href="null"><img alt="Linux Mint 6" src="http://www.linuxmint.com/pictures/screenshots/daryna/daryna.png" title="Linux Mint 6" width="424" height="308" /></a><p class="wp-caption-text">Linux Mint 6</p></div>
<p>===============================================================</p>
<p>So let me give sneak view on this distro real fast:</p>
<p>Linux Mint 6 (Felicia) is the latest version and it is based on Ubuntu 8.10 (Intrepid Ibex). Linux Mint 7 will be based on Ubuntu 9.04 and is being worked on already by the Linux Mint developers. There are two versions of Linux Mint:</p>
<p><strong>The Main Edition<br />
The Universal Edition</strong></p>
<p>The universal edition does not include any proprietary software, support for restricted formats, or patented technologies. It&#8217;s geared for people in countries that might otherwise forbid some or all of these things.<br />
<strong><br />
Here is whats new in this Distro:</strong></p>
<p>Linux Kernel 2.6.27-7<br />
Network Manager .7<br />
Xorg 7.4<br />
mintInstall (software manager)<br />
mintUpdate 3 (system update manager)<br />
mintUpload 2 (uploading tool)<br />
mintNanny (bare bones tool to block inappropriate domains for children)<br />
mint4Win (Windows installer for Linux Mint)<br />
Giver (lets you send files from one computer to another on a local network)<br />
Gufw (a firewall configuration tool)<br />
Flegita (Gnome scanner utility)</p>
<p><strong>Installation</strong></p>
<p>Installing Linux Mint is easy. If you&#8217;ve ever installed Ubuntu or even Windows then you shouldn&#8217;t have a problem installing Linux Mint. When you insert the CD and reboot you&#8217;ll default to a Live CD that lets you run Linux Mint without having to install it. The Live CD thing is very nice for those on the fence who aren&#8217;t sure whether they want to jump into doing a full install. Actual you will find no problem with the Install..</p>
<p><strong>The Linux Mint Desktop</strong></p>
<p>Linux Mint uses Gnome as its desktop environment so you&#8217;ll feel right at home if you&#8217;re a Gnome user. KDE fans might not appreciate it as much but will acclimate to it soon enough. After logging onto your Linux Mint desktop you&#8217;ll note that there is the usual &#8220;Start&#8221; type button but it&#8217;s labeled &#8220;Menu&#8221; and it will take you to the usual menu lists to access your applications, preferences, etc. </p>
<p>Linux Mint&#8217;s menu system is nicely done as it lets you access all your app categories, system management tools, and important places on your system (home, trash, etc.). You won&#8217;t have to spend a lot of time clicking around to find where things are even if you&#8217;re totally new to Linux Mint. </p>
<p>You can customize your desktop a bit by clicking &#8220;Menu&#8221;, then &#8220;Preferences&#8221;, then &#8220;mintDesktop&#8221; to start the LM desktop configuration tool. Note that there are arrows that let you scroll left or right to see various options that you can change. Frankly I would rather have had a different system for this as newbies might not notice that they can scroll. A set of icons or something closer to how Apple does it in their System Preferences tool would be better. </p>
<p><strong>Bundled Applications</strong></p>
<p>Linux Mint comes with a useful but not overwhelming selection of software. The app categories are broken down into the usual: </p>
<p>Accessories<br />
Graphics<br />
Internet<br />
Office<br />
Sound &#38; Video</p>
<p>Some of the apps bundled include the following: </p>
<p>The Gimp<br />
OpenOffice.org<br />
Firefox<br />
Pidgin IM<br />
Transmission<br />
XChat<br />
Mozilla Thunderbird Mail/News<br />
Brasero Disc Burning<br />
MPlayer<br />
Totem Movie Player<br />
Rhythmbox Music Player</p>
<p>To add more software click on the &#8220;Menu&#8221; button then click on &#8220;Software Manager.&#8221; This will launch the MintInstall application. You&#8217;ll see software broken down into a number of categories including: </p>
<p>Graphics<br />
Office<br />
Sound and Video<br />
Internet<br />
Games<br />
Programming<br />
Education<br />
System Tools<br />
Drivers</p>
<p>Here&#8217;s some additional software that caught my eye: </p>
<p>Opera<br />
Sea Monkey<br />
Galeon (yes, my old favorite Linux browser is still available for download!)<br />
Evolution<br />
KMail<br />
Kopete<br />
Vuze<br />
Super Tux Cart</p>
<p>There&#8217;s definitely some good additional software available and it&#8217;s very easy to install onto your Linux Mint system. After you settle in, be sure to spend a few minutes browsing around and picking out some extra software for your system. </p>
<p><strong>Multimedia</strong><br />
One of the things that sets Linux Mint apart from Ubuntu and some other distributions is that it is more multimedia-capable &#8220;right out of the box.&#8221; I tested this by playing a DVD on my LinuxMint-installed system and by trying some YouTube videos. </p>
<p>I was somewhat disappointed to note that the DVD did not auto-load like it does in Mac OS X. I&#8217;m not sure whether that was because I was running Linux Mint in VMWare or not. Anyway, to run the DVD I fired up the Totem movie player and clicked the Movie menu, then clicked on &#8220;Play Disc All American Hunts.&#8221; The DVD played fine, the video was good and I had perfect sound with no need on my part to download any additional codecs. Quite a change from the reputation some Linux distributions have.</p>
<p><strong>So whats the De-merits:</strong></p>
<p>the mintDesktop tool is potentially confusing to newbies to Linux Mint. The way it&#8217;s set up is not particularly intuitive and could potential make a newbie think that you can only configure Desktop Items and Nautilus Mode, which isn&#8217;t true. </p>
<p>mintDesktop needs to be tweaked a tad bit and I&#8217;d like to see an icon dropped on the desktop by default for it since it&#8217;s a handy tool that should have a more prominent place on the LM desktop. </p>
<p><strong>The Verdict</strong></p>
<p>I like Linux Mint a lot. In some ways it&#8217;s what I wish Ubuntu itself had been. If I had to choose between the two of them, I would pick Linux Mint because it&#8217;s Ubuntu but better. While I noted a few things that could be improved, Linux Mint is definitely worth a download. </p>
<p>I really like the look and feel of Linux Mint. The artwork and the overall aesthetics of this distribution are very easy on the eyes. In an odd way it reminds me of Mac OS X without all the overbearing Apple glitter or the Apple tax. It&#8217;s slick. </p>
<p>And don&#8217;t just run it in Live CD mode either. Give it an install on your system. If I were in the market for an alternative to Windows, Linux Mint would definitely be at the top of my list. I still hear some people say &#8220;Linux still isn&#8217;t ready for the desktop&#8221; and stuff like that sometimes. </p>
<p>You can check there site if you need a free download: <a href="http://www.linuxmint.com/">http://www.linuxmint.com/</a></p>
<p><strong>Pros:</strong> Includes bundled multimedia codecs. Slick, Gnome based desktop with well designed menus..  </p>
<p><strong>Cons:</strong> mintDesktop config tool could use some tweaking and multiple ways to manage software could confuse some users who are new to Linux. </p>
<p><strong>Summary:</strong> Linux Mint is an excellent choice for anyone looking for a viable alternative to Windows or Mac OS X. </p>
<p>Finally here is intresting video on the same:<br />
<span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/P0W1umC41ig&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/P0W1umC41ig&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Problemas con Skype XD]]></title>
<link>http://ubuntuparanovatos.wordpress.com/2009/05/06/problemas-con-skype-xd/</link>
<pubDate>Wed, 06 May 2009 15:59:38 +0000</pubDate>
<dc:creator>bbto</dc:creator>
<guid>http://ubuntuparanovatos.wordpress.com/2009/05/06/problemas-con-skype-xd/</guid>
<description><![CDATA[Desde la version 8.10 Intrepid Ibex de ubuntu he tenido un problema con skype y es que no puedo real]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Desde la version 8.10 Intrepid Ibex de ubuntu he tenido un problema con skype y es que no puedo realizar llamadas. Al actualizar a la version 9.04 Jaunty Jackalope pense que el problema se solucionaria pero no fue asi. Al ejecutar Skype desde la terminal obtenia el siguiente error:</p>
<p><em>ALSA lib pcm.c:2205:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.hdmi<br />
ALSA lib pcm.c:2205:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.hdmi<br />
ALSA lib pcm_bluetooth.c:1569:(audioservice_expect) BT_GET_CAPABILITIES failed : Error de entrada/salida(5)<br />
ALSA lib pcm_bluetooth.c:1569:(audioservice_expect) BT_GET_CAPABILITIES failed : Error de entrada/salida(5)<br />
ALSA lib pcm.c:2205:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.hdmi<br />
ALSA lib pcm.c:2205:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.hdmi<br />
ALSA lib pcm_bluetooth.c:1569:(audioservice_expect) BT_GET_CAPABILITIES failed : Error de entrada/salida(5)<br />
ALSA lib pcm_bluetooth.c:1569:(audioservice_expect) BT_GET_CAPABILITIES failed : Error de entrada/salida(5)<br />
ALSA lib pcm.c:2205:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.hdmi<br />
ALSA lib pcm.c:2205:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.hdmi<br />
ALSA lib pcm_bluetooth.c:1569:(audioservice_expect) BT_GET_CAPABILITIES failed : Error de entrada/salida(5)<br />
ALSA lib pcm_bluetooth.c:1569:(audioservice_expect) BT_GET_CAPABILITIES failed : Error de entrada/salida(5)</em></p>
<p>Decidido a corregir el problema me puse a buscar como loco por todos lados tratando de encontrar la solucion. En todos lados encontraba que debia editar unos archivos en /etc y hacer circo y maromas, pero la solucion, como marca el principio de la navaja de occam, siempre suele ser la mas sencilla. Aun sigo recibiendo el mismo mensaje de error al inciar Skype pero ya puedo realizar llamadas.</p>
<p>A todo esto lo unico que deberas hacer es ir a la &#8220;S&#8221; azul que se encuentra en la esquina inferior izquierda del programa e ir a opciones &#62; Dispositivos de Audio. En la casilla de <em>Sonido Entrante</em> deberas cambiar el valor <em>Default device (default)</em> por el valor que esta inmediatamente debajo, en mi caso es <em>Intel ICH6 (hw:IHC6,4)</em>. En la casilla de <em>Sonido Saliente</em> cambia el valor a <em>Pulse</em> y haz lo mismo para la casilla de <em>llamando</em>.</p>
<p>Eso es todo. Con eso deberia funcionar, a mi me funciono.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Jhbuild Issue in Intrepid Ibex ]]></title>
<link>http://blogjamun.wordpress.com/2009/05/02/jhbuild-issue-in-intrepid-ibex/</link>
<pubDate>Sat, 02 May 2009 07:04:34 +0000</pubDate>
<dc:creator>blogjamun</dc:creator>
<guid>http://blogjamun.wordpress.com/2009/05/02/jhbuild-issue-in-intrepid-ibex/</guid>
<description><![CDATA[Update: The error in jhbuild discussed below is a consequence of me trying to merge the jhbuild chec]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Update:</strong> The error in jhbuild discussed below is a consequence of me trying to merge the jhbuild checkout folder and the gnome components&#8217; checkout folder. It may not apply for those building with default directory structures as prescribed in the jhbuild gnome live wiki.</p>
<p>I recently downloaded the jhbuild sources from the git repository. I was able to compile and install it without many hiccups, thanks to the elaborate distro-specific Jhbuild Issues wiki in gnome.org.<br />
To my shock, &#8216;jhbuild&#8217; command returned the following error,</p>
<p>Traceback (most recent call last):<br />
File &#8220;/home/pk/bin/jhbuild&#8221;, line 5, in<br />
import jhbuild.main<br />
ImportError: No module named jhbuild.main</p>
<p>I am not sure if this is consistently reproducible by others. But the solution here is pretty straight forward. Open the ~/bin/jhbuild file. Don&#8217;t pay heed to your graphical editors conservative warnings. It is just a python script. Check if the second argument of the sys.path.insert points to the directory which contains the jhbuild sources. Change it suitably and the problem is fixed. In my case the second argument was pointing to &#8220;~/svn/gnome2/jhbuild&#8221;. I had to modify it to &#8220;~/checkout/gnome2&#8243;.<br />
Happy building <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Wubi and Jaunty Jackelope]]></title>
<link>http://kevinsm.wordpress.com/2009/05/01/wubi-and-jaunty-jackelope/</link>
<pubDate>Fri, 01 May 2009 05:56:16 +0000</pubDate>
<dc:creator>kevinsm</dc:creator>
<guid>http://kevinsm.wordpress.com/2009/05/01/wubi-and-jaunty-jackelope/</guid>
<description><![CDATA[For the first time in a couple of weeks, I have an actual Linux dual-boot on my hard drive. Another ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>For the first time in a couple of weeks, I have an actual Linux dual-boot on my hard drive. Another relative has temporarily moved in with my grandfather and me, so I decided to reinstall Windows on my computer to allow him to work with an OS he was more familiar with. I decided to set up a Wubi install of Intrepid Ibex to tide me over until Jaunty Jackelope came out.</p>
<h3><strong>Wubi</strong></h3>
<p>That was my first use of Wubi. Having experienced it, I wish it would have been an option when I first got into Ubuntu and Linux (back in the days of Gutsy Gibbon). If I&#8217;d had the chance to try Ubuntu out without setting up a permanent dual-boot, I wouldn&#8217;t have set up the conservatively sized partition I originally did. Then I wouldn&#8217;t have spent so long trying to figure out how to expand the damn thing.</p>
<p>Wubi works very well. The boot-up seems to take longer, but Ubuntu runs just as quickly under a Wubi install as it does on a regular dual-boot. The biggest differences are:</p>
<ul>
<li>You don&#8217;t have access to your Windows files under Wubi.</li>
<li>You only have a maximum of 30 GB of storage for Ubuntu under Wubi.</li>
</ul>
<p>Otherwise, everything seems to work the same, including the update feature.</p>
<h3><strong>Gnome Partition Editor (GPartEd)</strong></h3>
<p>In my past experiments with the Gnome Partition Editor, I&#8217;ve never been able to get the results that I&#8217;ve wanted. I finally figured out that this is because you can&#8217;t manipulate the partition on which you&#8217;re running GPartEd. Thus, when I downloaded the program and attempted to grow my Ubuntu partition, I was out of luck.</p>
<p>Fortunately, the Jaunty Jackelope live CD comes with GPartEd, which allows you to manipulate any partition on your drive by running it from the CD. Unfortunately, I didn&#8217;t come to this revelation until after my relative had already saved some stuff on his Windows account, so it&#8217;s going to be a while before I can really grow my Linux partition. However, I was able to gain about 10 more gigs for Linux because of the fact that a Wubi install apparently creates an ext3 swap drive separate from the Windows partition.</p>
<h3><strong>Jaunty Jackelope</strong></h3>
<p>At the end of the day, I got Jaunty Jackelope installed. So far, I like what I&#8217;m seeing. A few things struck me right off the bat after I installed it and started playing around.</p>
<ul>
<li>The boot time has dramatically decreased, as <a href="http://jaysonrowe.com/2009/04/12/a-few-quick-thoughts-on-ubuntu-904-jaunty/" target="_self">others have pointed out</a>.</li>
<li>The new wallpapers (though there are only two of them) are much better than in the last couple of releases.</li>
<li>The preinstalled themes are better. This batch includes popular third-party themes like New Wave and a couple of versions of Dust.</li>
<li>The default shut-down widget now gives you 60 seconds to change your mind.</li>
<li>OpenOffice 3 is now preinstalled. That saves me the trouble of adding the OOo repository to get it. (I do need the ability to occasionall read Office 2007 documents in case I accidentally download or otherwise access them in Linux. Of course, OOo 3.1 is sounding interesting enough that I might end up doing that eventually anyway.</li>
</ul>
<p>I&#8217;m sure I&#8217;ll find more to write about as I mess with Jaunty some more, but this is enough for now. Besides, who keeps a blog to write one comprehensive entry every six months?</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Using Linux @ work]]></title>
<link>http://tjardas.wordpress.com/2009/04/26/using-linux-work/</link>
<pubDate>Sun, 26 Apr 2009 19:44:17 +0000</pubDate>
<dc:creator>tjardas</dc:creator>
<guid>http://tjardas.wordpress.com/2009/04/26/using-linux-work/</guid>
<description><![CDATA[I started working at Componence in January 2009. Apart from being supported to blog, they are very o]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I started working at <a href="http://www.componence.com">Componence</a> in January 2009. Apart from being supported to blog, they are very open in what laptop/OS to use. Colleagues use MacBooks, some other brands of laptops, and most of them run some flavour of Windows. At home I started running Linux quite some years ago, but I inherited my laptop at work running Windows XP. It became slower in the following months, although I tried to install as few applications as possible. End of March I decided to upgrade to <a href="http://www.ubuntu.com">Ubuntu (8.10)</a>.</p>
<p><a rel="attachment wp-att-24" href="http://tjardas.wordpress.com/2009/04/26/using-linux-work/ubuntu-shirt/"><img class="size-full wp-image-24 alignleft" title="ubuntu-shirt" src="http://tjardas.wordpress.com/files/2009/04/ubuntu-shirt.jpg" alt="Although I like shirts, I don't have this one yet..." width="210" height="210" /></a></p>
<p>First tip: Don&#8217;t try this on a Sunday evening! Linux runs fine, but these windows app&#8217;s cause the problems. I have to work with the MS Office suite, and like to work with <a href="http://www.sparxsystems.com.au/products/ea/index.html">Enterprise Architect</a>. Apart from that I liked to work with tools like <a href="http://evernote.com/">Evernote</a>, but already decided I can live without. Office and EA are a must. So I bought <a href="http://www.codeweavers.com/products/cxlinux/">CrossOver</a>, a commercial flavour of Wine, I had good experiences with 3 versions ago. Not this time. Office 2003 refused to install decently, mainly Service Pack 2 to be more exact. EA did not run either, but that can be caused by the fact we have a windows license, not the Linux/Wine one.</p>
<p>The alternative was using some virtual solution. I like <a href="http://www.virtualbox.org/">VirtualBox</a>, but ran into issues running USB like additions. <a href="http://www.vmware.com/">VMWare player 2.5.x</a> won the compatibility contest on external connectivity, and network connectivity (bridged networking if needed, VirtualBox expects one to do the bridging themselves, which is too much risk in running a business laptop).</p>
<p>After some fiddling with aticonfig I got my xorg setup under control serving my second screen and eventually got my wacom pen-tablet in a relative (mouse-like) manner.</p>
<p>I really enjoy my Ubuntu business proof, fast performing laptop. the only disadvantage is Evolution, or depending on the perspective, the fact that my company uses Exchange OWA 2007. There still is no good solution for that, so I am still using web mail through a web browser&#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Aggiornare Ubuntu 8.10 alla 9.04]]></title>
<link>http://ilcristopagano.wordpress.com/2009/04/26/aggiornare-ubuntu-810-alla-904/</link>
<pubDate>Sun, 26 Apr 2009 14:54:08 +0000</pubDate>
<dc:creator>ilcristopagano</dc:creator>
<guid>http://ilcristopagano.wordpress.com/2009/04/26/aggiornare-ubuntu-810-alla-904/</guid>
<description><![CDATA[Da qualche giorno è stata rilasciata la versione 9.04 di Ubuntu è aggiornare la nostra 8.10 è molto ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Da qualche giorno è stata rilasciata la versione 9.04 di Ubuntu è <strong>aggiornare la nostra 8.10 è molto semplice grazie ad un intuitiva interfaccia grafica</strong> di seguito è descritto il processo:</p>
<p>Se apriamo un gestore di aggiornamenti Ubuntu ci avvisa che possiamo aggiornarlo alla versione successiva:</p>
<div id="attachment_114" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-114" title="avanzamento9041" src="http://ilcristopagano.wordpress.com/files/2009/04/avanzamento9041.png" alt="Avanzamento" width="450" height="35" /><p class="wp-caption-text">Ubuntu ci dice che una nuova versione è disponibile.</p></div>
<p>Dopo di che ci verranno mostrate le note di rilascio, in inglese, della versione che stiamo aggiornando e verra scaricato lo strumento di aggiornamento di avanzamento di versione.</p>
<p>A questo punto manca poco per l&#8217;avanzamento e Ubuntu si prepara all&#8217;avanzamento di versione; vedremo questa finestra:</p>
<div id="attachment_117" class="wp-caption aligncenter" style="width: 418px"><img class="size-full wp-image-117" title="schermata-11" src="http://ilcristopagano.wordpress.com/files/2009/04/schermata-11.png" alt="preparazione all'avanzamento" width="408" height="308" /><p class="wp-caption-text">Ubuntu si prepara all&#39;avanzamento di versione.</p></div>
<p>A questo punto Intrepid ci chiede per l&#8217;ultima volta se vogliamo aggiornarlo con questa finestra:</p>
<div id="attachment_121" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-121" title="schermata-312" src="http://ilcristopagano.wordpress.com/files/2009/04/schermata-312.png" alt="Bye Bye Intrepid..." width="450" height="388" /><p class="wp-caption-text">Bye Bye Intrepid...</p></div>
<p>Ora dobbiamo solo attendere che Ubuntu scarichi, rimuova/installi/aggiorni tutti i pacchetti, pulisca il sistema da ciò che non serve, per fare ciò ci vuole un po di tempo a me c&#8217;è voluta un oretta ma tutto dipende anche dalla rete che avete io ho l&#8217;ADSL a 4Mb lo scaricamento dei nuovi pacchetti mi ha preso la maggior parte del tempo.</p>
<p>A questo punto Ubuntu vi chiederà di riavviare e di Intrepid resterà solo il ricordo&#8230; Benvenuto Jaunty!!!</p>
<p style="text-align:center;">
<div id="attachment_126" class="wp-caption aligncenter" style="width: 457px"><img class="size-large wp-image-126" title="desktop" src="http://ilcristopagano.wordpress.com/files/2009/04/desktop.png?w=1024" alt="Ecco come si presenta Ubuntu Jaunty Jacklope" width="447" height="279" /><p class="wp-caption-text">Ecco come si presenta Ubuntu Jaunty Jacklope</p></div>
<p>Devo dire che <strong>questa nuova release è molto performante</strong>, il sistema operativo dopo il boot pesa appena 300Mb di RAM e &#8220;mangia&#8221; solo il 10-15% della CPU (Intel Core 2 Duo P8400 @ 2,26Hz).</p>
<p><strong>I tempi di boot sono stati realmente ridotti</strong> e questo si nota anche senza cronometro da quando premo il tasto di avvio del PC a quando sono loggato passano appena 35&#8243; il boot infatti dura 20-25&#8243;.</p>
<p><strong>Un altro miglioramento sono i nuovi avvisi</strong> che appaiono in un rettangolo in alto a destra e ci avvisano se qualcuno si collega o ci scrive su msn, jabber, AIM, ecc&#8230; (solo se usiamo pidgin) se ci colleghiamo ad una rete, se cambia la canzone in riproduzione, ecc&#8230; ovviamente se non abbiamo come finestra attiva il programma in questione, anche perché sarebbe inutile sapere che qualcuno mi scrive quando ci sto chattando!!!</p>
<p>L&#8217;unico problema che ho riscontrato e a quanto pare non sono il solo è che se proviamo ad aggiornare Ubuntu dopo l&#8217;avanzamento Jaunty ci dice che per aggiornare 3 o 4 pacchetti dobbiamo eseguire un avanzamento parziale, se proviamo a farlo la finestra sparisce e al prossimo aggiornamento il problema ricompare; Superare questo problema è molto semplice a me è bastato leggere l&#8217;help (cosa che a quanto pare molti non fanno quando hanno un problema) di &#8220;apt-get&#8221;, visibile digitando in un terminale <em>apt-get -h</em>, il problema è che mancano alcune dipendenze per questo Jaunty non riesce ad aggiornare i pacchetti quindi è sufficiente correggere il sistema con le dipendenze mancanti, per fare ciò digitiamo in un terminale:</p>
<p><em>sudo apt-get install brasero gstreamer0.10-plugins-bad liblucene2-java -f</em></p>
<p>Ora il gestore di aggiornamenti non ci chiederà più di eseguire un avanzamento parziale.</p>
<p>Questo è tutto buon avanzamento per chi non lo avesse già fatto!!!</p>
<p><img src="///home/biagio/Immagini/Immagini/avanza9.04/Avanzamento9.041.png" alt="" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Pengalaman Install Ubuntu di Laptop Axioo]]></title>
<link>http://sukabiru.wordpress.com/2009/04/22/pengalaman-install-ubuntu-di-laptop-axioo/</link>
<pubDate>Wed, 22 Apr 2009 07:17:29 +0000</pubDate>
<dc:creator>sukabiru</dc:creator>
<guid>http://sukabiru.wordpress.com/2009/04/22/pengalaman-install-ubuntu-di-laptop-axioo/</guid>
<description><![CDATA[Sekedar mau share aja pengalaman gw install ubuntu di laptop axioo. Denger-denger sih laptop axioo m]]></description>
<content:encoded><![CDATA[Sekedar mau share aja pengalaman gw install ubuntu di laptop axioo. Denger-denger sih laptop axioo m]]></content:encoded>
</item>
<item>
<title><![CDATA[sudo get-apt install Linux Ubuntu]]></title>
<link>http://sobieszek.wordpress.com/2009/04/21/sudo-get-apt-install-linux-ubuntu/</link>
<pubDate>Mon, 20 Apr 2009 22:31:00 +0000</pubDate>
<dc:creator>sobieszek</dc:creator>
<guid>http://sobieszek.wordpress.com/2009/04/21/sudo-get-apt-install-linux-ubuntu/</guid>
<description><![CDATA[&#8230;czyli odważyłam się wreszcie zainstalować Ubuntu 8.10 (Intrepid Ibex). Początki jak początki,]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">&#8230;czyli odważyłam się wreszcie <strong>zainstalować Ubuntu 8.10</strong> (Intrepid Ibex).</p>
<p style="text-align:justify;"><strong>Początki jak początki</strong>, były trudne. Zapewne takie są dla każdego, który po wieloletnim użytkowaniu Windowsa przesiada się na Linuxa. Nu, ale jak się ma to coś do programowania, to szybko się przystosuje. Gorzej ze zwykłymi śmiertelnikami, których przedstawicielką bez wątpienia jestem.</p>
<p style="text-align:justify;"><strong>Grafika systemu</strong> jest ciekawa, <strong>efekty wizualne</strong> (ale niewiele ich jest) nie obciążają zbytnio karty graficznej, duże pole do manewru dają <strong>dwa paski</strong> zadań &#8211; jeden na dole, drugi na górze.</p>
<p style="text-align:center;"><img class="aligncenter" src="http://img3.imagebanana.com/img/u0je07ot/Pulpit" alt="Screen" width="442" height="332" /></p>
<p style="text-align:justify;">Niedługo po instalacji Linuxa przeżyłam horror, próbując<strong> podłączyć się do GG</strong>. Domyślnie zainstalowany w systemie Pidgin za nic nie chciał zalogować się do innego komunikatora niż GTalk, ściągniętej wtyczki do Tlena też nie przyjął. Gadu-Gadu oryginalne &#8211; wiadomo, na Linuxie nie zadziała, zresztą, kto chciałby korzystać z oryginalnego GG?<br />
Zupełnie zapomniałam wówczas o tym, że niedawno na Blipie informowano wszem i wobec o wprowadzeniu <strong>Tlena na Linuxa</strong>.<br />
Mam teraz już tego Tlena&#8230; <strong>Nie podobają mi się te emotikony</strong>, nie dość, że dziwaczne, to za wielkie. A wyłączyć się ich chyba nie da (przynajmniej takowej opcji znaleźć nie mogłam). Do tego, nie wiem czy u innych użytkowników występuje ten problem, ale u mnie od czasu do czasu Tlen <strong>lubi się zawiesić</strong>, zwłaszcza przy włączaniu, gdy mam wiadomości na dzień dobry&#8230;<br />
Nu ale do Tlena doinstalowałam <strong>Skype</strong> i tak jakoś daję sobie radę w dziedzinie komunikacji. Chociaż przyznam, że <strong> w Skypie przeszkadza mi brak paru funkcji</strong> (jak na przykład ustawienie, że przy podwójnym kliknięciu na kontakt nie dzwoni się do niego, a wysyła się wiadomość). A propos, z dzwonieniem to też u mnie coś, niestety, nie tak&#8230; Ale to już pewnie wina braku słuchawek u mnie.<br />
<strong>Klienta FTP</strong> szukam już drugi dzień i znaleźć jakoś nie mogę&#8230; Sugestie użytkowników Blipa nie pokrywają się z obecnością plików o rozszerzeniu .deb (linuxowy odpowiednik windowsowego .exe)&#8230; Cóż, jeszcze pokombinuję.<br />
Domyślną przeglądarką na Linuxie jest <strong>Mozilla Firefox</strong>. Sprawuje się nienajgorzej &#8211; przynajmniej <strong>internet działa</strong>.</p>
<p style="text-align:justify;">Generalnie w całej sytuacji bardzo mi pomogła <a href="http://czytelnia.ubuntu.pl/">Czytelnia Ubuntu</a>. Przydatne okazało się także <a href="http://www.forum.ubuntu.pl">forum</a> tegoż samego serwisu i doraźna pomoc użytkowników <a href="http://blip.pl">Blipa</a>. I, oczywiście, zasłużył się <a href="http://www.google.pl">Wujek Google</a>.<br />
Lecz niezbędna może się okazać także odrobina własnego wkładu i znajomości podstawowych zasad programowania. Nu i <strong>chęci, chęci!</strong> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Bez chęci daleko na tym systemie nie zajedziesz.</p>
<p style="text-align:justify;">Na razie jutro do szkoły (właściwie dzisiaj), potem pięć dni wolnego&#8230; I będzie czas na pastwienie się nad tym systemem:-). Może nawet jakieś miniFAQ dla początkujących skonstruuję.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Installare Ubuntu 8.10 virtualizzato sotto Mac OS Leopard]]></title>
<link>http://installarelinux.wordpress.com/2009/04/16/installare-ubuntu-810-virtualizzato-sotto-mac-os-leopard/</link>
<pubDate>Thu, 16 Apr 2009 14:50:47 +0000</pubDate>
<dc:creator>fabiofiorentino</dc:creator>
<guid>http://installarelinux.wordpress.com/2009/04/16/installare-ubuntu-810-virtualizzato-sotto-mac-os-leopard/</guid>
<description><![CDATA[Questo è sicuramente il metodo più semplice di installare un sistema operativo linux in un Mac. Non ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Questo è sicuramente il metodo più semplice di installare un sistema operativo <strong>linux</strong> in un <strong>Mac</strong>. Non sono un amante del dualboot di windows e del bootcamp per mac, per me sono metodi troppo rischiosi e a me stanno troppo a cuore i miei dati <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Approfitto di <strong>Ubuntu 8.10 Intrepid Ibex</strong> uscita ad ottobre 2008 per provarla e fare un nuovo articolo. Tra pochi giorni uscirà la nuova versione, così proveremo insieme a vedere se l&#8217;aggiornamento funziona anche su sistemi virtualizzati.</p>
<p>Purtroppo non ho trovato applicazioni free od open source semplici da utilizzare e&#8230; sembra bizzarro, ma il metodo più semplice per installare un S.O. open source è quello di utilizzare un virtualizzatore a pagamento! Parlo dell&#8217;ottimo <strong>Vmware Fusion</strong> per Mac OSX <a title="Link al sito ufficiale" href="http://www.vmware.com/products/fusion/" target="_blank">link</a></p>
<p>A parte questo inconveniente (Vmware è ottimo anche per installaere Windows XP o Vista su Mac Intel, quindi merita ampiamente il prezzo pagato, su un Mac abbastanza recente i sistemi operativi &#8220;volano&#8221; anche se virtualizzati, provare per credere) la procedura è molto semplice ed andrò ad analizzarla passo passo. Oggi Vmware Fuson costa € 67,35</p>
<p>Installato <strong>VMware Fusion</strong> e scaricata la nuova versione di <strong>Ubuntu Intrepid Ibex </strong>[ <a title="link al torrent" href="http://wiki.ubuntu-it.org/Installazione/IntrepidIbexTorrent" target="_blank">link al torrent</a> e <a title="link pagina di download" href="http://www.ubuntu-it.org/index.php?page=Ottenere_Ubuntu" target="_blank">link al sito ufficiale italiano</a> ] possiamo partire con l&#8217;installazione.</p>
<p>Apriamo <strong>VMware Fusion</strong> ed andiamo su <strong>Archivio</strong> &#62; <strong>Nuova&#8230;</strong></p>
<p><img class="alignnone size-full wp-image-43" title="vmware1" src="http://installarelinux.wordpress.com/files/2009/04/vmware1.gif" alt="vmware1" width="392" height="80" /></p>
<p>Andiamo ora su <strong>Continua senza disco</strong>, ovviamente presumo che abbiamo tutti l&#8217;iso di Ubuntu.</p>
<p><img class="alignnone size-full wp-image-45" title="wmware2" src="http://installarelinux.wordpress.com/files/2009/04/wmware2.gif" alt="wmware2" width="504" height="375" /></p>
<p>Selezioniamo la iso da questo pannello, dopo aver cliccato su <strong>Nessuno</strong></p>
<p><img class="alignnone size-full wp-image-44" title="wmware3" src="http://installarelinux.wordpress.com/files/2009/04/wmware3.gif" alt="wmware3" width="310" height="67" /></p>
<p>Se tutto è andato ok avremo la seguente schermata, clicchiamo su <strong>Continua</strong></p>
<p><img class="alignnone size-full wp-image-46" title="wmware4" src="http://installarelinux.wordpress.com/files/2009/04/wmware4.gif" alt="wmware4" width="504" height="375" /></p>
<p>Non consiglio di cambiare questi parametri, andiamo su <strong>Continua</strong>&#8230;</p>
<p><img class="alignnone size-full wp-image-47" title="wmware5" src="http://installarelinux.wordpress.com/files/2009/04/wmware5.gif" alt="wmware5" width="504" height="375" /></p>
<p>&#8230; poi <strong>Fine</strong>.</p>
<p><img class="alignnone size-full wp-image-48" title="wmware6" src="http://installarelinux.wordpress.com/files/2009/04/wmware6.gif" alt="wmware6" width="504" height="375" /></p>
<p>Diamo il nome alla macchina&#8230;</p>
<p><img class="alignnone size-full wp-image-49" title="wmware7" src="http://installarelinux.wordpress.com/files/2009/04/wmware7.gif" alt="wmware7" width="423" height="140" /></p>
<p>&#8230; ed il gioco è fatto <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Qui di seguito elenco le classiche schermate di installazione, semmai aveste qualche dubbio, ma la procedura è la solita&#8230; Dopo aver selezionato la <strong>lingua</strong>, ovviamente dovete andare su <strong>Installa Ubuntu</strong>, l&#8217;opzione <em>Prova Ubuntu senza modificare il computer</em>, farebbe partire la live, invece noi dobbiamo installare semplicemente il S.O. come se stessimo su un&#8217;altro computer.</p>
<p><img class="alignnone size-full wp-image-50" title="inst1" src="http://installarelinux.wordpress.com/files/2009/04/inst1.gif" alt="inst1" width="320" height="290" /></p>
<p><img class="alignnone size-full wp-image-51" title="inst2" src="http://installarelinux.wordpress.com/files/2009/04/inst2.gif" alt="inst2" width="318" height="239" /></p>
<p><img class="alignnone size-full wp-image-52" title="inst3" src="http://installarelinux.wordpress.com/files/2009/04/inst3.gif" alt="inst3" width="401" height="351" /></p>
<p><img class="alignnone size-full wp-image-52" title="inst4" src="http://installarelinux.wordpress.com/files/2009/04/inst4.gif" alt="inst4" /></p>
<p><img class="alignnone size-full wp-image-52" title="inst5" src="http://installarelinux.wordpress.com/files/2009/04/inst5.gif" alt="inst5" /></p>
<p><img class="alignnone size-full wp-image-52" title="inst6" src="http://installarelinux.wordpress.com/files/2009/04/inst6.gif" alt="inst6" /></p>
<p><img class="alignnone size-full wp-image-52" title="inst7" src="http://installarelinux.wordpress.com/files/2009/04/inst7.gif" alt="inst7" /></p>
<p>Dopo il riavvio eccolo qui, pronto per essere usato.</p>
<p><img class="alignnone size-full wp-image-57" title="interpid-ibex" src="http://installarelinux.wordpress.com/files/2009/04/interpid-ibex.gif" alt="interpid-ibex" width="400" height="349" /></p>
<p>Consiglio di cliccare su <strong>Cattura snapshot</strong>, renderà possibile in seguito ripristinare il sistema in caso di errori gravi. Sarà possibile ripristinare tutto dal tasto <strong>Rollback</strong> dove troveremo tutti gli snapshot salvati.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Linux: Bind (DNS), Apache, DNS Cache, DDNS e integração com Active Directory]]></title>
<link>http://andreferraro.wordpress.com/2009/04/13/linux-bind-dns-apache-ddns-active-directory-ubuntu/</link>
<pubDate>Mon, 13 Apr 2009 04:04:46 +0000</pubDate>
<dc:creator>André Ferraro</dc:creator>
<guid>http://andreferraro.wordpress.com/2009/04/13/linux-bind-dns-apache-ddns-active-directory-ubuntu/</guid>
<description><![CDATA[Linux: Ubuntu, Bind, DNS, DDNS, DNS Cache e Active Directory O desafio vai aumentando a cada dia e c]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div id="attachment_176" class="wp-caption alignleft" style="width: 225px"><img class="size-full wp-image-176" title="Linux: Ubuntu, Bind, DNS, DDNS, DNS Cache e Active Directory" src="http://andreferraro.wordpress.com/files/2009/04/ubuntu-bind-dns-ad.jpg" alt="Linux: Ubuntu, Bind, DNS, DDNS, DNS Cache e Active Directory" width="215" height="300" /><p class="wp-caption-text">Linux: Ubuntu, Bind, DNS, DDNS, DNS Cache e Active Directory</p></div>
<p>O desafio vai aumentando a cada dia e como não conseguimos fugir ou baixar a cabeça frente aos desafios, então vou encarar mais um.</p>
<blockquote><p>&#8220;Os desafios podem ser degraus numa escada, ou pedras no caminho. Isso depende de como você os encara.&#8221; (autor desconhecido)</p></blockquote>
<p>Basicamente o desafio era configurar o <a title="Wikipedia: Bind" href="http://pt.wikipedia.org/wiki/Bind" target="_blank">Bind9</a> como servidor de <a title="Wikipedia: Domain Name System" href="http://pt.wikipedia.org/wiki/Domain_Name_System" target="_blank">DNS</a> no <strong>Linux Ubuntu Intrepid Ibex (Ubuntu 8.10)</strong>, porém isso é fácil, o desafio vai além e necessita que o DNS ainda funcione como <strong>servidor de cache</strong> de DNS (<em>dns caching server</em>), responda por subdomínios de desenvolvimento e ferramentas internas, e como se não bastasse, ainda precisava ser um <em>servidor dinâmico de nomes</em> (<strong>DDNS</strong>), pois o <a title="Wikipedia: Active Directory" href="http://pt.wikipedia.org/wiki/Active_Directory" target="_blank">Active Directory</a> deveria utilizá-lo para nomeação de servidores e recursos.<!--more--><br />
Antes de começarmos colocar a mão na massa, é legal dar uma <strong>estudada</strong> em o que é DNS, o servidor Bind e o <em>Active Directory</em> do Windows 2003 Server. Para isso acesse estes sites abaixo:</p>
<ul>
<li><a title="DNS, BIND, DHCP, LDAP and Directory Services" href="http://www.bind9.net/" target="_blank">Bind 9</a></li>
<li><a title="Windows Server 2003 Active Directory" href="http://www.microsoft.com/windowsserver2003/technologies/directory/activedirectory/default.mspx" target="_blank">Active Directory</a></li>
</ul>
<p>Supondo que você pelo menos &#8220;passou o olho&#8221; nos sites acima, então entendeu que a integração entre o Linux e Windows realmente tira o sono de qualquer administrador de rede, mas não tem como fugir dessa situação, pois cada dia é mais difícil termos ambientes que não sejam híbridos com servidores operando com Linux, Windows, IBM-UX, Solaris, entre outros.</p>
<p>O objetivo desse post (quase um guia) pode ser dividido em quatro partes:</p>
<p>Parte 0</p>
<ul>
<li>Introdução;</li>
<li>O ambiente / topologia;</li>
<li>Configuração básica.</li>
</ul>
<p><a title=" Linux: Instalação do Bind, cache de DNS, logging e BindGraph no Ubuntu Intrepid Ibex (Ubuntu 8.10)" href="http://andreferraro.wordpress.com/2009/04/15/linux-instalacao-do-bind-cache-de-dns-logging-e-bindgraph-no-ubuntu-intrepid-ibex-ubuntu-810/" target="_self">Parte 1</a></p>
<ul>
<li>Instalando o Bind;</li>
<li>Configurando o cache de DNS;</li>
<li>Configurando o log do Bind;</li>
<li>Instalando e configurando o BindGraph.</li>
</ul>
<p>Parte 2</p>
<ul>
<li>Adicionando um domínio;</li>
<li>Adicionando um sub-domínio;</li>
<li>Configurando o domínio para responder no Apache 2.</li>
</ul>
<p>Parte 3</p>
<ul>
<li>Habilitando o DDNS no Linux;</li>
<li>Configurando o Active Directory;</li>
<li>Testando as configurações.</li>
</ul>
<h3>Introdução</h3>
<p>Em uma rede local o DNS pode ter duas funcionalidades básicas, uma é facilitar o acesso às máquinas, pois você não precisará decorar IPs e sim poderá acessá-las por nomes e outra função é fazer &#8220;cache&#8221; para que as consultas ao DNS sejam mais rápidas e economizem tráfego com seu provedor. Outra necessidade é quando temos um serviço de diretório.</p>
<p>Vamos imaginar que na empresa exista a necessidade de com apenas um login (nome de úsuario) e senha, os usuários possam acessar pastas, ler e-mails, acessar internet, logar-se no controlador de versão de software, acessar sistemas internos, etc. Então é necessário um serviço de diretório. No meu caso utilizo o Windows 2003 Server com o Active Directory, mas poderia ser utilizado o LDAP como alternativa. Para que o Active Directory funcione é necessário um servidor DNS, que como comentei acima, é fundamental para que o AD (Active Directory) nomeie máquinas, servidores e recursos. Sendo assim, precisamos que o Bind esteja configurado para possibilitar integração e assim receba entradas a partir do AD.</p>
<h3>O ambiente</h3>
<p>A rede de exemplo possui cinco máquinas, sendo quatro servidores e uma máquina cliente utilizando Windows XP:</p>
<p>Onde <em>zenon.bugre.local</em> é o servidor DNS com Bind, <em>bozo.bugre.local</em> é o gateway e proxy, <em>careca.bugre.local</em> é o servidor Apache 2, <em>amoroso.bugre.local</em> é o Active Directory e <em>maq01.bugre.local</em> é o cliente Windows XP.</p>
<div id="attachment_180" class="wp-caption aligncenter" style="width: 386px"><img class="size-full wp-image-180" title="Rede Local - Servidores" src="http://andreferraro.wordpress.com/files/2009/04/ubuntu-bind-dns-ad-rede.jpg" alt="Rede Local - Servidores" width="376" height="444" /><p class="wp-caption-text">Rede Local - Servidores</p></div>
<h3>Configuração básica</h3>
<p>O primeiro servidor que vamos configurar é o <em>zenon</em>, nele vamos fixar o IP, configurar o arquivo <em>/etc/hosts</em>, atualizar a lista de repositórios e por último atualizar o sistema operacional.</p>
<h4>Fixando o IP</h4>
<p>Vamos editar o arquivo <em>/etc/network/interfaces</em> e configurar nossa interface de rede. No meu caso estou utilizando <em>eth1</em>.</p>
<p><code># vi /etc/network/interfaces</code></p>
<p>Deixe suas configurações como abaixo, assumindo que o servidor <em>zenon</em> terá ip <em>192.168.0.2</em>.</p>
<p><code>auto eth1</code><br />
<code>iface eth1 inet static</code><br />
<code>address 192.168.0.2</code><br />
<code>netmask 255.255.255.0</code><br />
<code>gateway 192.168.0.1</code></p>
<h4>Configurando o arquivo <em>hosts</em></h4>
<p>Edite o arquivo <em>/etc/hosts</em> e deixe-o como abaixo:</p>
<p><code># vi /etc/hosts</code></p>
<p><code>127.0.0.1       localhost</code><br />
<code>127.0.1.1       zenon.bugre.local   zenon</code><br />
<code>192.168.0.2		zenon.bugre.local   zenon</code></p>
<p>Agora vamos reconfigurar e reiniciar as configurações de host.</p>
<p><code># echo zenon.bugre.local &#62; /etc/hostname</code><br />
<code># /etc/init.d/hostname.sh start</code></p>
<h4>Atualizando o sistema operacional</h4>
<p>Para atualizar o sistema operacional, antes é necessário atualizar a lista de repositórios. Para isso digite:</p>
<p><code># apt-get update</code></p>
<p>E atualize o sistema com o comando abaixo:</p>
<p><code># apt-get upgrade</code></p>
<p>Pronto. Agora o seu servidor Linux Ubuntu está pronto para iniciarmos as configurações, mas como este <em>post</em> já está bem grande, então no próximo faremos a parte 1.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Personalizar la consola de Linux. (.bashrc )]]></title>
<link>http://jfibergran.wordpress.com/2009/04/10/personalizar-la-consola-de-linux-bashrc/</link>
<pubDate>Fri, 10 Apr 2009 11:17:57 +0000</pubDate>
<dc:creator>FiBER</dc:creator>
<guid>http://jfibergran.wordpress.com/2009/04/10/personalizar-la-consola-de-linux-bashrc/</guid>
<description><![CDATA[En ocasiones puede aparecer un bash (consola, terminal, &#8230;) sin resaltado de sintaxis, sin un c]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>En ocasiones puede aparecer un bash (consola, terminal, &#8230;) sin resaltado de sintaxis, sin un color para cada tipo de archivo, o que no responde del todo bien al tabulador, es decir que al pulsar el tabulador no se nos muestran las posibilidades. Usando Ubuntu, me paso en una ocasió porque tenía una instalación limpia de Ubuntu, donde funcionaba muy bien mi bash, y al que le instalé<em> kde-base</em>, y más tarde <em>kubuntu-desktop</em>, esto me dejaba sin colores y sin tabulador el bash, no recuerdo porque ni como lo solucioné.</p>
<p>El caso es que ahora con Arch, me han dado ganas de arreglar un poquito mi bash (consola), así que voy a atreverme con una &#8220;<em>Guía de personalización de bash</em>&#8220;, aunque nada que ver con Arch, esta guía sirve para cualquier bash, para cualquier linux.</p>
<p>Existe un archivo en la carpeta personal, por defecto <em>/home/usuario</em>, cuyo nombre es <em>.bashrc</em> y que es el que contiene la configuración de nuestra consola, terminal, konsole, bash, &#8230;</p>
<p>Lo primero es editar el archivo <em>/home/</em>usuario<em>/.bashrc</em>:</p>
<blockquote><p><code>cd<br />
kate .bashrc</code></p></blockquote>
<p>Y ahora a ir añadiéndole opciones:</p>
<p><span style="text-decoration:underline;"><strong>Variables</strong></span></p>
<p><em>PS1</em> es una variable que contiene el <a href="http://es.wikipedia.org/wiki/Prompt"><em>prompt</em></a>, lo que aprece a la espera de que escribamos, este es el que suele venir por defecto:</p>
<blockquote><p><code>PS1='[\u@\h \W]\$ '</code></p></blockquote>
<p>Podemos poner un <em>prompt</em> colorido con alguna de estas líneas:</p>
<blockquote><p><code>PS1='\[\e[1;32m\][\u@\h \W]\$\[\e[0m\] '<br />
PS1='\[\e[0;32m\]\u\[\e[m\] \[\e[1;34m\]\w\[\e[m\] \[\e[1;32m\]\$ \[\e[m\]\[\e[1;37m\] '</code></p></blockquote>
<p>También podemos editar el <em>.bashrc</em> de root y ponerle una de estas dos:</p>
<blockquote><p><code>PS1='\[\e[1;31m\][\u@\h \W]\$\[\e[0m\] '<br />
PS1='\[\e[0;31m\]\u\[\e[m\] \[\e[1;34m\]\w\[\e[m\] \[\e[1;31m\]\$ \[\e[m\]\[\e[1;32m\] '</code></p></blockquote>
<p>Bash permite nombrar hasta 3 prompts, llamandose <em>PS1, PS2, PS3</em>.</p>
<p><span style="text-decoration:underline;"><strong>Alias</strong></span></p>
<p>Podemos poner multitud de alias, entre los que se destacan:</p>
<p>Alias para descuidos, que avisen a la hora de hacer ciertas cosas:</p>
<blockquote><p><code>alias rm='rm -i'<br />
alias mv='mv -i'</code></p></blockquote>
<p>Alias para permitir algunos fallos ortograficos:</p>
<blockquote><p><code>alias unmount='umount'<br />
alias pakman='pacman'</code></p></blockquote>
<p>Alias para ahorrar tiempo:</p>
<p><em>[Debian y derivados (Ubuntu, Linux Mint, Guadalinex, ... )</em>]</p>
<blockquote><p><code>alias aptsearch='sudo aptitude search '<br />
alias aptinstall='sudo aptitude install '<br />
alias aptupdate='sudo aptitude update &#38;&#38; sudo aptitude upgrade'</code></p></blockquote>
<p>[<em>Arch Linux]</em></p>
<blockquote><p><code>alias pacsearch='sudo pacman -Ss'<br />
alias pacinstall='sudo pacman -Sy'<br />
alias pacupdate='sudo pacman -Syu'</code></p></blockquote>
<p>También, mediante alias, se pueden colorizar muchas cosas, en la mayoría de distros ya viene por defecto. De todos modos aquí hay algunas lineas que servirán para esto:</p>
<p>Colorizar la salida de ls</p>
<blockquote><p><code>eval "`dircolors -b`"  //para que cargue los colores de cada tipo de archivo<br />
</code></p></blockquote>
<blockquote><p><code>alias ls='ls --color=auto'<br />
alias dir='dir --color=auto'</code></p></blockquote>
<p>Colorizar la salida de egrep y derivados:</p>
<blockquote><p><code>alias grep='grep --color=auto'<br />
alias fgrep='fgrep --color=auto'<br />
alias egrep='egrep --color=auto'</code></p></blockquote>
<p><strong><span style="text-decoration:underline;">Funciones</span></strong></p>
<p>También se pueden añadir al archivo scritps, aquí pondré los que me vayan siendo útiles:</p>
<p><em>[Solo Arch]</em> Script para ver la salida de pacman con colores:</p>
<blockquote><p><code>alias pacs="pacsearch"<br />
pacsearch () {<br />
echo -e "$(pacman -Ss $@ &#124; sed \<br />
-e 's#current/.*#\33[1;31m&#38;\33[0;37m#g' \<br />
-e 's#extra/.*#\33[0;32m&#38;\33[0;37m#g' \<br />
-e 's#community/.*#\33[1;35m&#38;\33[0;37m#g' \<br />
-e 's#^.*/.* [0-9].*#\33[0;36m&#38;\33[0;37m#g' )"<br />
}</code></p></blockquote>
<p>// Esto lo puedes hacer de forma alternativa como se muestra en este <a href="http://www.archlinux.com.ar/wiki/index.php?title=Pacman_-_Colorear_la_salida">enlace</a>.</p>
<p><em>[Solo Arch]</em> Autocompletado</p>
<p>Primero instalamos este paquete:</p>
<blockquote><p><code>pacman -S bash-completion</code></p></blockquote>
<p>Y luego añadimos en <em>.bashrc</em></p>
<blockquote><p><code>if [ -f /etc/bash_completion ]; then<br />
. /etc/bash_completion<br />
fi</code></p></blockquote>
<p>Para que complete después de sudo:</p>
<blockquote><p><code>complete -cf sudo<br />
</code></p></blockquote>
<p><em>[Todos]</em> Función que lista el contenido de un directorio cada vez que hacemos cd __ :</p>
<blockquote><p><code>cd() {<br />
if [-n "$1"]; then<br />
builtin cd "$@" &#38;&#38; ls<br />
else<br />
builtin cd ~ &#38;&#38; ls<br />
fi<br />
}</code></p></blockquote>
<p>Esta guía la he escrito con la ayuda de muchos enlaces, algunos de los más importantes os dejo aquí:</p>
<p><a href="http://wiki.archlinux.org/index.php/Bashrc_(Espa%C3%B1ol)">Configurar Bashrc</a></p>
<p><a href="http://wiki.archlinux.org/index.php/Bashrc_(Espa%C3%B1ol)"> </a><a href="http://wiki.archlinux.org/index.php/Color_Bash_Prompt">Color Bash Prompt</a></p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
