<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
	<channel>
		<title>MUSER</title>
		<link>http://muser.brokenbox.com.ar/</link>
		<description><![CDATA[Corrigiendo el Futuro]]></description>
		<copyright>Copyright 2006, Diego Ignacio Gabriel Najar Carrascal</copyright>
		<managingEditor>dieguito01@gmail.com</managingEditor>
		<language>en-us</language>

		<generator>FlatPress</generator>
								<item>
		
			<title>Gentoo 2008.0 Final</title>
			<link>http://muser.brokenbox.com.ar/index.php?entry=entry080707-231027</link>
			<description><![CDATA[	<p>The 2008.0 final release is out! Code-named &#8220;It&#8217;s got what plants crave,&#8221; this release contains numerous new features including an updated installer, improved hardware support, a complete rework of profiles, and a move to Xfce instead of GNOME on the LiveCD. LiveDVDs are not available for x86 or amd64, although they may become available in the future. The 2008.0 release also includes updated versions of many packages already available in your ebuild tree.</p>
	<p>http://www.gentoo.org</p>
	<p>No me queda claro el nombre clave que pusieron &#8220;It&#8217;s got what plants crave&#8221; pero bueno, finalmente la version 2008.0</p>
	<p>Saludos. Diego.
</p>
]]></description>
			 <category>Gentoo Linux </category>			<guid isPermaLink="true">http://muser.brokenbox.com.ar/index.php?entry=entry080707-231027</guid>

			<author>Diego Ignacio Gabriel Najar Carrascal dieguito01@gmail.com</author>
			<pubDate>Mon, 07 Jul 2008 23:10:27 -0300</pubDate>
			<comments>http://muser.brokenbox.com.ar/comments.php?entry=entry080707-231027</comments>
			
			</item>
						<item>
		
			<title>Screenshot (System Monitor)</title>
			<link>http://muser.brokenbox.com.ar/index.php?entry=entry080623-024646</link>
			<description><![CDATA[	<p>Un pequeño screenshot del nuevo micro que tengo intel Quad 6600; Las pruebas sobre Gentoo configurado para lanzar 4 hilos de compilación. Hice algunas pruebas con la compilación del kernel con diferentes hilos.</p>
	<p>Con 4 hilos</p>
	<blockquote><p>
localhost linux # make clean<br />
localhost linux # time make -j4</p>
	<p>real	1m13.350s<br />
user	3m45.388s<br />
sys	0m31.306s
</p></blockquote>
	<p>Con 5 hilos</p>
	<blockquote><p>
localhost linux # make clean<br />
localhost linux # time make -j5</p>
	<p>real	1m10.788s<br />
user	3m46.746s<br />
sys	0m32.299s
</p></blockquote>
	<p>Con 8 hilos (Pero se me muere la PC)</p>
	<blockquote><p>
localhost linux # make clean<br />
localhost linux # time make -j8</p>
	<p>real	1m8.799s<br />
user	3m49.103s<br />
sys	0m32.376s
</p></blockquote>
	<p>Screenshoot: http://img211.imageshack.us/my.php?image=screenshottc2.png
</p>
]]></description>
			 <category>Gentoo Linux </category>			<guid isPermaLink="true">http://muser.brokenbox.com.ar/index.php?entry=entry080623-024646</guid>

			<author>Diego Ignacio Gabriel Najar Carrascal dieguito01@gmail.com</author>
			<pubDate>Mon, 23 Jun 2008 02:46:46 -0300</pubDate>
			<comments>http://muser.brokenbox.com.ar/comments.php?entry=entry080623-024646</comments>
			
			</item>
						<item>
		
			<title>Molesta ventana de Gnome si se inicia con root</title>
			<link>http://muser.brokenbox.com.ar/index.php?entry=entry080623-021646</link>
			<description><![CDATA[	<p>Esto no se debe hacer y ni siquiera se debe ingresar a un entorno X con permisos de super usuario por el tema de la seguridad en nuestro sistema! pero bueno me molestaba al entrar al entorno Gnome como usuario root y que me aparezca la ventanita diciendo &#8220;Running a session as a privileged user should be avoided for security reasons. If possible, you should log in as a normal user.&#8221; asi que busque y la encontre en el codigo.</p>
	<p>Al iniciar Gnome se llama a gnome-session, por lo tanto:</p>
	<p>1- Bajamos el codigo de gnome-session</p>
	<pre>
localhost&nbsp;~&nbsp;#&nbsp;emerge&nbsp;-f&nbsp;gnome-session
</pre>
	<p>2- Nos situamos en el directorio donde esta almacenado el ebuild del gnome-session y lo descomprimimos</p>
	<pre>
localhost&nbsp;~&nbsp;#&nbsp;cd&nbsp;/usr/portage/gnome-base/gnome-session/
localhost&nbsp;~&nbsp;#&nbsp;ebuild&nbsp;gnome-session-2.20.3.ebuild&nbsp;unpack
</pre>
	<p>3- Luego editamos el archivo main.c que se encuentra en</p>
	<pre>
localhost&nbsp;~&nbsp;#&nbsp;nano&nbsp;/var/tmp/portage/gnome-base/gnome-session-2.20.3/work/gnome-session-2.20.3/gnome-session/main.c&nbsp;
</pre>
	<p>4- Buscamos las siguientes lineas</p>
	<blockquote><p>
gsm_check_for_root (void)<br />
{<br />
  GtkWidget *dlg;<br />
  gint       response;</p>
	<p>  if (geteuid () != 0)<br />
    return FALSE;</p>
	<p>dlg = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL, GTK_MESSAGE_WARNING,<br />
                                GTK_BUTTONS_NONE,<br />
                                _(&#8221;This session is running as a privileged user&#8221;));<br />
  gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dlg),<br />
                                            _(&#8221;Running a session as a privileged user should be avoided for security reasons. If possible, you should log in as a normal user.&#8221;));<br />
&#8230;&#8230;&#8230;&#8230;.
</p></blockquote>
	<p>Como pueden ver es una funcion que checkea si el usuario que esta ingresando a Gnome tiene privilegios de super usuario</p>
	<p>Por lo tanto eliminando todas las lineas hasta el cierre de la funcion y dejamos el return FALSE; Quedando de la siguiente forma.</p>
	<blockquote><p>
gsm_check_for_root (void)<br />
{<br />
    return FALSE;<br />
}
</p></blockquote>
	<p>5- Ahora solo falta volver a crear el ebuild y emerger el paquete</p>
	<pre>
localhost&nbsp;~&nbsp;#&nbsp;ebuild&nbsp;gnome-session-2.20.3.ebuild&nbsp;merge
</pre>
]]></description>
			 <category>Gnome </category>			<guid isPermaLink="true">http://muser.brokenbox.com.ar/index.php?entry=entry080623-021646</guid>

			<author>Diego Ignacio Gabriel Najar Carrascal dieguito01@gmail.com</author>
			<pubDate>Mon, 23 Jun 2008 02:16:46 -0300</pubDate>
			<comments>http://muser.brokenbox.com.ar/comments.php?entry=entry080623-021646</comments>
			
			</item>
						<item>
		
			<title>Porque el logo de PHP es un elefante</title>
			<link>http://muser.brokenbox.com.ar/index.php?entry=entry080610-214433</link>
			<description><![CDATA[	<p>Curioseando por la web encontré esto, la explicación de porque el logo de PHP es un elefante.</p>
	<p><img src="http://muser.brokenbox.com.ar/fp-content/images/elephant.png" alt="elephant.png" title="elephant.png"  class="center" width="400" height="91" />
</p>
]]></description>
			 <category>General </category>			<guid isPermaLink="true">http://muser.brokenbox.com.ar/index.php?entry=entry080610-214433</guid>

			<author>Diego Ignacio Gabriel Najar Carrascal dieguito01@gmail.com</author>
			<pubDate>Tue, 10 Jun 2008 21:44:33 -0300</pubDate>
			<comments>http://muser.brokenbox.com.ar/comments.php?entry=entry080610-214433</comments>
			
			</item>
						<item>
		
			<title>Plugin mejorado para Pidgin y la red del MSN</title>
			<link>http://muser.brokenbox.com.ar/index.php?entry=entry080325-124757</link>
			<description><![CDATA[	<p>Con este plugin agregamos mejor soporte para la red del MSN. Entre las mejoras se destacan, hablar offline con otros usuarios, recibir/enviar mensajes cuando otro usuario esta desconectado, lectura del segundo nick de los usuarios y además modificar el nuestro.</p>
	<p>Paso a detallar los pasos para instalar este plugin en Gentoo Linux, pero se puede hacer tranquilamente para cualquier otra distribución siempre y cuando se bajen el código fuente.</p>
	<p>1- Bajamos el source del pidgin</p>
	<pre>
localhost&nbsp;~&nbsp;#&nbsp;emerge&nbsp;-f&nbsp;pidgin
</pre>
	<p>2- Nos dirigimos donde esta el ebuild del pidgin y descomprimimos el ebuild</p>
	<pre>
localhost&nbsp;~&nbsp;#&nbsp;cd&nbsp;/usr/portage/net-im/pidgin/
localhost&nbsp;pidgin&nbsp;#&nbsp;ebuild&nbsp;pidgin-2.4.0.ebuild&nbsp;unpack
</pre>
	<p>3- Modificamos el archivo &#8220;configure&#8221; con algun editor de texto en mi caso &#8220;nano&#8221;</p>
	<pre>
localhost&nbsp;pidgin&nbsp;#&nbsp;nano&nbsp;/var/tmp/portage/net-im/pidgin-2.4.0/work/pidgin-2.4.0/configure
</pre>
	<p>4- Buscamos la linea &#8220;enable_msnp14=no&#8221; y la cambiamos por &#8220;enable_msnp14=yes&#8221;</p>
	<p>5- Luego creamos nuevamente el ebuild, compilamos, y reiniciamos nuestro pidgin y ya tiene un plugin mas completo para el MSN.</p>
	<pre>
localhost&nbsp;pidgin&nbsp;#&nbsp;ebuild&nbsp;pidgin-2.4.0.ebuild&nbsp;merge
</pre>
	<p><em><strong>Fuente:</strong></em> http://forums.gentoo.org/viewtopic-t-677000-start-0-postdays-0-postorder-asc-highlight-.html</p>
]]></description>
			 <category>Gentoo Linux </category>			<guid isPermaLink="true">http://muser.brokenbox.com.ar/index.php?entry=entry080325-124757</guid>

			<author>Diego Ignacio Gabriel Najar Carrascal dieguito01@gmail.com</author>
			<pubDate>Tue, 25 Mar 2008 12:47:57 -0300</pubDate>
			<comments>http://muser.brokenbox.com.ar/comments.php?entry=entry080325-124757</comments>
			
			</item>
					
				
	</channel>
</rss>