<?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>arch-linux &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/arch-linux/</link>
	<description>Feed of posts on WordPress.com tagged "arch-linux"</description>
	<pubDate>Sun, 19 Jul 2009 15:04:12 +0000</pubDate>

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

<item>
<title><![CDATA[Archero! optimiza pacman]]></title>
<link>http://msdarkici.wordpress.com/2009/07/18/archero-optimiza-pacman/</link>
<pubDate>Sat, 18 Jul 2009 20:36:06 +0000</pubDate>
<dc:creator>msdark</dc:creator>
<guid>http://msdarkici.wordpress.com/2009/07/18/archero-optimiza-pacman/</guid>
<description><![CDATA[Pacman, es el poderoso gestor de paquetes que utiliza ArchLinux.. y hoy nevegando por los foros de a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Pacman, es el poderoso gestor de paquetes que utiliza ArchLinux.. y hoy nevegando por los foros de archlinux.org me encontre con un script para optimizar la base de datos de pacman.</p>
<p>Ya existe un &#8220;optimizador&#8221; oficial, el script pacman-optimize, pero este script lo supera bastante.</p>
<p>Puedes ver el post oficial <a href="http://bbs.archlinux.org/viewtopic.php?id=20385">aqui</a>.<br />
Y utilizar el script:<br />
<code>#!/bin/bash<br />
#<br />
#   pacman-cage<br />
#<br />
#   Copyright (c) 2002-2006 by Andrew Rose<br />
#   I used Judds pacman-optimise as a framework.<br />
#<br />
#   This program is free software; you can redistribute it and/or modify<br />
#   it under the terms of the GNU General Public License as published by<br />
#   the Free Software Foundation; either version 2 of the License, or<br />
#   (at your option) any later version.<br />
#<br />
#   This program is distributed in the hope that it will be useful,<br />
#   but WITHOUT ANY WARRANTY; without even the implied warranty of<br />
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the<br />
#   GNU General Public License for more details.<br />
#<br />
#   You should have received a copy of the GNU General Public License<br />
#   along with this program; if not, write to the Free Software<br />
#   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,<br />
#   USA.<br />
#</p>
<p>myver='2.9.8'<br />
dbroot="/var/lib/pacman"<br />
pacmandb="/var/lib/pacman.db"</p>
<p>usage() {<br />
        echo "pacman-cage $myver"<br />
        echo "usage: $0 [pacman_db_root]"<br />
        echo<br />
        echo "pacman-cage creates a loopbacked filesystem in a contigious file."<br />
        echo "This will give better response times when using pacman"<br />
        echo<br />
}</p>
<p>die() {<br />
        echo "pacman-cage: $*" &#62;&#38;2<br />
        exit 1<br />
}</p>
<p>die_r() {<br />
        rm -f /tmp/pacman.lck<br />
        die $*<br />
}</p>
<p>if [ "$1" != "" ]; then<br />
        if [ "$1" = "-h" -o "$1" = "--help" ]; then<br />
                usage<br />
                exit 0<br />
        fi<br />
        dbroot=$1<br />
fi</p>
<p>if [ "`id -u`" != 0 ]; then<br />
        die "You must be root to cage the database"<br />
fi</p>
<p># make sure pacman isn't running<br />
if [ -f /tmp/pacman.lck ]; then<br />
        die "Pacman lockfile was found.  Cannot run while pacman is running."<br />
fi<br />
# make sure pacman.db hasnt already been made<br />
if [ -f $pacmandb ]; then<br />
        die "$pacmandb already exists!."<br />
fi</p>
<p>if [ ! -d $dbroot ]; then<br />
        die "$dbroot does not exist or is not a directory"<br />
fi</p>
<p># don't let pacman run while we do this<br />
touch /tmp/pacman.lck</p>
<p># step 1: sum the old db<br />
echo "==&#62; md5sum'ing the old database..."<br />
find $dbroot -type f &#124; sort &#124; xargs md5sum &#62;/tmp/pacsums.old</p>
<p>echo "==&#62; creating pacman.db loopback file..."<br />
dd if=/dev/zero of=$pacmandb bs=1M count=150 &#62; /dev/null 2&#62;&#38;1</p>
<p>echo "==&#62; creating ext2 -O dir_index -b 1024 -m 0 on $pacmandb..."<br />
yes &#124; mkfs.ext2 -O dir_index -b 1024 -m 0 $pacmandb &#62; /dev/null 2&#62;&#38;1</p>
<p>echo "==&#62; creating temporary mount point /mnt/tmp-pacman.."<br />
mkdir /mnt/tmp-pacman</p>
<p>echo "==&#62; mounting pacman.db to temporary mount point..."<br />
mount -o loop $pacmandb /mnt/tmp-pacman</p>
<p>echo "==&#62; copying pacman database to temporary mount point..."<br />
cp -a /var/lib/pacman/. /mnt/tmp-pacman</p>
<p>echo "==&#62; unmounting temporary mount point..."<br />
umount /mnt/tmp-pacman</p>
<p>echo "==&#62; removing temporary mount point..."<br />
rmdir /mnt/tmp-pacman</p>
<p>echo "==&#62; moving old /var/lib/pacman to /var/lib/pacman.bak..."<br />
mv /var/lib/pacman /var/lib/pacman.bak</p>
<p>echo "==&#62; createing new pacman db mount point @ $dbroot..."<br />
mkdir $dbroot</p>
<p>echo "==&#62; Mounting new pacman db..."<br />
mount -o loop $pacmandb $dbroot</p>
<p>echo "==&#62; md5sum'ing the new database..."<br />
find $dbroot -type f &#124; sort &#124; xargs md5sum &#62;/tmp/pacsums.new</p>
<p>echo "==&#62; checking integrity..."<br />
diff /tmp/pacsums.old /tmp/pacsums.new &#62;/dev/null 2&#62;&#38;1<br />
if [ $? -ne 0 ]; then<br />
        # failed, move the old one back into place<br />
        umount $dbroot<br />
        rm $pacmandb<br />
        mv $dbroot.bak $dbroot<br />
        die_r "integrity check FAILED, reverting to old database"<br />
fi</p>
<p>echo "==&#62; Updating /etc/fstab to reflect changes..."<br />
echo "$pacmandb $dbroot ext2 loop,defaults 0 0" &#62;&#62; /etc/fstab</p>
<p>rm -f /tmp/pacman.lck /tmp/pacsums.old /tmp/pacsums.new</p>
<p>echo<br />
echo "Finished.  Your pacman database has been caged!.  May the speedy pacman be with you."<br />
echo</p>
<p>exit 0<br />
</code></p>
<p>gracias a <a href="http://andrew-rose.blogspot.com/">ody</a> por este trabajo</p>
<p>Saludos</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Arma rompecabezas en Linux con PicPuz]]></title>
<link>http://glatelier.wordpress.com/2009/07/18/arma-rompecabezas-en-linux-con-picpuz/</link>
<pubDate>Sat, 18 Jul 2009 18:18:41 +0000</pubDate>
<dc:creator>Pablo N.</dc:creator>
<guid>http://glatelier.wordpress.com/2009/07/18/arma-rompecabezas-en-linux-con-picpuz/</guid>
<description><![CDATA[Me encantan los rompecabezas. Cuando era niño tenía muchos de ellos, y pasaba horas con mi familia a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><em><strong>Me encantan los rompecabezas. Cuando era niño tenía muchos de ellos, y pasaba horas con mi familia armándolos. Después crecí, y se olvidó ese pasatiempo.</strong></em></p>
<p><em><strong>Hasta que me encontré con este programa, ideal para jugar a los rompecabezas.</strong></em></p>
<p>Su instalación es muy sencilla. Lo único que tienes que hacer es <a href="http://kornelix.squarespace.com/packages/">descargar desde éste enlace</a> el .DEB. Si no tienes Ubuntu, puedes descargar el paquete fuente y compilarlo. <a href="http://kornelix.squarespace.com/downloads/">El link necesario es éste</a></p>
<p><!--more--></p>
<p>Una vez instalado abre una terminal y escribe picpuz. El programa configurará el idioma y te mostrará tu directorio:</p>
<p><img class="aligncenter size-full wp-image-2892" title="directorio de imágenes" src="http://glatelier.wordpress.com/files/2009/07/pantallazo-7.png" alt="directorio de imágenes" width="600" height="375" />PicPuz soporta formatos de imágenes JPEG, PNG, TIFF, entre otros. Busca la imagen que desees convertir en rompecabezas y&#8230;</p>
<p><img class="aligncenter size-full wp-image-2893" title="imagen armada" src="http://glatelier.wordpress.com/files/2009/07/pantallazo-9.png" alt="imagen armada" width="600" height="375" />&#8230; puedes editar las piezas, para hacerlo más difícil. Cuando lo tengas, listo, ¡desármalo y a jugar!:</p>
<p><img class="aligncenter size-full wp-image-2894" title="rompecabezas desarmado" src="http://glatelier.wordpress.com/files/2009/07/pantallazo-8.png" alt="rompecabezas desarmado" width="600" height="375" />Espero que este programa les guste. A mí si.</p>
<p>Visto en <a href="http://www.juegoslibres.net">Juegos Libres</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Split decision: Goggles Music Manager]]></title>
<link>http://kmandla.wordpress.com/2009/07/18/split-decision-goggles-music-manager/</link>
<pubDate>Sat, 18 Jul 2009 12:23:00 +0000</pubDate>
<dc:creator>K.Mandla</dc:creator>
<guid>http://kmandla.wordpress.com/2009/07/18/split-decision-goggles-music-manager/</guid>
<description><![CDATA[I don&#8217;t usually notice music managers, mostly because I resent applications that &#8220;manage]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I don&#8217;t usually notice music managers, mostly because I resent applications that &#8220;manage&#8221; things for me. That goes for music, photos or whatever you like. </p>
<p>On the other hand, I&#8217;m constantly on the lookout for applications that run light and fast, and at the same time, are &#8220;under the radar,&#8221; as some of my American friends sometimes say. </p>
<p>Anything FLTK-based or FOX-based usually qualifies. I regularly tinker with XFE and its subapplications, or Dillo in it&#8217;s current (and amazing) state. I can add <a href="http://code.google.com/p/gogglesmm/" target="_blank">Goggles Music Manager</a> to that list now. But those toolkits are rather low-key, and the applications that use them can sometimes slip by unnoticed.</p>
<p>Occasionally a thread pops up in the Arch Forums mentioning Goggles, with about the frequency of <a href="http://bbs.archlinux.org/viewtopic.php?id=46171" target="_blank">Consonance</a>. Much like that program, Goggles imports lists of files and keeps a database, then gives you a way of sifting through them to play the tunes you want.</p>
<p align="center"><a href="http://omploader.org/vMXp2Zg" target="_blank"><img src="http://omploader.org/tMXp2Zg" /></a></p>
<p>In that sense, Goggles (and Consonance, <a href="http://kmandla.wordpress.com/2008/04/03/consonance-for-arch/">since I mentioned it</a>) is nothing new. What Goggles (and Consonance, since I mentioned it) offers is that manner of music playback at a speed that&#8217;s hard to ignore. And since it relies on the FOX toolkit and only a few other libraries, anything that can run a graphical desktop can probably add a wee bit more and get a very solid, very clean interface for playback. </p>
<p>Goggles has a miniature interface (called the Mini Player, which makes sense <img src='http://s.wordpress.com/wp-includes/images/smilies/face-wink.png' alt=';)' class='wp-smiley' />  ) you can push around the screen. It has an equalizer with presets that might match your musical taste. It will show album covers both in the list and when playing. It has nice big buttons to punch for music control, a slider for seeking and a time display alongside a volume control. In other words, all the basics.</p>
<p>But it will also sink to a system tray icon. It has a sleep timer. It will stream music from the Internet (but I admit I didn&#8217;t try that). It will arrange and display music as you prefer, make playlists, sync directory changes and a whole bunch of other fun stuff. If you have to have a music manager and it has to be light, this is the one I would submit for your consideration.</p>
<p>Personally, I find it intriguing, but not particularly attractive. On the one hand I appreciate its exceedingly lightweightedness (is that a word?) but &#8230; I can&#8217;t help it: I don&#8217;t dig music managers. It must be part of my DNA. Just about everyone else I know has to have that three-pane iTunes look before they can press &#8220;play;&#8221; for me, I find it a turnoff.</p>
<p>But it&#8217;s hard to snub it when it&#8217;s so light and so comprehensive. If I&#8217;m the only person who finds it attractive, and yet unattractive both at the same time, I&#8217;ll be satisfied with that. </p>
<p>P.S.: If you want to get started with Goggles, the Arch package is called &#8220;<a href="http://aur.archlinux.org/packages.php?ID=545" target="_blank" />musicmanager</a>,&#8221; and once it&#8217;s installed you can start the application with <code>gmm</code>. It took me a little while to find the thing, and another little while to get it started. <img src='http://s.wordpress.com/wp-includes/images/smilies/face-raspberry.png' alt=':roll:' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cream, navegador al estilo Vim con Webkit]]></title>
<link>http://fausto23.wordpress.com/2009/07/16/cream-navegador-al-estilo-vim-con-webkit/</link>
<pubDate>Fri, 17 Jul 2009 04:11:34 +0000</pubDate>
<dc:creator>fausto23</dc:creator>
<guid>http://fausto23.wordpress.com/2009/07/16/cream-navegador-al-estilo-vim-con-webkit/</guid>
<description><![CDATA[
Parecia que en este blog nos encantan los atajos del teclado, y sobre todo los navegadores que func]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter size-full wp-image-1079" title="Cream" src="http://fausto23.wordpress.com/files/2009/07/captura-de-pantalla2.png" alt="Cream" width="500" height="388" /><br />
Parecia que en este blog nos encantan los atajos del teclado, y sobre todo los navegadores que funcionan asi (recuerden <a href="http://fausto23.wordpress.com/2009/06/28/conkeror-navegando-con-el-teclado-como-emacs/">Conkeror</a> y <a href="http://fausto23.wordpress.com/2009/05/17/vimperator-firefox-para-vim-eros/">Vimperator</a>). Ahora le toca a Cream, este es un navegador ligero escrito en C con librerias GTK y Webkit. Este navegador funciona de la misma manera que Vimperator en Firefox, quienes usen este extension o el editor Vim se sentiran familiarizados. Este navegador cumple con su meta de ser ligero, y con una interfaz limpia para navegar.</p>
<p>Para instalarlo en Ubuntu es necesario contar con las sig. librerias:</p>
<p>*Libgtk</p>
<p>*<a href="https://launchpad.net/~webkit-team/+archive/ppa">Webkit</a></p>
<p>Instaladas las dependencias, descargamos el <a href="http://sourceforge.net/projects/cream-browser/files/cream-browser/cream-1.0-rc5.tar.gz/download">codigo fuente de aqui</a></p>
<p>y descomprimimos:</p>
<pre>tar zxvf cream-1.0-rc5.tar.gz</pre>
<p>nos movemos a la carpeta:</p>
<pre>cd cream/</pre>
<p>Y compilamos:</p>
<pre>./configure</pre>
<pre>make &#38;&#38; sudo make install</pre>
<p>Si todo sale bien, ya tenemos a cream en nuestro sistema</p>
<pre>cream &#38;</pre>
<p>Para Arch Linux, se encuentra en los repositorios AUR.</p>
<p>Espero que les sirva en su navegacion <img src='http://s.wordpress.com/wp-includes/images/smilies/face-raspberry.png' alt=':P' class='wp-smiley' /> .</p>
<p>Sayounara</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Talking myself out of it]]></title>
<link>http://kmandla.wordpress.com/2009/07/17/talking-myself-out-of-it/</link>
<pubDate>Fri, 17 Jul 2009 03:50:48 +0000</pubDate>
<dc:creator>K.Mandla</dc:creator>
<guid>http://kmandla.wordpress.com/2009/07/17/talking-myself-out-of-it/</guid>
<description><![CDATA[I&#8217;m considering something a little daring &#8212; rigging the desktop machine I have ready for]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img src="http://img101.imageshack.us/img101/3753/archxr5.png" alt="Arch Linux" align="left" />I&#8217;m considering something a little daring &#8212; rigging <a href="http://kmandla.wordpress.com/2009/07/10/revisiting-windows-98/">the desktop machine I have ready for departure</a> with <a href="http://kmandla.wordpress.com/2008/09/11/oh-so-close/">a desktop that&#8217;s a Windows 2000 lookalike</a>.</p>
<p>Knowing full well that the future owner will more than likely completely erase everything that is on there, I am tempted all the more to simply install Arch Linux and make over the entire machine <em>a la</em> Microsoft and see if it wins any attention that way.</p>
<p>Ordinarily I chastise people for trying to slip Linux under the nose of an unsuspecting Windows user; when the truth is out, it leaves a bad taste in the mouth. And it is generally my philosophy that a person&#8217;s first run-in with Linux shouldn&#8217;t be deceptive or under duress. No one is served by trying to pretend Linux is Windows.</p>
<p>On the other hand, the recipient knows full well that the machine is only licensed to run Windows 98, and has already mentioned that they plan on wiping the drive before putting on XP (a mistake in my mind, but whatever).</p>
<p>So who will I harm by offering up a sidelong alternative?</p>
<p>Nobody probably, but I&#8217;m 99 percent sure the work involved will be ignored. I suppose a better way to introduce Linux would be to dump a full Ubuntu installation on it, add a lightweight desktop like the <a href="http://packages.ubuntu.com/search?keywords=lxde" target="_blank" />LXDE package</a>, and call it done. Anything I add above and beyond the Windows 98 installation is already ten times more useful, without going through the hours of tweaking IceWM to behave like Win2K.</p>
<p>And on a machine that needs a Japanese environment, I find the task all the more unappealing. Fonts are &#8230; unusual here and there between Japanese and English, and I haven&#8217;t really figured out the magic combination. And rendering is slow by comparison, and adding or removing programs is unintuitive (for an absolute newbie) without some sort of frontend for pacman. Scim has to be manhandled by a regular user to behave the &#8220;right&#8221; way. &#8230; The list is long.</p>
<p>And I have so many other things I need to be doing. No sense in going through the work when the final product will be summarily eradicated.</p>
<p>See, now I have successfully talked myself out of it. Another nice side effect of this blog. &#8230; <img src='http://s.wordpress.com/wp-includes/images/smilies/mrgreen.png' alt=':mrgreen:' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[A three-year hall of fame]]></title>
<link>http://kmandla.wordpress.com/2009/07/17/a-three-year-hall-of-fame/</link>
<pubDate>Fri, 17 Jul 2009 02:01:08 +0000</pubDate>
<dc:creator>K.Mandla</dc:creator>
<guid>http://kmandla.wordpress.com/2009/07/17/a-three-year-hall-of-fame/</guid>
<description><![CDATA[Anniversaries always throw me into a retrospective mood, and since August will mark the third birthd]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Anniversaries always throw me into a retrospective mood, and since August will mark the third birthday of this blog, I have been thinking a little bit about the machines I&#8217;ve worked with since I switched to Linux.</p>
<p>I can&#8217;t count the number of computers I&#8217;ve worked with over the past three years. I&#8217;ve installed (or at least attempted) installations on everything from Pentium machines to dual Xeon Pentium 4 servers to OLPC laptops, all with varying success. There are a few that stand out in my mind and particularly fun or particularly gratifying &#8230;</p>
<p><strong><a href="http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00010945&#38;lc=en&#38;cc=us&#38;dlc=en&#38;product=94911&#38;lang=en" target="_blank" />Compaq Presario 1020</a></strong></p>
<p>This is the machine I wish I had kept. Pristine quality, good screen image, flexible hardware, easy to open and maintain, a chain of industry-standard core components, and enough options to keep your standard laptop geek busy for a while.</p>
<p><a href="http://omploader.org/vMXpucg" target="_blank"><img src="http://omploader.org/tMXpucg" align="right" /></a>I got my hands on this though the IT staff at a previous job, where this had been sitting on a closet shelf for almost a decade, doing nothing. They were more than happy to turn it over to me, and giggled furiously at the idea of actually putting a 120Mhz machine to use. Giggled, that is, until I brought it back to work a week or two later, armed with a very sparse Linux installation running a media player with graphic visualizer, wireless connection and a load of other goodies. They were instantly jealous.</p>
<p>Jealous because early Presarios (and possibly even new ones, I don&#8217;t know) were armed with JBL speakers and sound quality was unparallelled. After they saw that it was actually functional, actually <em>usable</em>, they realized they had made a huge mistake in giving it away.</p>
<p>It was a mistake I duplicated not long afterward though. In those days I was inundated with hardware, and one more laptop in museum-quality condition wasn&#8217;t worth keeping. I realize now that was the machine I needed to keep on hand for a few more years, but at the time I couldn&#8217;t spare the space. Perhaps one day I&#8217;ll get my hands on another one of these, and be able to make up for the mistake of selling the first one. <img src='http://s.wordpress.com/wp-includes/images/smilies/face-sad.png' alt=':(' class='wp-smiley' /> </p>
<p><strong>Dell Optiplex GX150</strong></p>
<p>Dell made an entire series of GX machines aimed at businesses and government clients, and for the most part these were rather droll, ordinary desktops with no real spice to them whatsoever. But the GX line was strictly a lemons-to-lemonade phenomenon, as this should show.</p>
<p><a href="http://img211.imageshack.us/my.php?image=img0001ro5.jpg" target="_blank"><img src="http://img211.imageshack.us/img211/9374/img0001ro5.th.jpg" border="0" align="left" /></a>With the maximum 512Mb of PC133 memory and 1.4Ghz Pentium III processor, the GX150 was suddenly a high-end desktop with a physical footprint no bigger than an encyclopedia. (There were three sizes, if I recall correctly.) Add a low-profile 64Mb Geforce 440 graphics card, and suddenly you have a machine that can run Neverwinter Nights at 1600&#215;1200, Compiz, any desktop application you like &#8230; and look exceptionally good in the process.</p>
<p><a href="http://omploader.org/vMXpvMQ" target="_blank"><img src="http://omploader.org/tMXpvMQ" align="right" /></a>The mini-case models used laptop optical drives, which meant you could supplant the standard CDROM with a dual layer DVD if you really had to, or pop in a standard size hard drive too. This was a neat split between the parts seen in standard desktop machines and common Dell laptops.</p>
<p>And Linux couldn&#8217;t be happier on it. Ubuntu, Arch and a half-dozen other distros that were current at the time all ran smooth as silk, with no hiccups that I recall. Maybe those are rose-colored glasses that I&#8217;m wearing, but I have nothing but fond memories of that machine. </p>
<p>I am tempted to also label this one as a &#8220;should&#8217;ve kept,&#8221; but to be honest, these machines were so prolific and still are so common, that you can easily put together an identical computer now, and end up spending less than US$30 for everything &#8230; including the cans of paint. Whereas the Presario was clearly an antique, this one could be mimicked in less than a week, and at minimal cost.</p>
<p><strong><a href="http://www.thinkwiki.org/wiki/Category:I1200" target="_blank" />Thinkpad iSeries 1200</a></strong></p>
<p><a href="http://xs.to/xs.php?h=xs121&#38;d=07485&#38;f=IMG_0485.JPG" target="_blank"><img src="http://xs121.xs.to/xs121/07485/IMG_0485.JPG.xs.jpg" align="right" /></a>I was torn between listing <a href="http://kmandla.wordpress.com/hardware#Thinkpad">this one</a> and the <a href="http://kmandla.wordpress.com/hardware#Inspiron">Inspiron</a> as a number three choice. The Inspiron has been on my desk for well over three years and is generally the house workhorse, but the Thinkpad has been more of a learning experience, and more of a success story &#8212; particularly recently.</p>
<p>Part of my endearment to this machine is just that it is in such impeccable shape, but another large part is the fact that I&#8217;ve learned to do so much with it, and rely on only a sliver of its resources. Hardwarewise it&#8217;s a bottom-feeder, and yet everything that goes into this blog, all my e-mail correspondence, chatting, IMing, personal schedules, desktop wikis, to-do lists, torrent traffic, music streaming &#8230; you name it, this machine is where it happens.</p>
<p><a href="http://omploader.org/vMXlqNA" target="_blank"><img src="http://omploader.org/tMXlqNA" align="left" /></a>I suppose that alone is not enough to rank a machine in a &#8220;best-of&#8221; list, but there&#8217;s more than that. It&#8217;s hard to explain, but this Thinkpad, and others I have had or used, have a &#8220;solid&#8221; feel that is somehow reassuring. I know, for example, that it only has a CDROM in it, and I know that 192Mb is the most memory it will ever have. And that 800&#215;600 screen would be an irritation to anyone else, and everyone looks down on Celerons.</p>
<p>But this thing has a die-hard feel to it. It&#8217;s nobody&#8217;s dream machine, but Linux on this has been nothing short of liberating. No qualms or eccentricities (unless you count that <a href="http://kmandla.wordpress.com/2009/07/12/whats-to-like/">siliconmotion driver issue</a>, which is no longer an issue really), and function way beyond what Microsoft &#8212; and maybe even IBM &#8212; ever anticipated.</p>
<p>I use that phrase a lot though, so maybe it has lost some of its punch. Suffice to say that this machine has been more of a surprise and more satisfying than a lot of the others. That&#8217;s reason enough.</p>
<p>So there you have it. Three years on, these are the machines that stick in my memory the most. There have been countless others, but these are the hall of fame inductees. For my own part, that is. <img src='http://s.wordpress.com/wp-includes/images/smilies/face-wink.png' alt=';)' class='wp-smiley' />  </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Probability approaches 1]]></title>
<link>http://kmandla.wordpress.com/2009/07/14/probability-approaches-1/</link>
<pubDate>Mon, 13 Jul 2009 23:36:07 +0000</pubDate>
<dc:creator>K.Mandla</dc:creator>
<guid>http://kmandla.wordpress.com/2009/07/14/probability-approaches-1/</guid>
<description><![CDATA[I had to laugh when I first saw monsterstack&#8217;s signature on the Ubuntu forums. 
As an Ubuntu F]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I had to laugh when I first saw <a href="http://ubuntuforums.org/member.php?u=614714" target="_blank">monsterstack</a>&#8217;s signature on the Ubuntu forums. </p>
<blockquote><p>As an Ubuntu Forums discussion grows longer, the probability of someone mentioning Arch Linux approaches 1.</p></blockquote>
<p><img src="http://img101.imageshack.us/img101/3753/archxr5.png" alt="Arch Linux" align="left" />It&#8217;s funny because it&#8217;s true: Inevitably, regardless of the topic or issue, be it technical, ethical or otherwise, eventually someone has to raise their hand and offer Arch Linux as a pat response. It would almost be funny to just enter the words &#8220;Arch Linux&#8221; in response to any thread in the <a href="http://ubuntuforums.org/forumdisplay.php?f=11">Community Cafe</a>, except that would be something akin to spamming, and the staff would not find it as amusing as everyone else probably would.</p>
<p>It&#8217;s funny because it&#8217;s true, but it&#8217;s true because in one manner of speaking, Ubuntu and Arch are diametrically opposed. Each one offers what the other lacks, and for that reason it&#8217;s common to see a problem or an issue circumvented by offering the other as a solution.</p>
<p>I kind of touched on this <a href="http://kmandla.wordpress.com/2008/02/08/why-do-ubuntu-users-become-arch-users/">last year</a>, but did a rotten job, in retrospect, of explaining the phenomenon. Arch Linux draws people away from Ubuntu when they realize Ubuntu is overstuffed and suffers a weight problem.</p>
<p>That alone is a turnoff for some people &#8212; the fact that, even in its slimmest configurations, there is a loss of speed and performance that is measurable when held up to something like Arch. </p>
<p>This is not news to anyone who has used Linux in its current incarnations; I&#8217;ve been chanting that mantra for years now, and I heartily endorse Arch as an option to anyone who wants to see some measure of perfomance. I can say with 99 percent assurance that, whether or not you use Pentium III-era machines, picking up Arch will offer a huge payout in performance.</p>
<p>But it must also be said that there is a flow to match the ebb. Occasionally &#8212; and I admit it&#8217;s rare to see &#8212; there&#8217;s a note on the Arch Linux forums saying something like &#8220;I prefer the way Ubuntu handles this.&#8221; It&#8217;s an odd sight and everyone takes a screenshot to prove it happened, but trust me, it does.</p>
<p>So that performance I mentioned earlier might come at the cost of something else &#8212; probably &#8220;ease in setup,&#8221; if I can say it that way &#8212; and that&#8217;s usually what sparks those rare forum threads that suggest Ubuntu as an option.</p>
<p>The probability doesn&#8217;t really approach 1 though. Or if it does, it&#8217;s over a much, much longer time. <img src='http://s.wordpress.com/wp-includes/images/smilies/mrgreen.png' alt=':mrgreen:' class='wp-smiley' /> </p>
<p>P.S.: The threads suggesting Crux as an option to either of those two &#8230; well, I might be the only person driving that campaign. <img src='http://s.wordpress.com/wp-includes/images/smilies/face-smile-big.png' alt=':D' class='wp-smiley' /> </p>
<p>P.P.S.: monsterstack has a blog <a href="http://bambambambam.wordpress.com/">here</a>, which is fun to peruse. I particularly enjoy the &#8220;troll of the week&#8221; feature. &#8230; <img src='http://s.wordpress.com/wp-includes/images/smilies/face-wink.png' alt=';)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[What's to like?]]></title>
<link>http://kmandla.wordpress.com/2009/07/12/whats-to-like/</link>
<pubDate>Sun, 12 Jul 2009 13:18:12 +0000</pubDate>
<dc:creator>K.Mandla</dc:creator>
<guid>http://kmandla.wordpress.com/2009/07/12/whats-to-like/</guid>
<description><![CDATA[I hold a grudge, I admit it. Months ago, when X started acting up on my central machine, I realized ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I hold a grudge, I admit it. Months ago, when <a href="http://kmandla.wordpress.com/2009/03/15/so-predictable/">X started acting up</a> on my <a href="http://kmandla.wordpress.com/hardware#Thinkpad">central machine</a>, I realized <a href="http://kmandla.wordpress.com/2009/03/16/in-every-obstacle-opportunity/">the time and effort spent trying to fix it</a> could be alleviated completely by <a href="http://kmandla.wordpress.com/2009/04/19/a-month-without-x-already/">omitting it altogether</a>.</p>
<p>And as I mentioned then, things have only gotten better. Steering clear of X and anything related has <a href="http://kmandla.wordpress.com/2009/05/05/a-quick-testament/">slimmed the system down to nothing</a> <a href="http://kmandla.wordpress.com/2009/05/10/do-more-with-less/">without losing a sliver of function</a>, made my system far more reliable, and <a href="http://kmandla.wordpress.com/2009/05/21/quit-x-screen-vs-is-more-fun/">taught me a thing</a> or <a href="http://kmandla.wordpress.com/2009/04/11/accepting-things-as-they-are/">two</a> about <a href="http://kmandla.wordpress.com/2009/02/21/one-week-at-100mhz-i-found-a-desk/">using still older machines</a>. </p>
<p>But thinking back, my grudge goes deeper than just the <a href="http://kmandla.wordpress.com/2009/03/15/so-predictable/">failure of the siliconmotion driver</a> (something, to my knowledge, that still doesn&#8217;t work), and really extends all the way to <a href="http://kmandla.wordpress.com/2008/11/30/hal-xserver-153-and-allowemptyinput/">November</a>, when <em>all</em> of X turned sour for me. When X shifted to a reliance on hal and dbus, and I had to rely on obscure options (that don&#8217;t seem to work anymore, I should add) to avoid using them, I realized the relationship had gone south.</p>
<p>Nowadays I&#8217;m hard-pressed to come up with a reason to like X as it travels in the direction it has taken. Consider:</p>
<ul>
<li><strong>hal and dbus</strong> are heavier than I like. I realize that both are a mere speck in the grand scheme of things, but to me, it&#8217;s still more processes than used to be required. I am not so much of a code monkey to fully understand all the reasons why they&#8217;re necessary, but I know it has made things harder on me.</p>
<p>I&#8217;ve scrambled a half-dozen installations simply by forgetting to start both hal and dbus before starting X, and without some sort of fallback or preventative check, the only result is that complete lockup. Power down the hard way, file systems go nutty, and the system needs major surgery to get back on its feet. :&#124;</li>
<li>I don&#8217;t know what else to call it, so I&#8217;ll just say it: I don&#8217;t like the <strong>dontzap</strong> behavior. I got used to having CTRL+ALT+Backspace, and I&#8217;m one of those people who thinks there ought to be an escape route by default, not as an add-on.
<p>If X were 100 percent foolproof, if it never made a mistake and configured everything correctly every time, I couldn&#8217;t complain.</li>
<li>But <strong>it doesn&#8217;t</strong>, and correcting it when it goes wrong is just as much work as setting it up the old way. In some cases, it&#8217;s actually more. As an example, I exchanged e-mails for a few days last month with a person setting up keyboard-switching in IceWM. To hear it explained, the old system required only a brief edit of xorg.conf, but the new arrangement needs much more attention.
<p>I don&#8217;t have the final details so maybe it&#8217;s not fair to hold that up to scrutiny, but it&#8217;s the way things seem to go for me too. My <a href="http://kmandla.wordpress.com/hardware#Inspiron">Inspiron</a>, with an Arch installation in place (and yes, with hal and dbus running <img src='http://s.wordpress.com/wp-includes/images/smilies/face-raspberry.png' alt=':roll:' class='wp-smiley' />  ) can&#8217;t find the touchpad, or any of the four buttons unless there&#8217;s a PS2 mouse connected. It can find the pointer stick &#8212; which is important &#8212; but if there&#8217;s no mouse plugged in, it&#8217;s buttonless.</li>
</ul>
<p>Maybe I&#8217;m being hypocritical, since <a href="http://kmandla.wordpress.com/2009/07/11/warzone-2100-continues-to-shine/">I obviouly still use X</a> on the Inspiron. I&#8217;m pleased to say that you can still run a hal-less and dbus-less system with Crux, but I get a sinking feeling every time there&#8217;s an update within xorg, because I know at some point that&#8217;s going to change. </p>
<p>Or maybe I just complain too much, and do too little, and should <a href="http://kmandla.wordpress.com/2009/07/08/a-little-cheese-for-your-whine/">take some of my own advice</a>. But instead I take the roundabout solution, and like I mentioned, I omit X altogether, for at least two (and sometimes more) machines.</p>
<p>That&#8217;s because short of fully preconfigured systems, like Ubuntu, I see now that X is not nearly as useful (or important) as I thought it was. Or maybe I should say, I see now that there is a lot to learn &#8212; and a lot to be gained &#8212; by leaving it out.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[¿Que esperas de...Xfce, LXDE y Enlightenment17?]]></title>
<link>http://fausto23.wordpress.com/2009/07/11/%c2%bfque-esperas-de-xfce-lxde-y-enlightenment17/</link>
<pubDate>Sat, 11 Jul 2009 21:02:46 +0000</pubDate>
<dc:creator>fausto23</dc:creator>
<guid>http://fausto23.wordpress.com/2009/07/11/%c2%bfque-esperas-de-xfce-lxde-y-enlightenment17/</guid>
<description><![CDATA[
Esta es la tercera entrega de posts sobre el desarrollo de los diferentes entornos de escritorio pa]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter size-full wp-image-1051" title="3" src="http://fausto23.wordpress.com/files/2009/07/3.png" alt="3" width="451" height="338" /></p>
<p>Esta es la tercera entrega de posts sobre el desarrollo de los diferentes entornos de escritorio para GNU/Linux, anteriormente habíamos hablado de <a href="http://fausto23.wordpress.com/2009/06/24/que-esperas-de-kde-4-3/">KDE</a> y <a href="http://fausto23.wordpress.com/2009/06/22/que-esperas-de-gnome-3-0/">GNOME</a>, ahora le toca a los entornos &#8220;ligeros&#8221; XFCE, LXDE y Enlightenment 17, que se han vueltos entornos muy populares para distros que buscan la rapidez.</p>
<p><a href="http://www.xfce.org/">XFCE 4.6.1 y mas</a>: El proyecto XFCE en este año ha lanzado la versión 4.6 de su entorno de escritorio y su actualización 4.6.1. El proyecto XFCE claramente busca quitarse la imagen se ser un GNOme-light, ya que con esta versión agrego su propio mixer, además de adoptar a Midori (navegador ligero webkit) como parte del proyecto. Entre las cosas que mencionan en el desarrollo es mejoras en el appfinder que le permita reconocer comandos tipo terminal para ejecutar, aparte de soporte para URLs, o microblogging (<a href="http://gezeiten.org/post/2009/07/Appfinder-Ideas">ver imagen</a>), soporte para sftp para Thunar, además de añadir soporte para Cairo, y añadir extensiones para xfce4-panel y thunar. Este es otro que proyecto que cambiara bastante cuando salgan las librerías GTK 3.0, y que con cada version mejora en funciones y que tiene un desarrollo constante.</p>
<p><a href="http://lxde.org/">LXDE</a>: Este entorno ha adquirido una popularidad entre distribuciones ligeras, con gestor de ventanas openbox, este es un ejemplo que es mas que la suma de sus partes (lxpanel, lxrandr, lxnm, gpicview, pcmanfm). Una de las notas es que posiblemente este pueda convertirse en proyecto <a href="http://blog.lxde.org/?p=208">auto-mantenido por la comunidad Ubuntu</a>, cosa que aun esta por verse. Otra cosa es el cambio total que tendrá <a href="http://wiki.lxde.org/en/PCManFM_Roadmap">Pcmanfm</a>, ahora basado en una librería en desarrollo libfm, así como basarse en gio/gvfs (quiere decir que podrá abrir lugares como trash:/// o computer:///). Otro sera lxnm (el manejador de redes de LXDE) para convertirlo en una aplicación aparte (algo asi como wicd) sin depender de lxpanel. LXDE siempre me ha parecido un híbrido entre los entornos de escritorio y gestores de ventanas, y una opción para equipos viejos, bueno que no se han desviado de esa opción.</p>
<p><a href="http://www.enlightenment.org/p.php?p=about/e17">Enlightenment 17</a>: El proyecto de nunca acabar&#8230;E17 sera una evolución en lo que conocemos como entornos de escritorio, tanto en lo visual como en el uso. Quizás hace un año el proyecto parecía casi muerto, pero se han puesto &#8220;las pilas&#8221; actualizando las EVAS y no las que están pensando..sino las librerías que forman parte del proyecto (Einas, Evas, Ecore, Edje, E_Dbus, Efreet). Hay formas de probar el proyecto E17 (por ejemplo <a href="http://distrowatch.com/table.php?distribution=elive">Elive</a>), pero esta claro que aun esta verde para un uso diario, pasara un tiempo para que podamos usar una version estable de este entorno.</p>
<p>Que opinan uds.?</p>
<p>Sayounara</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Warzone 2100 continues to shine]]></title>
<link>http://kmandla.wordpress.com/2009/07/11/warzone-2100-continues-to-shine/</link>
<pubDate>Fri, 10 Jul 2009 23:28:01 +0000</pubDate>
<dc:creator>K.Mandla</dc:creator>
<guid>http://kmandla.wordpress.com/2009/07/11/warzone-2100-continues-to-shine/</guid>
<description><![CDATA[I actually have spare time these days, even between projects like tearing apart a desktop machine, t]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I actually have spare time these days, even between projects like tearing apart a desktop machine, to clean and restore it. And since I occasionally pick up a game or two when I want complete distraction, I revisited <a href="http://wz2100.net/" target="_blank">Warzone 2100</a> yesterday, after a hiatus that approached the better part of a year.</p>
<p align="center"><a href="http://omploader.org/vMXlpeA" target="_blank"><img src="http://omploader.org/tMXlpeA" /></a></p>
<p>And I was pleasantly surprised. The crowd that follows that game has been doing some great things with it, including a few small graphical improvements, better static illustrations, and the addition of some single-player game options &#8212; which I prefer.</p>
<p align="center"><a href="http://omploader.org/vMXlpeQ" target="_blank"><img src="http://omploader.org/tMXlpeQ" /></a></p>
<p>I can now play a flat skirmish against the computer, instead of cycling through the campaign game (which I have finished a half-dozen times, probably). I have never really cared much for multiplayer online games, perhaps with the only exception of <a href="http://en.wikipedia.org/wiki/Starsiege:_Tribes">Tribes</a>.</p>
<p>So the addition of a skirmish mode makes me quite happy. It&#8217;s standard fare, generally speaking &#8212; an array of maps, base technology levels and color schemes, all of which a play-to-the-death affair.</p>
<p>And I seem to be on the receiving end of that statement. Which is okay, really. I feel I have a chance against the computer opponent, and if worse comes to worst, I&#8217;ll just cheat and prove my superiority that way. <img src='http://s.wordpress.com/wp-includes/images/smilies/face-devilish.png' alt=':evil:' class='wp-smiley' /> </p>
<p>Regardless, it&#8217;s nice to see a good strategy game getting proper attention, this long after its original release. Hardware requirements are low, but the payoff is smooth animation and clean graphics, even on <a href="http://kmandla.wordpress.com/hardware#Inspiron">a machine as old as mine</a>. </p>
<p align="center"><a href="http://omploader.org/vMXlpeg" target="_blank"><img src="http://omploader.org/tMXlpeg" /></a></p>
<p>And the home page has one of <a href="http://guide.wz2100.net/" target="_blank">the best user guides</a> I&#8217;ve ever seen dedicated to a single game (I think the <a href="http://nwn.wikia.com/wiki/Main_Page" target="_blank">wikia site for Neverwinter Nights</a> might be the only better resource, in general terms), plus forums, developers resources like a bugtracker, translation services, AI scripting and so forth.</p>
<p>Strategy games aren&#8217;t for everyone, but I admit this one is probably the game I have returned to most often, in my brief Linux history. You try it and see if it fits. <img src='http://s.wordpress.com/wp-includes/images/smilies/face-wink.png' alt=';)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Recensione distro: Arch Linux]]></title>
<link>http://porkynator.wordpress.com/2009/07/09/recensione-distro-arch-linux/</link>
<pubDate>Thu, 09 Jul 2009 16:26:56 +0000</pubDate>
<dc:creator>porkynator</dc:creator>
<guid>http://porkynator.wordpress.com/2009/07/09/recensione-distro-arch-linux/</guid>
<description><![CDATA[
Leggi questo articolo sul sito di LugAnegA: Arch Linux
Sempre più incuriosito da questa distro, ho ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p align="center"><img src="http://pokornypavel.cz/wp-content/uploads/2008/11/arch-linux-logo-300x251.png" alt="Logo di Arch Linux" /></p>
<p><em>Leggi questo articolo sul sito di LugAnegA:</em> <a href="http://luganega.org/index.php?title=Arch_Linux">Arch Linux</a></p>
<p>Sempre più incuriosito da questa distro, ho deciso di installarla su una piccola partizione del mio hard disk (tanto Slackware in 35 Gb ci sta largo). Risultato: Arch in 10 Gb sta più largo che Slackware in 35; è una distro veloce e minimalista (l&#8217;installazione di base non prevede nemmeno un <a href="http://it.wikipedia.org/wiki/Window_manager">window manager</a>) ma perfettamente adattabile alle proprie esigenze. Di sicuro non è adatta agli utenti inesperti, visto che non ha nessuno strumento di configurazione automatico. <!--more--></p>
<h3>Caratteristiche generali</h3>
<p>Innanzitutto mi scuso per la gaffe che ho scritto nella <a href="http://luganega.org/index.php?title=Slackware">recensione di Slackware</a>: Arch Linux non è una derivata della Slack, anche se sono simili (soprattutto per il sistema di avvio, entrambe BSD-like).</p>
<p>Arch Linux fu creata da Judd Vinet, che si ispirò alla distribuzione <a href="http://it.wikipedia.org/wiki/CRUX_Linux">CRUX</a>. La prima versione, la 0.1 è uscita nel 2002, mentre l&#8217;ultima versione è la 2009.02 (febbraio 2009).</p>
<p>Come dicevo prima, Arch è talmente minimalista che non prevede nemmeno un window manager di default; differentemente da Slackware, che con un&#8217;installazione di default ti fornisce tutti i programmi possibili e immaginabili (KDE, XFCE, window manager a palate, programmi poer l&#8217;uffico, 3-4 browser web, ecc&#8230;), Arch fornisce il minimo indispensabile per accendere il pc e fare il login. Tutta via installare tutti i programmi di cui si ha bisogno è estremamente semplice (devo ammetterlo, molto più che con slackware) grazie a <em>pacman</em>, un gestore di pacchetti con controllo delle dipendenze (più o meno come apt di Debian, solo molto più veloce). Quindi, se appena installato Arch siete spaventati dalla riga di comando, vi basterà digitare:</p>
<p><code>pacman -S kde</code></p>
<p>e in pochi minuti (tempo di scaricare i pacchetti dai repo e installarli) vi ritroverete installato il vostro DE preferito! (Se invece volete installare il <em>mio</em> DE preferito, dovrete digitare <em>pacman -S fluxbox</em>).</p>
<p>Potrete trovare qualche difficoltà in più nella configurazione del sistema: non essendoci, come ho detto prima, strumenti di configurazione automatica (es.: xorgsetup, timeconfig, netconfig, ecc&#8230; di Slackware), ogni modifica alla configurazione andrà fatta modificando i file relativi (nel 99% dei casi tale file sarà <em>/etc/rc.conf</em>). Probabilmente, comunque, non ne avrete bisogno: io, oltre alle configurazioni richieste in fase di installazione, ho dovuto solo modificare il file relativo all&#8217;italianizzazione della tastiera in X e ~/.xinitrc per specificare il WM/DE da avviare al comando <em>startx</em>.</p>
<p>In conclusione, Arch Linux è una distro adatta a chi vuole avere un sistema minimalista, senza tanti fronzoli e con solamente i programmi di cui ha bisogno. Se vi piace Slackware, ma sentite la mancanza di un package-manager con gestione delle dipendenze (non è il mio caso! slackpkg fa il suo lavoro anche troppo bene) e volete provare qualcosa di leggero, Arch è quello che fa per voi.</p>
<h3>Pro e contro</h3>
<h4>Pro</h4>
<p>* Velocissima, sia in fase di boot che ad avvio effettuato (anche se poco più veloce di Slackware).</p>
<p>* Potenzialmente completa: di qualunque cosa abbiate bisogno, non dovrete nulla di più di <em>pacman -S qualunque_cosa_di_cui_abbiate_bisogno</em>; attenzione: per qualche strano motivo non funzionano i comandi <em>pacman -S pace_nel_mondo</em> o <em>pacman -S capire_le_donne</em> (in particolare quest&#8217;ultimo dà un segmentation fault e manda in crash il sistema)</p>
<p>* Buonissimo supporto anche in italiano, molte guide utili reperibili online (ArchWiki).</p>
<p>* Per la sua leggerezza è adatta anche a computer dell&#8217;anteguerra.</p>
<h4>Contro</h4>
<p>* Inadatta agli utenti inesperti.</p>
<p>* Oltre al Wiki ufficiale, la documentazione è abbastanza scarsa: se non capite le guide di <a href="http://wiki.archlinux.org/index.php/Main_Page_(Italiano)">ArchWiki</a> siete fregati!</p>
<h3>Alcuni link utili</h3>
<p>* <a href="http://it.wikipedia.org/wiki/Arch_Linux">Pagina di Wikipedia su Arch Linux (per informazioni più precise)</a></p>
<p>* <a href="http://www.archlinux.it/">Sito ufficiale italiano</a></p>
<p>* <a href="http://www.archlinux.org/">Sito ufficiale</a></p>
<p>* <a href="http://wiki.archlinux.org/index.php/Main_Page_(Italiano)">ArchWiki</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Arch Linux für Anfänger...]]></title>
<link>http://fuzzyauflauf.wordpress.com/2009/07/08/arch-linux-fur-anfanger/</link>
<pubDate>Wed, 08 Jul 2009 14:39:02 +0000</pubDate>
<dc:creator>Stephan</dc:creator>
<guid>http://fuzzyauflauf.wordpress.com/2009/07/08/arch-linux-fur-anfanger/</guid>
<description><![CDATA[Am Wochenende habe ich mich endlich mal an ArchLinux gewagt. Arch ist eine Linux-Distribution, die s]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Am Wochenende habe ich mich endlich mal an <a href="http://www.archlinux.org/">ArchLinux</a> gewagt. Arch ist eine Linux-Distribution, die sich eher an erfahrenen User wendet &#8211; damit habe ich jetzt quasi offiziell &#8220;Geek-Status&#8221;, juhu!</p>
<p>Die Installation ist rein textbasiert, rein offiziell wird das gesamte System auf dem Terminal und in Textdateien konfiguriert. Klingt kompliziert, ist es aber nicht. Nach der Installation ging es erstmal an die WLAN-Einrichtung &#8211; na toll, in der /etc/rc.conf eintragen half nix. Also mit</p>
<blockquote><p># ifconfig wlan0 up</p>
<p># iwconfig wlan0 essid &#60;meineessid&#62; key &#60;mykey&#62;</p>
<p># dhcpcd</p></blockquote>
<p>von Hand ans Netz &#8211; zum Glück nur WEP, mit WPA wäre das etwas zäher geworden.</p>
<p><!--more--></p>
<p>Dann erstmal mit pacman ein Systemupdate eingespielt &#8211; natürlich ohne vorher die Mirrorlist zu bearbeiten. Dummerweise ist der offizielle Arch-Server etwas langsam&#8230;</p>
<p>GNOME, Xorg, OSS installieren, Wicd, damit mein WLAN auch automatisch ans Netz geht&#8230; Nervig, aber nicht allzu schwierig.</p>
<p>Jetzt läuft alles. Die Paketverwaltung mit pacman ist genial, Shaman als grafisches Frontend ist top. Die Möglichkeit, mein System nach Ende eines Updates herunterzufahren, habe ich mir schon lange gewünscht. Das RollingRelease-Konzept ist das Beste seit geschnittenem Brot &#8211; heute geupdated und schon ist vlc 1.0 auf der Festplatte. Einfach Wahnsinn. Schade, dass die Einstiegshürde so hoch ist.</p>
<p>Ich hätte ja auch Chakra benutzen können &#8211; aber leider bin ich eher der GNOME-Junky. Ein GNOME-System auf Arch-Basis mit leichter Installation und LiveCD fehlt leider noch. Wer weiß, vielleicht probier ich mal, da selbst was zu machen&#8230;</p>
<p>Erstmal freue ich mich jetzt aber an meinem topstabilen, schnellen und schicken System. Es hat sich gelohnt.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Shutter - screenshot program]]></title>
<link>http://liticovjesac.wordpress.com/2009/07/08/shutter-screenshot-program/</link>
<pubDate>Wed, 08 Jul 2009 07:45:06 +0000</pubDate>
<dc:creator>liticovjesac</dc:creator>
<guid>http://liticovjesac.wordpress.com/2009/07/08/shutter-screenshot-program/</guid>
<description><![CDATA[Shutter je screenshot program. Za razliku od drugih programa ove vrste Shutter se odlikuje jednim de]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a title="shutter" href="http://shutter-project.org/about/" target="_blank">Shutter</a> je screenshot program. Za razliku od drugih programa ove vrste Shutter se odlikuje jednim delom dodadtnih opcija koje slicni programi nemaju. Ovako napravljen program odstupa od Unix filozofije o pravljenju programa koji radi jednu stvar i radi je dobro. Kod Shuttera vazi da on radi vise  stvari i radi ih dobro.</p>
<p>Ja sam testirao verziju 0.70.2.   Graficki user interfejs je jednostavan i prilicno lak za koriscenje.  Shutter radi sa tabovima. Svaki nacinjeni screenshot otvorice se u novom tabu.<br />
Pod tabom <em>Session</em> nalaze se thumbnejlovi svih snimljenih screenshotova za vreme rada.<br />
Meni <em>Selection</em> omogucava promenu velicine zumiranog polja prilikom uzimanja screenshota dela ekrana,  sto je zgodno ukoliko ivica fotografije mora da bude na tacno odredjenom mestu.</p>
<p>Pritiskom na <em>Full screen</em> hvata se ceo desktop i sve na njemu. Podmeni ove opcije omogucava hvatanje virtuelnih desktopova ukoliko ih ima.<br />
<em>Window</em> opcija je vrlo napredna i omogucava snimanje screenshotova svakog od prozora koji su otvoreni u aktivnom workspace-u. Tu se podrazumeva conky kao poseban prozor i paneli. Nije potrebno raditi snimanje dela ekrana da bi se snimio recimo conky.<br />
Dodatak na  sve ovo je mogucnost manipulacije screenshotovima iz samog programa.<br />
Ispod menija <em>Screenshot</em> krije se opcija <em>Edit</em> koja otvara uhvaceni screenshot u novom prozoru sa alatom za jednostavno editovanje. U ovoj verziji programa je moguce dodati tekst, linije slobodnom rukom ili prave linije, oblike kao krug i pravougaonik. Sve dodato se tretira kao objekat koji je uvek moguce obeleziti i obrisati ako nismo zadovoljni promenom.<br />
Tu se nalazi i alatka <em>Censor</em> koja zapravo brise deo slike koji ne zelimo da se vidi. Naravno i promenu nacinjenu Censor opcijom je moguce obrisati <em>Gumicom</em> i sliku vratiti u predjasnje stanje.<br />
Jos jedna od prednosti Shuttera je jedan broj ugradjenih <em>plugina</em><em></em> za manipulaciju fotografijom. Izmedju ostalog tu je opcija prebacivanja slike u Pdf, greyscale, zamena svakog pixela komplementarnom bojom , podesavanjem ivica kao i promena velicine slike.<br />
Za kraj, program ima opciju <em>Upload/export</em> koja omogucava direktan upload na nekoliko web strana. Izmedju ostalih tu je i Iimageshack.us. Shutter koristi i ftp za upload kao sto je moguce  sliku prebaciti u neki drugi direktorijum na lokalnoj masini.</p>
<p>Shutter moze da sacuva screenshot u .png, .jpg i .bmp formatu. Shutter ostaje aktivan i uvek pri ruci u notification delu panela i odatle se mora ugasiti na Quit.</p>
<p>Shutter u akciji &#8211; <a href="http://www.youtube.com/watch?v=8G3gSuPgngU" target="_blank">video</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Firefox 3.5 and dbus-glib]]></title>
<link>http://kmandla.wordpress.com/2009/07/08/firefox-3-5-and-dbus-glib/</link>
<pubDate>Wed, 08 Jul 2009 01:14:57 +0000</pubDate>
<dc:creator>K.Mandla</dc:creator>
<guid>http://kmandla.wordpress.com/2009/07/08/firefox-3-5-and-dbus-glib/</guid>
<description><![CDATA[Since I&#8217;m on the subject, I should mention that I prefer to use the precompiled binary for Lin]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img src="http://xs435.xs.to/xs435/09044/cruxpeng544.png" alt="CRUX Linux" align="left" /><a href="http://kmandla.wordpress.com/2009/07/08/a-little-cheese-for-your-whine/">Since I&#8217;m on the subject</a>, I should mention that I prefer to use the <a href="http://www.mozilla.com/en-US/firefox/all.html">precompiled binary for Linux</a> over installing Firefox directly in either Crux or Arch. I don&#8217;t have any great insight as to why that&#8217;s preferable, except to say that I can still run a Crux system without hal and dbus, if I rely on a precompiled Firefox. (Running X in Crux does <em>not</em> require that I install those two.)</p>
<p>Or at least I could, until Firefox 3.5, which won&#8217;t run until dbus-glib is in place. The binary file was complaining that it couldn&#8217;t find a specific library, and I managed to track it back to dbus-glib. And of course, with that in place, all was fine.</p>
<p>Not as independent as I liked, but it works. I can&#8217;t say for sure that 3.5 is any better than 3.0.x for me, but I see no harm in keeping the browser up to date. <img src='http://s.wordpress.com/wp-includes/images/smilies/face-smile-big.png' alt=':D' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Martes sin X "Canto"]]></title>
<link>http://fausto23.wordpress.com/2009/07/07/martes-sin-x-canto/</link>
<pubDate>Tue, 07 Jul 2009 22:47:24 +0000</pubDate>
<dc:creator>fausto23</dc:creator>
<guid>http://fausto23.wordpress.com/2009/07/07/martes-sin-x-canto/</guid>
<description><![CDATA[
Un martes mas, y empezamos con esta solucion de lectura de feeds. Canto es un lector de feeds Atom/]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter size-full wp-image-1032" title="Canto" src="http://fausto23.wordpress.com/files/2009/07/captura-de-pantalla.png" alt="Canto" width="500" height="326" /></p>
<p>Un martes mas, y empezamos con esta solucion de lectura de feeds. <a href="http://codezen.org/canto/">Canto</a> es un lector de feeds Atom/RSS para la consola cuya fin es ser rapido, conciso y colorido. Este programa presenta una interfaz sin menus, se maneja todo a traves del teclado, ademas de poseer capacidades de expansion, gracias aque esta escrito en Python. Entre sus caracteristicas se encuentra:</p>
<p>-Soporte Atom/RSS/RDF</p>
<p>-Soporte Unicode (si lees sitios como digamos japones o caracteres japoneses los podras ver)</p>
<p>-Soporte para OPML</p>
<p>-Integracion con navegadores graficos y en modo texto.</p>
<p>-Poder seguir actualizandose desde segundo plano en modo daemon.</p>
<p>-Acomodar los feeds en grupos o en tags</p>
<p>Para instalar este programa en Debian o derivados (Ubuntu Jaunty en adelante)</p>
<p><code>sudo aptitude install canto</code></p>
<p>Para Arch:</p>
<p>Se encuentra en los repositorios AUR</p>
<p>Espero que les sirva</p>
<p>Sayounara.</p>
<p>NOTA: En rm -rf han <a href="http://phyx.wordpress.com/2009/07/07/snownews-lector-de-rss-terminal/">publicado otro lector de RSS por consola</a>, chequenlo tambien se ve bueno,</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Finalmente]]></title>
<link>http://ugaciaka.wordpress.com/2009/07/07/finalmente/</link>
<pubDate>Tue, 07 Jul 2009 17:06:36 +0000</pubDate>
<dc:creator>ugaciaka</dc:creator>
<guid>http://ugaciaka.wordpress.com/2009/07/07/finalmente/</guid>
<description><![CDATA[VLC è alla versione 1.0.0!!! Dopo sei anni di fidanzamento (che ho tradito qualche volta con kaffein]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>VLC è alla versione 1.0.0</strong>!!! Dopo sei anni di fidanzamento (che ho tradito qualche volta con kaffeine sotto kde 3.x.y) questo lodevolissimo software, che però uso solo per guardare qualsiasi cosa senza problemi, è arrivato alla versione fatidica versione di 1.0.0. Forse non vuol dire un cazzo ma quanti ricordi mi fa venire in mente, quanti film e porno che ho visto grazie a questo programma. Quante anteprime di file non ancora conclusi, ISO da masterizzare&#8230;</p>
<p>PS ho finalmente disinstallato k3b che mi accompagna fin dagli albori della mia esperienza con distro GNU/Linux. No ragazzi la versione alpha che si trova nei repo di Arch Linux è  troppo acerba (ma va? è un&#8217;alpha!). Ho così installato al suo posto sound-juicer, che si porta dietro anche brasero ma devo ancora provarlo, per convertire dai cd audio (in flac sul pc, non ho un lettore mp3 o similari) e xfburn per masterizzare. Dato che uso XFCE ho qualcosa che si integra anche meglio con il resto.</p>
<p>Ho anche notato che i programmi per KDE hanno maree di robe in più rispetto ai corrispettivi GNOME e XFCE, forse è solo un caso e non so se sia un bene o un male.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Dovidjenja K3b!]]></title>
<link>http://liticovjesac.wordpress.com/2009/07/06/dovidjenja-k3b/</link>
<pubDate>Mon, 06 Jul 2009 21:16:16 +0000</pubDate>
<dc:creator>liticovjesac</dc:creator>
<guid>http://liticovjesac.wordpress.com/2009/07/06/dovidjenja-k3b/</guid>
<description><![CDATA[
K3B je jedan od programa koji je uvek bio must to have u bilo kojoj varijanti linuxa koju sam imao ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><!-- 		@page { margin: 0.79in } 		P { margin-bottom: 0.08in } --></p>
<p style="margin-bottom:0;"><a title="k3b" href="http://k3b.plainblack.com/" target="_blank">K3B</a> je jedan od programa koji je uvek bio <em>must to have</em> u bilo kojoj varijanti linuxa koju sam imao instaliranu na kompjuteru. Na zalost, doslo je vreme da se rastanemo. Ne zato sto sam pronasao nesto bolje. Za <a title="gnomebaker" href="http://gnomebaker.sourceforge.net/" target="_blank">Gnomebaker</a> koji ce zameniti K3b ne mogu reci da je bolji. Koliko sam imao prilike da ga isprobam Gnomebaker radi podjednako dobro ono sto je i K3b radio &#8211; rezanje diskova i .iso fajlova.</p>
<p style="margin-bottom:0;">Problem sa K3b je u KDE 4 okruzenju koji pod mojim Gnome okruzenjem izgleda i radi ocajno. Najvise me nervira  sto kada hocu da kliknem na nesto u K3b nema nikakve reakcije vec moram da kliknem par milimetara ulevo od polja koje izdaje neku komandu. Na mom monitoru to izgleda kao da klikcem u prazan prostor, sto se ne moze tolerisati.</p>
<p style="margin-bottom:0;">Pored K3<span style="font-weight:normal;">b promenio sam jos jedan program iz KDE okruzenja koji je takodje bio must to oduvek. Rec je o <a title="krename" href="http://www.krename.net/" target="_blank">Krename</a>. Ovaj put nije problem bio u vizuelnom odudaranju Krename vec u mnogo vecoj funkcionalnosti <a title="pyrenamer" href="http://www.infinicode.org/code/pyrenamer/" target="_blank">Pyrenamer</a> koji preuzima mesto glavne aplikacije za masovno preimenovanje fajlova na mom kompjuteru. Njegova najveca prednost je sto koristi paterne prilikom preimenovanja te je tako moguce promeniti redosled reci i brojeva u imenu jednog fajla. Kako to izgleda moze se videti <a title="howto" href="http://www.infinicode.org/code/pyrenamer/manual.php" target="_blank">ovde</a>. Pored toga Pyrenamer radi brze od Krename jer ne mora da se prakticno restartuje svaki put kada zavrsi sa preimenovanjem jednog seta fajlova. Na kraju. Pyrenamer moze da radi sa meta podacima fotografija i audio fajlova i da te podatke koristi prilikom preimenovanja. Ukoliko u renamed image pattern ubacite polje <em>{imagedate}</em> Pyrenamer ce procitati meta fajl kada je snimljena fotografija i ubaciti datum u ime fajla na mestu na kome zelite. Preporucujem uvek koriscenje Preview opcije pre nego sto se promene imena fajlova. </span></p>
<p style="margin-bottom:0;"><span style="font-weight:normal;">Za kraj da pomenem jos jedan mali ali koristan program. <a title="goonvert" href="http://www.unihedron.com/projects/gonvert/" target="_blank">Gonvert</a> je program za konverziju mernih jedninica.  Pored 50 razlicitih mernih polja cije  jedinice konvertuje ovaj program je poseban jer radi i konverzije nekih mernih jedinica koje su postojale ranije u istoriji, a danas se vise ne koriste. Recimo moze se preracunati koliko jedan jevreski talent ima grckih drahmi, obolosa i minaha. Rec je naravno o masi,  ne o parama.<br />
</span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Finally trying Arch]]></title>
<link>http://fullmetalgerbil.wordpress.com/2009/07/06/2328/</link>
<pubDate>Mon, 06 Jul 2009 19:52:16 +0000</pubDate>
<dc:creator>Dave</dc:creator>
<guid>http://fullmetalgerbil.wordpress.com/2009/07/06/2328/</guid>
<description><![CDATA[Well, everything was going fine with the computers here at fullmetalHQ until suddenly the laptop was]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Well, everything was going fine with the computers here at fullmetalHQ until suddenly the laptop wasn&#8217;t able to connect to the wireless signal from the router both computers use. I was convinced something was fucked up with the laptop or maybe the router. My wife, on the other hand was sure it had something to do with the desktop, specifically Slackware.</p>
<p>A big arguement ensued because I was oh so certain that it was ridiculous to think that the operating system on the desktop could have anything to do with it, and she was sure that was the case because she connected everywhere else just fine with the laptop.</p>
<p>Well, as with all of our arguements, my wife won out and we reached a compromise. I&#8217;d install something else and see if the problem persisted. Well, I guess it was a compromise. So, since I had an Ubuntu 9.04 iso laying around, I burned an install disk and slapped it in the desktop.</p>
<p>And sure enough, and I don&#8217;t have the slightest idea why, but it worked. No more connection problems.</p>
<p>Trouble is, I don&#8217;t like Ubuntu that much. I mean, I installed it with an open mind and was willing to give it yet another chance&#8230;but I just don&#8217;t particularly care for it too much. I mean, it&#8217;s not terrible or anything. But I&#8217;ve already decided to load Arch Linux and  see if that will carry me over until Slackware 13 is released and I can get back my slack. Cause it&#8217;s just crazy-I had Slackware running on this desktop for over two months and there were zero problems, then I reinstalled it and shit started happening. So I don&#8217;t know if my install media went stale or what, but I figure I&#8217;ll try again when the next version comes out</p>
<p>But it&#8217;s funny, and at the same time one of the great things about Linux-there&#8217;s always another distribution you can run if you&#8217;re too lazy to fix the problem with the one you&#8217;re using. I mean, yeah, I could have figured out the problem and fixed it eventually I&#8217;m sure-but my wife wanted it addressed and fixed immediately if not sooner, and honestly though I think Slackware is the greatest thing since peanut butter I just didn&#8217;t really want to deal with figuring all types of shit out at the time.</p>
<p>So, now the Arch &#8220;cheater&#8221; live cd iso is about half downloaded and in a little while I&#8217;ll be able to find out for myself what all the hubub is about.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Spicebird, o Thunderbird con esteroides]]></title>
<link>http://fausto23.wordpress.com/2009/07/04/spicebird-o-thunderbird-con-esteroides/</link>
<pubDate>Sun, 05 Jul 2009 04:07:17 +0000</pubDate>
<dc:creator>fausto23</dc:creator>
<guid>http://fausto23.wordpress.com/2009/07/04/spicebird-o-thunderbird-con-esteroides/</guid>
<description><![CDATA[
Buscando un cliente de correo, me encontre con esta aplicación muy completa. Es Spicebird, un progr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter" title="spicebird" src="http://img2.pict.com/e3/46/55/1051360/0/640/capturadepantalla3.png" alt="" width="493" height="270" /></p>
<p>Buscando un cliente de correo, me encontre con esta aplicación muy completa. Es <a href="http://www.spicebird.com/">Spicebird</a>, un programa basado en el codigo de <a href="http://www.mozilla.com/thunderbird/">Mozilla Thunderbird</a> (la version 3.0), además de otros proyectos como <a href="http://www.mozilla.org/projects/calendar/lightning/">Lightning</a> y <a href="http://telepathy.freedesktop.org/">Telepathy</a>. Las características sobresalientes son soporte para los applets de Google (los de iGoogle),  también para servicios de google (Gmail, sincronizacion con Google calendar, IM con Gtalk), calendario y para anotar tareas integrado, soporte para pestañas, claro esta las características de thunderbird (correo, noticias, addons de Thunderbird).</p>
<p>La aplicación es multiplataforma, ademas que se encuentra en múltiples lenguajes. Para instalar en sistemas GNU/Linux:</p>
<p>Descargamos el paquete del idioma que queramos (en este caso sera ES-AR):</p>
<p><code>wget http://files.spicebird.org/pub/spicebird.org/spicebird/releases/0.7.1/linux-i686/es-AR/spicebird-beta-0.7.1.es-AR.linux-i686.tar.bz2</code></p>
<p>Descomprimos el paquete:</p>
<p><code>tar jxvf spicebird-beta-0.7.1.es-AR.linux-i686.tar.bz2</code></p>
<p>Seguido:</p>
<p><code>cd spicebird-beta/ &#38;&#38; ./spicebird</code></p>
<p>Y ya lo podemos ejecutar en nuestro sistema.</p>
<p>Espero que les sirva</p>
<p>Sayounara</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[chaox 2009.7 is here!]]></title>
<link>http://blag.chaox.net/2009/07/04/chaox-2009-7-is-here/</link>
<pubDate>Sat, 04 Jul 2009 19:07:49 +0000</pubDate>
<dc:creator>jensp</dc:creator>
<guid>http://blag.chaox.net/2009/07/04/chaox-2009-7-is-here/</guid>
<description><![CDATA[So finally we got our stuff together to give you the best chaox release so far. This release comes w]]></description>
<content:encoded><![CDATA[So finally we got our stuff together to give you the best chaox release so far. This release comes w]]></content:encoded>
</item>
<item>
<title><![CDATA[Balik lagi ke ubuntu]]></title>
<link>http://1byte8bit.wordpress.com/2009/07/01/balik-lagi-ke-ubuntu/</link>
<pubDate>Wed, 01 Jul 2009 13:18:10 +0000</pubDate>
<dc:creator>Adi Sunarya</dc:creator>
<guid>http://1byte8bit.wordpress.com/2009/07/01/balik-lagi-ke-ubuntu/</guid>
<description><![CDATA[Setelah 5 bulan lebih berkelana mencari dan mencoba &#8211; coba distro linux yang lain, mulai dari ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Setelah 5 bulan lebih berkelana mencari dan mencoba &#8211; coba distro linux yang lain, mulai dari <a title="Situs debian" href="http://www.debian.org/" target="_blank">debian 5.0 lenny</a>, kemudian berpaling ke dekapan <a title="Situs opensuse" href="http://www.opensuse.org/" target="_blank">openSuSe 11.1</a>, dan akhirnya untuk sementara waktu tertambat pada <a title="Situs ArchLinux" href="http://archlinux.org/" target="_blank">ArchLinux</a> yang ringan, dan sistem rolling releasenya, sembari melirik-lirik <a title="Situs Fedora" href="http://fedoraproject.org" target="_blank">Fedora 11 Leonidas</a> (Sampe bela-belain download ISO DVD nya lho&#8230;walaupun belum sempet tak install, baru nyicipin yang live CD doank&#8230;hehehe&#8230;).</p>
<p>Akhirnya karena merasa bosen harus mengkonfigurasi manual paket &#8211; paket aplikasi yang diinstall di Arch Linux (walaupun menantang dan menyenangkan), dan mesti download dari internet paket &#8211; paket aplikasinya (gak kuat euy, cepet abis kuota im2 broomku&#8230;), disamping itu juga karena ada proyek yang harus secepatnya diselesaikan, maka saya memutuskan untuk balik lagi ke <a title="Situs ubuntu" href="http://ubuntu.com/" target="_blank">ubuntu</a>, soalnya udah ada repository lokalnya di kampus, jadinya gak perlu download n connect ke internet buat nginstallnya&#8230;hehe&#8230;^^</p>
<p>Tapi tenang aja, Arch Linux dan yang lainnya gak serta merta ditinggalkan kok, Arch Linux ku masih tetep terpasang di harddisk laptop saya, berdampingan dengan ubuntu ku&#8230;.</p>
<p>Sebenernya distro apa aja bisa n layak buat dipakai kok, saya balik lagi ke ubuntu hanya karena keterbatasan sumber daya (kuota internet) yang nggak memadai, kita bisa tetep produktif menggunakan distro apapun&#8230;</p>
<p><strong>KEEP CODING N OPEN-SOURCE&#8230;</strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Martes sin X "Moc"]]></title>
<link>http://fausto23.wordpress.com/2009/06/30/martes-sin-x-moc/</link>
<pubDate>Tue, 30 Jun 2009 22:56:06 +0000</pubDate>
<dc:creator>fausto23</dc:creator>
<guid>http://fausto23.wordpress.com/2009/06/30/martes-sin-x-moc/</guid>
<description><![CDATA[
Abrimos una nueva serie de posts semanales, asi como los de los fondos de pantallas, los martes hab]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter size-full wp-image-1011" title="Moc" src="http://fausto23.wordpress.com/files/2009/06/captura-de-pantalla-2.png" alt="Moc" width="461" height="238" /></p>
<p>Abrimos una nueva serie de posts semanales, asi como los de los fondos de pantallas, los martes hablaremos de programas sin interfaz grafica, y que funcionen bajo la consola, y vaya que hay una buena cantidad de ellos.</p>
<p>El programa que empieza esto es <a href="http://moc.daper.net/">Moc</a> (Music on Console), es un reproductor de audio de consola para los sistemas *nix diseñado para su facilidad de uso. Se puede elegir entre directorios o archivos para la reproducción de audio, búsqueda entre los archivos, formar listas de música y exportarlas en .m3u, inclusive tiene soporte para streaming de audio (Shoutcast e Icecast). Los archivos que lee este programa son mp3, ogg vorbis, FLAC, wave, Aiff, y mas (para archivos wav necesita un plugin). Ademas de otras características como cambio de color, soporte para JACK, Alsa y Oss para escuchar los archivos.</p>
<p>Para instalarlo en Debian o derivados:</p>
<p><code>sudo apt-get install moc</code></p>
<p>En Arch Linux:</p>
<p><code>pacman -Sy moc</code></p>
<p>Espero que les sirva.</p>
<p>Sayounara</p>
<p>NOTA: El binario de moc es mocp (segun el desarrollador para evitar problemas con otros programas) asi que para usarlo usariamos (un ejemplo, pueden la terminal de su agrado)</p>
<p><code>xterm -e mocp -I /home/usuario/Música</code></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Tu Opinion | El kung-fu de Arch Linux vs Ubuntu a fondo y vice versa.]]></title>
<link>http://phyx.wordpress.com/2009/06/29/tu-opinion-el-kung-fu-de-arch-linux-vs-ubuntu-a-fondo-y-vice-versa/</link>
<pubDate>Mon, 29 Jun 2009 19:11:39 +0000</pubDate>
<dc:creator>Nico</dc:creator>
<guid>http://phyx.wordpress.com/2009/06/29/tu-opinion-el-kung-fu-de-arch-linux-vs-ubuntu-a-fondo-y-vice-versa/</guid>
<description><![CDATA[Hoy leyendo esta pequeña comparaciòn entre Arch y Ubuntu,me he hecho un par de preguntas ràpidas:

P]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Hoy leyendo <a href="http://wiki.archlinux.org/index.php/Arch_Compared_To_Other_Distros#Arch_vs_Ubuntu">esta pequeña comparaciòn entre Arch y Ubuntu</a>,me he hecho un par de preguntas ràpidas:</p>
<ul>
<li>Puede Arch ser mejor que Ubuntu?</li>
<li>Existe verdaderamente gran tendencia de que los usuarios de Ubuntu migren a Arch?</li>
<li>Prefiero continuar con el circo de los 6 meses o atarme a los rolling release?</li>
</ul>
<p>Para no quedarme con dudas,lo instalarè (otra vez) y lo probarè (esta vez) mas a fondo.Pero primero quisiera escuchar un par de opiniones de uds (lectores).</p>
<p><strong>Mi opinion</strong> (breve y poco profunda) :</p>
<ul>
<li><strong>Arch</strong> no està destinado para novatos ni para maquinas viejas.</li>
<li><strong>Ubuntu</strong> ès fàcil de usar y con muchas caracteristicas out-of-the-box.</li>
</ul>
<p><strong>Corto resumen:</strong> Dos grandes distribuciones con diferentes propósitos!.</p>
<p><strong>Tu opinion:</strong></p>
<ul>
<li>Porque Arch y no Ubuntu?</li>
<li>Porque Ubuntu y no Arch?</li>
<li>Porque las dos?</li>
<li>Porque ninguna de las dos?</li>
</ul>
<p><strong>Gracias por tu opinion!.</strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Conkeror, navegando con el teclado como Emacs]]></title>
<link>http://fausto23.wordpress.com/2009/06/28/conkeror-navegando-con-el-teclado-como-emacs/</link>
<pubDate>Sun, 28 Jun 2009 22:39:32 +0000</pubDate>
<dc:creator>fausto23</dc:creator>
<guid>http://fausto23.wordpress.com/2009/06/28/conkeror-navegando-con-el-teclado-como-emacs/</guid>
<description><![CDATA[
En post anterior, mi compañero hablo sobre una extensión que permitia manejar a firefox como si fue]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter" title="conkeror" src="http://img2.pict.com/d9/8b/a7/978009/0/640/capturadepantalla1.png" alt="" width="469" height="282" /></p>
<p>En post anterior, mi compañero hablo sobre una <a href="http://fausto23.wordpress.com/2009/05/17/vimperator-firefox-para-vim-eros/">extensión que permitia manejar a firefox como si fuera Vim</a>. Ahora les traigo un navegador completo que funciona solo con atajos del teclado, como si fuera el editor Emacs.</p>
<p><a href="http://conkeror.org/">Conkeror</a> es una navegador basado en Mozilla Firefox , con la finalidad de ser manejado a traveso de atajos del teclado, inspirado en aplicaciones como <a href="http://www.gnu.org/software/emacs/">Emacs</a> y <a href="http://www.vim.org/">Vim</a>. Al ser basado en Firefox, también le funcionan las extensiones de este (aunque no todas, checar esta pagina). Al principio solo veras una ventana con el manual para usarlo, sin toolbars, una interfaz limpia.</p>
<p>En sistemas Debian o derivados el programa se encuentra en los repositorios:</p>
<p><code>sudo apt-get install conkeror</code></p>
<p>Para Arch Linux:</p>
<p><code>pacman -Sy conkeror-git</code></p>
<p>Para otros distribuciones pueden seguir estas <a href="http://conkeror.org/InstallationUnix">instrucciones</a>.</p>
<p>Un navegador, que sirve para los que prefieren manejarlo todo con el teclado o también para pantallas pequeñas.</p>
<p>Espero que les sirva =)</p>
<p>Sayounara</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Review Arch Linux -- Part 1]]></title>
<link>http://1byte8bit.wordpress.com/2009/05/05/review-arch-linux-part1/</link>
<pubDate>Tue, 05 May 2009 14:08:44 +0000</pubDate>
<dc:creator>Adi Sunarya</dc:creator>
<guid>http://1byte8bit.wordpress.com/2009/05/05/review-arch-linux-part1/</guid>
<description><![CDATA[Diawali dari rasa ingin tahu n nyoba sesuatu yang baru (Distro linux yang baru),  jadinya saya mutus]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Diawali dari rasa ingin tahu n nyoba sesuatu yang baru (Distro linux yang baru),  jadinya saya mutusin untuk nyoba Arch Linux, awalnya sih sempet ragu &#8211; ragu juga alnya, dari beberapa referensi di internet n review &#8211; review nya, Arch linux tu bisa dikatakan kayak Linux From Scratch, jadi kita secara penuh meng-kustom arch linux kita (semuanya) mulai dari konfigurasi awal sampai nginstall Desktop Environmentnya&#8230; (kebayang gak tuh ribetnya??)&#8230; tapi entah kenapa saya ingin mencobanya ( yaah namanya tantangan mungkin).., disamping itu juga karena tergiur karena banyak yang bilang arch linux tu bagus, ringan, n dukungan komunitasnya yang sangat aktif, disamping itu juga karena konfigurasi manual (yang katanya) gampang&#8230; jadinya makin tergiur deh&#8230; Dan yang paling penting tu karena Arch linux menyediakan software &#8211; software terbaru karena ia menganut sistem rolling release&#8230;</p>
<p>oke, langsung aja saya download iso CD nya yang di-mirror oleh cbn.net.id di <a title="archlinux.cbn.net.id/iso/" href="http://archlinux.cbn.net.id/iso/" target="_blank">http://archlinux.cbn.net.id/iso/</a>, CD installernya berupa network install CD jadi nya cuman base system (sistem dasar) nya aja yang diinstall, untuk yang lain yaa mesti konek ke internet buat nginstallnya&#8230; (untungnya waktu itu ada acara nginep di kampus, jadinya gak perlu repot n nunggu lama nginstallnya &#8212; internet gratis euy)..</p>
<p>saya rasa sih proses instalasinya gak terlalu susah, seperti kebanyakan cara nginstall linux yang lain, tahap yang paling susah mungkin tahap pemartisiannya aja (itupun gak susah &#8211; susah banget), kalo kita ngikutin <a href="http://wiki.archlinux.org/index.php/Beginners_Guide_(Indonesia)" target="_blank">arch install guide</a> nya semua langkah &#8211; langkah akan lancar &#8211; lancar aja&#8230;</p>
<p>mungkin baru bisa segitu dulu review nya, lagi sibuk nih, banyak kerjaan &#8212; biasalah mahasiswa&#8230;</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
