<?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>fedora &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/fedora/</link>
	<description>Feed of posts on WordPress.com tagged "fedora"</description>
	<pubDate>Mon, 23 Nov 2009 20:49:16 +0000</pubDate>

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

<item>
<title><![CDATA[Fedora Hits Another Home Run with Fedora 12 'Constantine']]></title>
<link>http://press.redhat.com/2009/11/23/fedora-hits-another-home-run-with-fedora-12-constantine/</link>
<pubDate>Mon, 23 Nov 2009 19:34:48 +0000</pubDate>
<dc:creator>karaschiltz</dc:creator>
<guid>http://press.redhat.com/2009/11/23/fedora-hits-another-home-run-with-fedora-12-constantine/</guid>
<description><![CDATA[Last week brought an early holiday present to many open source enthusiasts and technology consumers ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Last week brought an early holiday present to many open source enthusiasts and technology consumers with the release of Fedora 12.  Every six months the anticipation builds as I look forward to taking the latest version of Fedora for a test drive and trying out all of the new features and enhancements.  After just a few days with Fedora 12 I&#8217;m already impressed with the feature set and polish in this release.</p>
<p>I&#8217;ve installed Fedora 12 on one of my laptops and also on a Dell mini netbook.  First off, I really like the artwork in Fedora 12 and the new theme with the rays of light looks great.  The <a href="https://fedoraproject.org/wiki/Artwork">Fedora Design Team</a> continues to impress me with the new graphics and imagery they create for each release. Beyond that, everything just feels better and more comfortable, and the extra attention to detail all around the desktop really pays off.</p>
<p>I installed Fedora 12 from a USB key and the process was flawless and the fastest I&#8217;ve experienced yet with Fedora.  The boot time was also very quick – even on my netbook.  I&#8217;m excited to see Fedora&#8217;s support for the <a href="http://fedoraproject.org/wiki/Features/FedoraMoblin">Moblin</a> Core desktop environment in Fedora 12. This is my first experience with Moblin and I&#8217;m looking forward to putting in more time to test it out.  Fedora continues to show the flexibility and functionality of free software and its impressive coverage of mini systems and netbooks with the inclusion of Moblin in Fedora 12. </p>
<p>Another feature in Fedora 12 that I&#8217;m happy to see is the <a href="https://fedoraproject.org/wiki/Features/BetterWebcamSupportF12">improved webcam support</a>.  My webcam just works with Fedora 12. </p>
<p>Fedora 12 also includes several new <a href="http://press.redhat.com/2009/11/17/fedora-12-spotlight-feature-virtualization-enhancements/">virtualization features</a> such as libguestfs that I look forward to trying out.</p>
<p>Red Hat’s software development model relies on its active sponsorship of leading open source projects including Fedora.   This model enables Red Hat to deliver superior technology, faster, and with resulting products that are better suited to customer requirements.  I thank the Fedora community for its continued hard work and congratulate them on yet another solid release.  I encourage everyone to download Fedora 12 today and take it for a spin: <a href="http://fedoraproject.org/get-fedora">http://fedoraproject.org/get-fedora</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Prebuilt distributions part 2]]></title>
<link>http://rwmj.wordpress.com/2009/11/23/prebuilt-distributions-part-2/</link>
<pubDate>Mon, 23 Nov 2009 17:35:07 +0000</pubDate>
<dc:creator>rich</dc:creator>
<guid>http://rwmj.wordpress.com/2009/11/23/prebuilt-distributions-part-2/</guid>
<description><![CDATA[In part 1 I discussed how these days Linux Live CDs usually come with a prebuilt disk image of the d]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://rwmj.wordpress.com/2009/11/23/prebuilt-distributions-part-1/">In part 1</a> I discussed how these days Linux Live CDs usually come with a prebuilt disk image of the distro which is simply copied over to the hard disk during installation.  (The &#8220;old&#8221; method was to rpm/dpkg-install the packages which is much more time-consuming).  However my first test wasn&#8217;t very successful because I was using the &#8220;cp&#8221; command to copy files.</p>
<p><a href="http://fedoraproject.org/wiki/Anaconda">Anaconda (the Fedora installer)</a> is smarter than this.  It &#8220;dd&#8221;s the prebuilt disk image to the hard disk and then uses an ext2/3/4 utility called <a href="http://linux.die.net/man/8/resize2fs">resize2fs</a> to expand it to the correct size.</p>
<p>I changed the <a href="http://rwmj.wordpress.com/2009/11/23/prebuilt-distributions-part-1/#more-985">previous guestfish script</a> to take this approach.</p>
<p>The new/Anaconda approach is much faster.  Our total time is down from over 18 minutes to <b>2&#189; minutes</b> (approximately 2 minutes for the &#8220;dd&#8221;, 2 <i>seconds</i> for the resize2fs, and the rest of the time taken doing the partitioning and LVM creation).</p>
<p>Unfortunately we have to leave Ubuntu behind at this point.  Ubuntu ships with a squashfs, and I&#8217;m not aware of any way to turn this into an ext3 partition efficiently (except to use &#8220;cp&#8221; which we showed in part 1 was very slow).  The new script only works with Fedora Live CD ISOs.</p>
<p>The new script is after the cut.</p>
<p><!--more--></p>
<pre style="background-color:#fcfcfc;border-left:6px solid #f0f0f0;margin-left:1em;font-size:120%;padding:5px;">
<font color="red">#!/bin/bash -</font>

function usage ()
{
    echo "virt-prebuilt.sh live.iso disk.img size"
    echo "  where 'live.iso' is a Fedora Live ISO"
    echo "        'disk.img' is the target disk image"
    echo "        'size' is the target size in Gigabytes"
    exit 1
}

if [ $# -ne 3 ]; then
    usage
fi

<font color="red"># Work out size of target LV.</font>
target_boot_mb=200
target_lv_mb=$(($3 * 1024 - $target_boot_mb - 128))

<font color="red"># Run guestfish.</font>
time \
guestfish -x -a "$1" &#60;&#60;EOF
<font color="red"># The source ISO will be /dev/sda.  The target drive will be /dev/sdb.</font>
<font color="green">alloc "$2" "$3G"
run

<font color="red"># Get to the packed ext3 filesystem.</font>
mkmountpoint /t
mount-ro /dev/sda /t
mkmountpoint /tt
mount-loop /t/LiveOS/squashfs.img /tt

<font color="red"># Make a separate /boot partition on the target disk.</font>
sfdiskM /dev/sdb ",$target_boot_mb ,"
mkfs ext3 /dev/sdb1

<font color="red"># Make the root LV.</font>
pvcreate /dev/sdb2
vgcreate vg_live /dev/sdb2
lvcreate lv_live vg_live $target_lv_mb

<font color="red"># Copy the packed filesystem to the root LV and resize.</font>
time dd /tt/LiveOS/ext3fs.img /dev/vg_live/lv_live
time resize2fs /dev/vg_live/lv_live

<font color="red"># Mount the root filesystem and copy /boot to /dev/sdb1</font>
mkmountpoint /root
mount /dev/vg_live/lv_live /root
mkmountpoint /boot
mount /dev/sdb1 /boot
glob cp-a /root/boot/* /boot
df-h

<font color="red"># Unmount everything and exit.</font>
unmount /root
unmount /boot
unmount /tt
unmount /t

echo Done.</font>
EOF
</pre>
<p>Anaconda doesn&#8217;t just do a straight copy, it also does a whole lot of munging of the filesystem afterwards, including replacing <code>/etc/fstab</code> and rebuilding the initramfs.  The script above avoids that so you can only boot it in qemu using an external -kernel and -initrd.</p>
<p>I think this technique is promising.  It certainly sounds wonderful to &#8220;stamp out&#8221; new distro installs in a minute or two.  But &#8230;</p>
<ol>
<li> Distributions would all have to start shipping filesystem images.
<li> Distro-specific munging would have to be kept to an absolute minimum.
<li> Get rid of initramfs&#8217;s that contain hard-coded details about the specific platform on which they boot (a very good idea in general IMHO).
</ol>
<p>In part 3 I&#8217;m going to compare how this approach compares to others: virt-install, manual installation, kickstart, cobbler, debootstrap and ubuntu-vm-builder.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Deixando as permissões corretas para o Cron whm/cpanel centos/redhat]]></title>
<link>http://littleoak.wordpress.com/2009/11/23/deixando-as-permissoes-corretas-para-o-cron-whmcpanel-centosredhat/</link>
<pubDate>Mon, 23 Nov 2009 12:55:00 +0000</pubDate>
<dc:creator>littleoak</dc:creator>
<guid>http://littleoak.wordpress.com/2009/11/23/deixando-as-permissoes-corretas-para-o-cron-whmcpanel-centosredhat/</guid>
<description><![CDATA[Para saber como deixar seu cron rodando filé acesse: http://www.nerdblog.info/2009/11/23/colocando-a]]></description>
<content:encoded><![CDATA[Para saber como deixar seu cron rodando filé acesse: http://www.nerdblog.info/2009/11/23/colocando-a]]></content:encoded>
</item>
<item>
<title><![CDATA[Instalando YUM no CENTOS 5 (32 e 64 bits)]]></title>
<link>http://littleoak.wordpress.com/2009/11/23/instalando-yum-no-centos-5-32-e-64-bits/</link>
<pubDate>Mon, 23 Nov 2009 11:04:17 +0000</pubDate>
<dc:creator>littleoak</dc:creator>
<guid>http://littleoak.wordpress.com/2009/11/23/instalando-yum-no-centos-5-32-e-64-bits/</guid>
<description><![CDATA[Para instalar o YUM no CENTOS 5 basta seguir este how to: http://www.nerdblog.info/2009/11/12/instal]]></description>
<content:encoded><![CDATA[Para instalar o YUM no CENTOS 5 basta seguir este how to: http://www.nerdblog.info/2009/11/12/instal]]></content:encoded>
</item>
<item>
<title><![CDATA[Webmail no cpanel whm não envia mais mensagens]]></title>
<link>http://littleoak.wordpress.com/2009/11/23/webmail-no-cpanel-whm-nao-envia-mais-mensagens/</link>
<pubDate>Mon, 23 Nov 2009 11:02:46 +0000</pubDate>
<dc:creator>littleoak</dc:creator>
<guid>http://littleoak.wordpress.com/2009/11/23/webmail-no-cpanel-whm-nao-envia-mais-mensagens/</guid>
<description><![CDATA[Saiba como solucionar este problema em: http://www.nerdblog.info/2009/11/04/webmail-no-cpanel-whm-na]]></description>
<content:encoded><![CDATA[Saiba como solucionar este problema em: http://www.nerdblog.info/2009/11/04/webmail-no-cpanel-whm-na]]></content:encoded>
</item>
<item>
<title><![CDATA[Prebuilt distributions part 1]]></title>
<link>http://rwmj.wordpress.com/2009/11/23/prebuilt-distributions-part-1/</link>
<pubDate>Mon, 23 Nov 2009 11:02:23 +0000</pubDate>
<dc:creator>rich</dc:creator>
<guid>http://rwmj.wordpress.com/2009/11/23/prebuilt-distributions-part-1/</guid>
<description><![CDATA[Previously I took a look at unpacking Fedora and Ubuntu live CDs to find out what&#8217;s inside the]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://rwmj.wordpress.com/2009/11/21/looking-closer-at-fedora-ubuntu-live-cds/">Previously I took a look at unpacking Fedora and Ubuntu live CDs</a> to find out what&#8217;s inside them and to ask the question can we use the prebuilt filesystem image that these live CDs contain to quickly create a Fedora or Ubuntu &#8220;all-defaults&#8221; virtual machine?</p>
<p>This is my first attempt, and it&#8217;s not successful, but it does demonstrate a large and interesting <a href="http://libguestfs.org/guestfish.1.html">guestfish</a> <a href="http://libguestfs.org/recipes.html">script</a> doing a non-trivial amount of work.</p>
<p>This script:</p>
<ol>
<li> mounts the prebuilt filesystem from either a Fedora or Ubuntu live CD
<li> creates a disk image with a 200 MB /boot partition and a single / (root) logical volume covering the remainder of the disk
<li> uses the <a href="http://libguestfs.org/guestfish.1.html#cp_a">cp -a command</a> to recursively copy the prebuilt filesystem to the disk
</ol>
<p>Where it fails is that &#8220;cp&#8221; isn&#8217;t very fast.  On my local machine it took 18 minutes to copy all the files across, which means this isn&#8217;t a practical &#8220;instant install&#8221; method.  (I didn&#8217;t in the end try to boot the final disk image).</p>
<p>In part 2 this week, I&#8217;ll look at the approach that <a href="http://fedoraproject.org/wiki/Anaconda">anaconda</a> takes: It dd&#8217;s the disk image and then runs <a href="http://linux.die.net/man/8/resize2fs">resize2fs</a> on it to expand it into the available space.</p>
<p>In part 3 I&#8217;ll compare this approach to others: virt-install, manual installation, kickstart, cobbler, debootstrap and ubuntu-vm-builder.</p>
<p>The script itself follows after the cut:</p>
<p><!--more--></p>
<pre style="background-color:#fcfcfc;border-left:6px solid #f0f0f0;margin-left:1em;font-size:120%;padding:5px;">
<font color="red">#!/bin/bash -</font>

function usage ()
{
    echo "virt-prebuilt.sh live.iso disk.img size"
    echo "  where 'live.iso' is a Fedora or Ubuntu Live ISO"
    echo "        'disk.img' is the target disk image"
    echo "        'size' is the target size in Gigabytes"
    exit 1
}

if [ $# -lt 3 ]; then
    usage
fi

<font color="red"># Make the commands to unpack the ISO.
# See:
# http://rwmj.wordpress.com/2009/11/21/looking-closer-at-fedora-ubuntu-live-cds</font>
case $(basename $1) in
    ubuntu-*.iso)
	mount_cmds=<font color="green">"
mkmountpoint /t1
mount-ro /dev/sda /t1
mkmountpoint /fs
mount-loop /t1/casper/filesystem.squashfs /fs
"</font>
	;;
    Fedora-*Live.iso)
	mount_cmds=<font color="green">"
mkmountpoint /t1
mount-ro /dev/sda /t1
mkmountpoint /t2
mount-loop /t1/LiveOS/squashfs.img /t2
mkmountpoint /fs
mount-loop /t2/LiveOS/ext3fs.img /fs
"</font>
	;;
    --help&#124;-help)
	usage
	;;
    *)
	echo "$1: unknown ISO image type (must be Ubuntu or Fedora ISO)"
	usage
esac

<font color="red"># Work out size of target LV.</font>
target_boot_mb=200
target_lv_mb=$(($3 * 1024 - $target_boot_mb - 128))

<font color="red"># Run guestfish.</font>
guestfish -x -a "$1" &#60;&#60;EOF
<font color="red"># The source ISO will be /dev/sda.  The target drive will be /dev/sdb.</font>
<font color="green">alloc "$2" "$3G"
run

<font color="red"># This mounts up the ISO filesystem on /fs</font>
$mount_cmds

echo fstab on target:
cat /fs/etc/fstab

<font color="red"># Make a separate /boot partition on the target disk.</font>
sfdiskM /dev/sdb ",$target_boot_mb ,"
mkmountpoint /target
mkfs ext3 /dev/sdb1

<font color="red"># Make the root LV.</font>
pvcreate /dev/sdb2
vgcreate vg_live /dev/sdb2
lvcreate lv_live vg_live $target_lv_mb
mkfs ext3 /dev/vg_live/lv_live

<font color="red"># Mount up the target disks.</font>
mount /dev/vg_live/lv_live /target
mkdir /target/boot
mount /dev/sdb1 /target/boot

<font color="red"># Copy everything across.</font>
time cp-a /fs /target

unmount /target
-unmount /fs
-unmount /t2
-unmount /t1

echo Done.</font>
EOF
</pre>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Find VM's older than N days to free disk space]]></title>
<link>http://blog.sharevm.com/2009/11/23/find-vms-older-than-n-days-to-free-disk-space/</link>
<pubDate>Mon, 23 Nov 2009 08:35:08 +0000</pubDate>
<dc:creator>paule1s</dc:creator>
<guid>http://blog.sharevm.com/2009/11/23/find-vms-older-than-n-days-to-free-disk-space/</guid>
<description><![CDATA[I wrote a Python 2.6 script to find and list VM&#8217;s older than 90 days on my Windows workstation]]></description>
<content:encoded><![CDATA[I wrote a Python 2.6 script to find and list VM&#8217;s older than 90 days on my Windows workstation]]></content:encoded>
</item>
<item>
<title><![CDATA[Fedora12 インストール記]]></title>
<link>http://codeairedge.wordpress.com/2009/11/23/fedora12-%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e8%a8%98/</link>
<pubDate>Mon, 23 Nov 2009 07:50:17 +0000</pubDate>
<dc:creator>code_air_edge</dc:creator>
<guid>http://codeairedge.wordpress.com/2009/11/23/fedora12-%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e8%a8%98/</guid>
<description><![CDATA[えー、Fedora12がリリースされたということでさっそくインストールしてみました。 今回インストールしたマシンの構成は以下の通り。 CPU:PhenomII X4 905e Mem:DDR3 4GB]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>えー、Fedora12がリリースされたということでさっそくインストールしてみました。<br />
今回インストールしたマシンの構成は以下の通り。</p>
<li>CPU:PhenomII X4 905e</li>
<li>Mem:DDR3 4GB</li>
<li>M/B:GIGABYTE MA785GPMT-UD2H</li>
<p>で、まずLiveUSBで起動しようとしたら失敗。どうもログイン画面の直前でフリーズしてしまうらしい。<br />
LiveUSBがKDEだから悪いのだろうか、とか色々と考えて試してはみたもののにっちもさっちも。</p>
<p>しゃーないのでNetinstCDでもってインストールを試みることに。<br />
こちらの起動メニューは通常のブートとベーシックなビデオドライバでのブートがあったのですが、ベーシックなビデオドライバでないと起動できませんでした。どうもビデオドライバの問題ということみたいですね。</p>
<p>で、そこから先は何もトラブルなくインストール完了。Fedoraの割にノントラブルとかちょっと拍子抜けするなーなんて思わなくもない。</p>
<p>で、起動後に適当にパッケージを追加して適当に設定。今回は初めてAMD系のビデオドライバとしたのですが、オープンソースのドライバだと3D機能が有効にできない。開発中というradeonhdを試してみるもダメ。まぁちゃんとradeonhdになっているかはよく分かってないのですが＾＾；</p>
<p>ただ、radeonhdのドライバを使おうと使うまいと、サウンドはHDMI経由から出せるようです。デフォルトがそうなっててちょっとビックリ。サウンドは192kHzで出せるとかマニュアルに書いてあった気もしたんですが、PulseAudioで試したところ96kHzが限度でした。いやまぁ96kHzで十分だけどさ。</p>
<p>旧PCからのデータも移行できましたし、radeonドライバでもデュアルディスプレイにはなっているので実用上問題はありません。Compizが使えないのが悲しいですが、それは今後のドライバの進化を楽しみにしておくとしましょう。</p>
<p>プロプライエタリなドライバもあるようですが、そちらはまだ対応できてないようです。nVidiaの方はどうなっているか知りませんが、AMDが遅いのはいつものことらしいので気長に待ちますかね。</p>
<p>旧PCから引き継げていないものとして、Postfixの設定があります。この設定をどうも間違っているらしく、プロセスが立ち上がらない…。<br />
エラーメッセージもでないので正直困ってます。後からじっくり調べてみよう。こいつがなくてもさして困りはしないけどさ…w</p>
<p>ということで、クァッドコアを満喫しております。Firefox使っていても処理が重くならないのがいいですね。<br />
また、メモリはやっぱり4GB積んでいようとほぼフルで使いきろうとするんですね（笑）　ディスクキャッシュが大半ですが、どんだけディスクキャッシュに喰うんだよと。面白いもんです。</p>
<p>あとはCompizだけだなー。ドライバ開発ガンバレ！</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Maldito protocolo de windows live! Aberracion del programador antisocial.]]></title>
<link>http://davidmora.wordpress.com/2009/11/23/maldito-protocolo-de-windows-live-aberracion-del-programador-antisocial/</link>
<pubDate>Mon, 23 Nov 2009 06:27:36 +0000</pubDate>
<dc:creator>davidmora616</dc:creator>
<guid>http://davidmora.wordpress.com/2009/11/23/maldito-protocolo-de-windows-live-aberracion-del-programador-antisocial/</guid>
<description><![CDATA[Ok, a ver: Todos sabemos que es messenger, sabemos que es una plataforma de comunicacion basada en .]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ok, a ver: Todos sabemos que es messenger, sabemos que es una plataforma de comunicacion basada en .Net Framework de Microsoft (Compañia que odio y desprecio), y que esta instalado por default en cada pinche sistema que Microsoft lanza y que gracias a esto la gente cree que messenger es el unico programa de IM existente o bien, cree que es el mejor programa de IM que se puede encontrar en la web. Pues bueno eso es falso. Pra empezar toda tecnologia de Microsoft es mediocre, si es mediocre es inestable y que es un app inestable? NADA. Pero este post no se enfoca al protocolo del app ni al messenger en si, ni mucho menos en este famoso winsocket que todos los amiguitos y fiel seguidores de Gates usan para decir : <strong>&#8220;uy VB es la hostia! Logre programar mi propio msn en menos de 300 lineas!&#8221; </strong></p>
<p>El post se enfoca en declarar a msn como <strong>La aplicacion mas hipocrita de todas. </strong>Y esto por que? Bueno estimado lector o lectora, aca es cuando le pregunto amablemente: Tiene usted vida social? Si la repuesta es si, dudo mucho que usd comprenda mis fundamentos para redactar esta entrada del blog, pero si la respuesta es no y es usd un geek que se desvela por programar por placer en lenguajes que valen la pena o bien jugando con el kernel amado de linux entonces es posible que me entienda. No tengo vida social por estar en mi cuarto mas de 12 horas por dia escribiendo codigo, y esto a que tiene que ver con msn? Simple, que a pesar de  estar solo uso el msn o al menos su protocolo ya que como uso linux utilizo clones como aMSN o emesene (Que a pesar de ser clones resultan ser mejores que el msn original), y ustedes se diran: Pero todo mundo usa msn, bueno creanme no todo el mundo opta por esta basura pero yo lo tengo que hacer por que a noob que ayudo a noob que agrego. En la universidad he ayudado a muchos noobs: Konata, la amiga de Konata, el amigo de Konata y emm.. al otro amigo de Konata que al final resulto ser un lammer y le dije <strong>RTFM!!!! </strong>Y a todos ellos los he agregado al msn, la pregunta es les hablo? No. Por que? Por 2 razones:</p>
<p>1- Se que solo me agregan por mis skills, para que les aclare dudas etc.</p>
<p>2- No me caen bien, lol, si leen esto ni me vuelven a hablar jeje.</p>
<p>En fin, por otra parte cuando hay alguien que me cae bien y se conecta pues le hablo, y que pasa? PUFF! Fulano se ha desconectado. Ok&#8230; Supongo que eso quiere decir &#8220;<strong>Te vas al carajo no quiero hablar&#8221; </strong>Bueno, y despues a uno le preguntan que por que es tan amargado o por que trata tan mal a los demas noobs e ignorantes de la facultad, pero bueh&#8230; Otro punto: Los bloqueos, me bloqueaste? No me importa, y si me pregutas por que lo hice pues usualmente invento una excusa tonta&#8230; No creen que esa excusa es mas que innecesaria? Deberian de decir <strong>&#8220;Te bloquie por que no te soporto, me caes mal y eres horrible&#8221; </strong>MMM&#8230; Eso se aplica a mi. Bueno, no hubo mucha informatica en este post, mis disculpas por ello pero era para desahogarme.</p>
<p>Gracias por su tiempo.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Upgrading to Fedora 12 in college]]></title>
<link>http://queasyquagmire.wordpress.com/2009/11/23/upgrading-to-fedora-12-in-college/</link>
<pubDate>Mon, 23 Nov 2009 06:18:03 +0000</pubDate>
<dc:creator>salvassn</dc:creator>
<guid>http://queasyquagmire.wordpress.com/2009/11/23/upgrading-to-fedora-12-in-college/</guid>
<description><![CDATA[Well, most of my college department labs run on Fedora but they are passionate followers of the ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Well, most of my college department labs run on Fedora but they are passionate followers of the &#8220;If it ain&#8217;t broken, don&#8217;t fix it&#8221; school of thought. They&#8217;re still using Fedora Core 5, which feels like eons ago. I myself started using Fedora from the last core version, 6. I was wondering whether they would upgrade any of those labs, which are all now unsupported, of course! I&#8217;ve spoken to the person managing one of the labs, and he told that it&#8217;d be nice to upgrade if there were no issues.</p>
<p>So, after I&#8217;m done with my end semester exams, I&#8217;m gonna go try and convince the lab in-charge to install Fedora 12 before students start using the lab for the next semester. Hopefully there won&#8217;t be any compatibility issues now. These days, all the problems are with proprietary OSes. I once tried to install the latest version of one, but had to spend the better part of a day searching for drivers. So I just kicked that out of my PC, and it is pure once more.</p>
<p>I&#8217;d need to explain him the need to update it asap due to what is a vulnerability on publicly accessible computers: The unrooted installation permission.</p>
<p>And having exams wrapped around the release day sucks, I&#8217;ve just downloaded the 32 bit and about to complete the 64-bit DVD. My desktop has been running Fedora 12 since the beta versions, and has never had a problem.</p>
<p>I hope to go one step forward, and start using the SSN-CTS open source lab for something useful to the community. There&#8217;s a long way to go, but these first steps are what count,</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[[Howto] NVIDIA Proprietary Driver on Fedora 12]]></title>
<link>http://openmindlifestyle.wordpress.com/2009/11/23/howto-nvidia-proprietary-driver-on-fedora-12/</link>
<pubDate>Mon, 23 Nov 2009 01:54:43 +0000</pubDate>
<dc:creator>kernel_script</dc:creator>
<guid>http://openmindlifestyle.wordpress.com/2009/11/23/howto-nvidia-proprietary-driver-on-fedora-12/</guid>
<description><![CDATA[If you got Fedora 12 , own a NVIDIA Video Card, and need 3D, you probably getting insane by now to m]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>If you got Fedora 12 , own a NVIDIA Video Card, and need 3D, you probably getting insane by now to make that Driver work. Fear not! I found a solution and would like to share with the community:</p>
<p>Install the <a href="http://rpmfusion.org/Configuration" target="_blank">RPM Fusion Repositories,</a> if you didn&#8217;t already.</p>
<blockquote><p><code>su -</code></p></blockquote>
<blockquote><p><code>mv /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r)-nouveau.img</code></p></blockquote>
<blockquote><p><code>dracut /boot/initramfs-$(uname -r).img $(uname -r)</code></p></blockquote>
<blockquote><p>gedit /etc/grub.conf</p></blockquote>
<p>Add the following to the end of the line(s) starting with &#8216;kernel&#8217;:</p>
<blockquote><p>dblacklist=nouveau</p></blockquote>
<p>Now:</p>
<blockquote><p>setsebool -P allow_execstack on</p></blockquote>
<blockquote><p>yum &#8211;enablerepo=rpmfusion-nonfree-updates-testing install kmod-nvidia</p></blockquote>
<blockquote><p>nvidia-xconfig</p></blockquote>
<p>Reboot.</p>
<p>There you go <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>References</strong><br />
<a href="http://lonelyspooky.com/2009/11/21/fedora-12-primeiras-impressoes-multimidia-e-drivers-nvidia/" target="_blank">Lonely Spooky’s Blog</a><br />
<a href="http://www.nvnews.net/vbulletin/showpost.php?p=2127769&#38;postcount=4" target="_blank">NVNews.Net</a><br />
<a href="http://rpmfusion.org/Howto/nVidia#head-205aab6f190d363e3915c0fa2e0681fc392aaeb6" target="_blank">RPM Fusion</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Fedora 12 instalacja drukarki HP]]></title>
<link>http://dundeeftp.wordpress.com/2009/11/22/fedora-12-instalcja-drukarki-hp/</link>
<pubDate>Sun, 22 Nov 2009 22:40:32 +0000</pubDate>
<dc:creator>Jakub</dc:creator>
<guid>http://dundeeftp.wordpress.com/2009/11/22/fedora-12-instalcja-drukarki-hp/</guid>
<description><![CDATA[Często bywa tak,że chcemy zainstalować drukarkę HP pod Linuksem i nie mamy do niej sterowników. Na s]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Często bywa tak,że chcemy zainstalować drukarkę HP pod Linuksem i nie mamy do niej sterowników. Na szczęście HP wynalazło sprytne oprogramowanie dla Linuksa. Nazywa się hplip. No to do dzieła.<br />
1. Ściągamy ze strony HP najnowszy <a href="http://hplipopensource.com/hplip-web/downloads.html">hplip</a></p>
<p>2. Hplip instalujemy za pomoca konsoli wywolując jako zwykły uzytkownik</p>
<p>$ sh hplip-3.9.10.run</p>
<p>3. Wykonujemy polecenia i hplip instaluje się automatycznie</p>
<p>Druga metoda.  Wykonujemy plik hplip-3.9.10.run manualnie.</p>
<p>1. Do tego celu posłuży nam instrukcja jaką znajdziemy na <a href="http://hplipopensource.com/hplip-web/install/manual/index.html">stronie producenta</a>.</p>
<p>2. Aby zainstalować naszą drukarkę najlepiej skorzystać nie z samego programu HP lecz wybierając z przeglądarki http://localhost:631.</p>
<p>3. Instalujemy naszą drukarkę, która powinna znaleźć się na liście.</p>
<p>Po instalcji nasza drukarka gotowa jest do pracy.</p>
<p><a href="http://dundee.homeftp.net/technika"><img class="alignleft size-full wp-image-347" title="baner" src="http://dundeeftp.wordpress.com/files/2009/11/baner.gif" alt="" width="200" height="80" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Interview: Virtualization improvements in F12]]></title>
<link>http://rwmj.wordpress.com/2009/11/22/interview-virtualization-improvements-in-f12/</link>
<pubDate>Sun, 22 Nov 2009 19:00:57 +0000</pubDate>
<dc:creator>rich</dc:creator>
<guid>http://rwmj.wordpress.com/2009/11/22/interview-virtualization-improvements-in-f12/</guid>
<description><![CDATA[Lots of virt developers, including me, were interviewed for the Fedora 12 release by Mel Chua.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Lots of virt developers, including me, <b><a href="http://www.fedoraproject.org/wiki/Virtualization_improvements_in_Fedora_12">were interviewed for the Fedora 12 release</a></b> by <a href="https://fedoraproject.org/wiki/User:Mchua">Mel Chua</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[O Febootstrap é uma ferramenta que cria ...]]></title>
<link>http://danielpontello.wordpress.com/2009/11/22/o-febootstrap-e-uma-ferramenta-que-cria/</link>
<pubDate>Sun, 22 Nov 2009 18:29:55 +0000</pubDate>
<dc:creator>danielpontello</dc:creator>
<guid>http://danielpontello.wordpress.com/2009/11/22/o-febootstrap-e-uma-ferramenta-que-cria/</guid>
<description><![CDATA[O Febootstrap é uma ferramenta que cria um sistema Linux baseado no Fedora dentro de uma pasta. Ele ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>O Febootstrap é uma ferramenta que cria um sistema Linux baseado no Fedora dentro de uma pasta. Ele pode ser usado para criar um sistema totalmente funcional. Ele pode ser baixado no site: http://people.redhat.com/~rjones/febootstrap/ ou nos repositórios de sua distro. As distros baseadas no Debian podem usar o Debootstrap. </p>
<p>Para usá-lo, digite &#8220;febootstrap fedora-versao pasta &#8220;, onde &#8220;versao&#8221;  é a versão do Fedora a ser instalada e pasta  o nome da nova pasta para criar o sistema.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Escolha de hardware para Linux]]></title>
<link>http://almalivre.wordpress.com/2009/11/22/escolha-de-hardware-para-linux/</link>
<pubDate>Sun, 22 Nov 2009 17:21:21 +0000</pubDate>
<dc:creator>stellarium</dc:creator>
<guid>http://almalivre.wordpress.com/2009/11/22/escolha-de-hardware-para-linux/</guid>
<description><![CDATA[Este post de um usuário da lista de discussão do LoCoTeam Brasileiro do Ubuntu-BR, dá vários links p]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignright size-full wp-image-845" title="tux" src="http://almalivre.wordpress.com/files/2009/11/tux.jpeg" alt="" width="127" height="150" />Este post de um usuário da lista de discussão do LoCoTeam Brasileiro do Ubuntu-BR, dá vários links para informações de hardware compatível para Linux. O usuário se identificou como niquelplatina, portanto, os créditos vão para o nick, ao invés do nome verdadeiro. O tópico está aqui: <a href="https://lists.ubuntu.com/archives/ubuntu-br/2009-November/066061.html" target="_blank">https://lists.ubuntu.com/archives/ubuntu-br/2009-November/066061.html</a></p>
<p>A resposta ao tópico está transcrita abaixo:</p>
<p>.</p>
<p>.<!--more--></p>
<blockquote><p><em>Ao invés de hardware incompativel, algumas listas de hardware compativel.<br />
Isto é, se você for montar o computador ,ou,. se tiver chance de saber qual<br />
é a placa-mae do computador que voce esta comprando.</p>
<p>Lista de Placas-Maes da Intel compativeis com Linux &#8211; Intel:<br />
<a href="http://www.intel.com/support/motherboards/desktop/sb/CS-028648.htm" target="_blank">http://www.intel.com/support/motherboards/desktop/sb/CS-028648.htm</a></p>
<p>Linux OS Resource Center &#8211; Intel:<br />
<a href="http://www.intel.com/cd/channel/reseller/asmo-na/eng/products/linux/feature/index.htm" target="_blank">http://www.intel.com/cd/channel/reseller/asmo-na/eng/products/linux/feature/index.htm</a></p>
<p>Lembrando que a combinacao intel + nvidia é recomendada, então:<br />
<a href="http://www.nvidia.com/object/unix.html" target="_blank">http://www.nvidia.com/object/unix.html</a><br />
<a href="http://www.nvidia.com/object/linux_display_archive.html" target="_blank">http://www.nvidia.com/object/linux_display_archive.html</a></p>
<p>Artigo sobre essa questão de compatibilidade, com links uteis:<br />
<a href="http://www.linux.com/news/hardware/drivers/8203-is-my-hardware-linux-compatible-find-out-here" target="_blank">http://www.linux.com/news/hardware/drivers/8203-is-my-hardware-linux-compatible-find-out-here</a></p>
<p>Ubuntu hardware compatibility list<br />
<a href="http://www.ubuntuhcl.org/" target="_blank">http://www.ubuntuhcl.org/</a></p>
<p>Ubuntu-Wiki &#8212; Hardware Support<br />
<a href="https://wiki.ubuntu.com/HardwareSupport" target="_blank">https://wiki.ubuntu.com/HardwareSupport</a></p>
<p>Opensuse<br />
<a href="http://en.opensuse.org/Hardware" target="_blank">http://en.opensuse.org/Hardware</a></p>
<p>RedHat/CentOS<br />
<a href="https://hardware.redhat.com/" target="_blank">https://hardware.redhat.com/</a></p>
<p>Outros links:<br />
<a href="http://www.linuxcompatible.org/" target="_blank">http://www.linuxcompatible.org/</a><br />
<a href="http://www.linux-drivers.org/" target="_blank">http://www.linux-drivers.org/</a><br />
<a href="http://www.linux-tested.com/" target="_blank">http://www.linux-tested.com/</a><br />
<a href="http://www.linux.org/hardware/" target="_blank">http://www.linux.org/hardware/</a><br />
<a href="http://br-linux.org/pesquisa-hardware/?q=pesquisa-hardware" target="_blank">http://br-linux.org/pesquisa-hardware/?q=pesquisa-hardware</a> (já citado por<br />
Clayton)</p>
<p>Mas se for pra comprar um computador com o Linux já instalado, é difícil de<br />
encontrar. Acho que a cce é uma das poucas que fazem isso.</p>
<p>Espero ter ajudado</p>
<p>2009/11/20 Adriano Oliveira &#60;xxxxx@gmail.com&#62;</p>
<p>&#62; Nunca compre processador Via.<br />
&#62; Adriano<br />
&#62;<br />
&#62; 2009/11/20 Rafael Pezzi &#60;nnnnnnn@hotmail.com&#62;</em></p>
<div id=":z9"><em>&#62;<br />
&#62;<br />
&#62; &#62; Ola pessoal,<br />
&#62; &#62;<br />
&#62; &#62; Um amigo que praticamente só usou windows está planejando comprar um<br />
&#62; &#62; desktop e está considerando instalar o Ubuntu.<br />
&#62; &#62; Gostaria de saber se tem alguma lista de hardware (motherboards, video,<br />
&#62; &#62; network, etc) incompatíveis para ajudar na escolha e facilitar a<br />
&#62; &#62; instalação.<br />
&#62; &#62; Alguma sugestão do que evitar?<br />
&#62; &#62;<br />
&#62; &#62; Muito obrigado,<br />
&#62; &#62; Rafael<br />
&#62; &#62;<br />
&#62; &#62;<br />
&#62; &#62;<br />
&#62; &#62; &#8211;<br />
&#62; &#62; Mais sobre o Ubuntu em português: <a href="http://www.ubuntu-br.org/comece" target="_blank">http://www.ubuntu-br.org/comece</a><br />
&#62; &#62;<br />
&#62; &#62; Lista de discussão Ubuntu Brasil<br />
&#62; &#62; Histórico, descadastramento e outras opções:<br />
&#62; &#62; <a href="https://lists.ubuntu.com/mailman/listinfo/ubuntu-br" target="_blank">https://lists.ubuntu.com/mailman/listinfo/ubuntu-br</a><br />
&#62; &#62;<br />
&#62; &#8211;<br />
&#62; Mais sobre o Ubuntu em português: <a href="http://www.ubuntu-br.org/comece" target="_blank">http://www.ubuntu-br.org/comece</a><br />
&#62;<br />
&#62; Lista de discussão Ubuntu Brasil<br />
&#62; Histórico, descadastramento e outras opções:<br />
&#62; <a href="https://lists.ubuntu.com/mailman/listinfo/ubuntu-br" target="_blank">https://lists.ubuntu.com/mailman/listinfo/ubuntu-br</a><br />
&#62;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</em></div>
</blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Fedora India meeting minutes]]></title>
<link>http://dodoincfedora.wordpress.com/2009/11/22/fedora-india-meeting-minutes/</link>
<pubDate>Sun, 22 Nov 2009 14:36:13 +0000</pubDate>
<dc:creator>ankursworld</dc:creator>
<guid>http://dodoincfedora.wordpress.com/2009/11/22/fedora-india-meeting-minutes/</guid>
<description><![CDATA[From my post to the mailing lists: hey, To start with, links : http://meetbot.fedoraproject.org/fedo]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>From my post to the mailing lists:</p>
<blockquote><p>hey,</p>
<p>To start with, links :</p>
<p><a href="http://meetbot.fedoraproject.org/fedora-india/2009-11-22/fedora-india.2009-11-22-06.02.html" target="_blank">http://meetbot.fedoraproject.org/fedora-india/2009-11-22/fedora-india.2009-11-22-06.02.html</a></p>
<p><a href="http://meetbot.fedoraproject.org/fedora-india/2009-11-22/fedora-india.2009-11-22-06.02.log.html" target="_blank">http://meetbot.fedoraproject.org/fedora-india/2009-11-22/fedora-india.2009-11-22-06.02.log.html</a></p>
<p><a href="http://meetbot.fedoraproject.org/fedora-india/2009-11-22/fedora-india.2009-11-22-06.02.txt" target="_blank">http://meetbot.fedoraproject.org/fedora-india/2009-11-22/fedora-india.2009-11-22-06.02.txt</a></p>
<p>People present (lines said)<br />
1. franciscod (208)<br />
2. mbuf (141)<br />
3. jdk2588 (37)<br />
4. skbohra (37)<br />
5. Pradipta (31)<br />
6. rakesh (29)<br />
7. kushal (17)<br />
8. sm&#124;CPU (8)<br />
9. sankarshan (7)<br />
10. Acedip (5)<br />
11. kishan_ (3)<br />
12. kishan (2)<br />
13. zodbot (2)<br />
14. kedars_ (1)<br />
15. rajeshr (1)<br />
16. rtnpro (1)<br />
17. yevlempy (1)</p>
<p>==================================================================</p>
<p>There were two topics on the agenda as posted on the mailing list:<br />
- F12 release events<br />
- Tamil team<br />
- During the course of the meeting, we decided to discuss the issue of<br />
&#8220;people becoming Fedora Ambassadors and not carrying out their duties as<br />
required&#8221; also.</p>
<p>Minutes -<br />
Release events:</p>
<p>- Planned at MIT Manipal, early January (Ankur Sinha)<br />
- Release party, install fests at Bikaner (Jaideep)<br />
- Plans to migrate 100 desktops of Coal India to fedora12 (Pradipta)</p>
<p>Tamil team discussion:<br />
Postponed (next meeting?)</p>
<p>Discussion over fedora ambassadorship</p>
<p>- Making sure that blogs of *every* Ambassador is on<br />
planet.fedoraproject.org</p>
<p>- some sort of system to prevent people from signing up (because its<br />
ultra cool) and then not working.<br />
- make a nice proposal and send it for discussion and whatever be the<br />
result send it to FEMSco for approval<br />
- ideas, such as an Ambassador should be participating in at least one<br />
Fedora subgroup (ie docs/packaging/design/websites&#8230;)</p>
<p>- Mentoring to make sure newbies holding release fests know what to say<br />
ie &#8211; *correct content* (since they&#8217;re short on experience, we don&#8217;t want<br />
them saying stuff that is different from the community&#8217;s working etc.)<br />
- Setting up a wiki page and supplying people with updated slides and<br />
material to be used at release fests.</p>
<p>- collecting feedback after a Fedora event from the audience (ideas<br />
needed on how to go about doing this).</p>
<p>- regular IRC meets : fortnightly *at least*</p>
<p>- good install fests never turning into sustained activities : why??</p>
<p>==========================================================================</p>
<p>These are only ideas in short. Please go through the meeting logs<br />
provided above.</p>
<p>There&#8217;s quite a lot of work to be done.</p>
<p>- I&#8217;m in-charge of rounding up all &#8220;FAs from India&#8221;&#8217;s blogs and making<br />
sure they&#8217;re on the planet.<br />
- Slides etc? (any hands ??)</p>
<p>There are also agendas that still need more discussion. Future meets or<br />
discussions on the mailing list are needed.</p>
<p>Thank you all for attending <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Have a nice evening</p>
<p>regards,<br />
Ankur</p>
<p>PS Also forwarding the the ambassadors list.</p></blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Jack Ruby Gray Fedora Sells]]></title>
<link>http://spilledramblings.wordpress.com/2009/11/22/jack-ruby-gray-fedora-sells/</link>
<pubDate>Sun, 22 Nov 2009 09:40:50 +0000</pubDate>
<dc:creator>JeffreyScottThomas</dc:creator>
<guid>http://spilledramblings.wordpress.com/2009/11/22/jack-ruby-gray-fedora-sells/</guid>
<description><![CDATA[Gray fedora worn by Jack Ruby when he shot Lee Harvey Oswald sold for $53,775 at auction&#8230;.. an]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Gray fedora worn by Jack Ruby when he shot Lee Harvey Oswald sold for $53,775 at auction&#8230;.. another relic that should be in a museum!<br />
<img alt="" src="http://www.froggypic.com/image/08/e5d973d6b82049017eea49675ef9796b.jpg" class="alignleft" width="350" height="260" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Fedora 12 “Constantine” (DVD, CD, LiveCD, NetInstall)]]></title>
<link>http://rocartiz.wordpress.com/2009/11/22/fedora-12-%e2%80%9cconstantine%e2%80%9d-dvd-cd-livecd-netinstall/</link>
<pubDate>Sun, 22 Nov 2009 07:14:55 +0000</pubDate>
<dc:creator>Rocartiz</dc:creator>
<guid>http://rocartiz.wordpress.com/2009/11/22/fedora-12-%e2%80%9cconstantine%e2%80%9d-dvd-cd-livecd-netinstall/</guid>
<description><![CDATA[Fedora 12 “Constantine” está lista para su descarga, disponible en varios CDs, en un único DVD o en ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://rocartiz.wordpress.com/files/2009/11/fedora_bubble_big.png"><img class="alignleft size-full wp-image-16" title="fedora_bubble_big" src="http://rocartiz.wordpress.com/files/2009/11/fedora_bubble_big.png" alt="" width="128" height="128" /></a></p>
<p>Fedora 12 “Constantine” está lista para su descarga, disponible en varios CDs, en un único DVD o en sus ediciones LiveCD con KDE y GNOME como escritorio predeterminado. Las descargas son directas a los ISOs y vía Torrent.</p>
<p>Este lanzamiento cuenta con muchas mejoras, tales como:</p>
<p>&#160;</p>
<ul>
<li>GNOME 2.28.</li>
<li>KDE 4.3.</li>
<li>GNOME Shell Preview. Paquete para conocer los avances de GNOME 3.0</li>
<li>Bluetooth. El servicios se activa cuando es necesario y se desactiva cuando no está en uso.</li>
<li>Integrada la interfaz gráfica de Moblin para Netbooks.</li>
<li>Empathy como el mensajero predeterminado</li>
<li>Mejoras en virtualización.</li>
<li>Mejoras en el soporte de tarjetas gráficas.</li>
<li>Theora 1.1.</li>
<li>Mejoras en los administradores de conexión de red.</li>
<li>Pequeñas y rápidas actualizaciones con yum-presto y la compresión XZ en los RPMs.</li>
<li>Mejoras en PulseAudio.</li>
<li>Firmware Open Source Broadcom por defecto, para conexión inalámbrica de dispositivos con chipsets Broadcom.</li>
<li>X.Org Server 1.7.</li>
<li><a href="http://fedoraproject.org/wiki/Fedora_12_one_page_release_notes" target="_blank">Y más</a> (Véase las notas del lanzamiento).</li>
</ul>
<p>Fedora Linux se ofrece en los siguientes medios de instalación:</p>
<ul>
<li><strong>CD:</strong> Un conjunto de CDs con todos los paquetes para su instalación, así como software extra.</li>
<li><strong>DVD:</strong> Contiene todos los paquetes disponibles en los CD en un DVD.</li>
<li><strong>LiveCD:</strong> CD individual con los escritorios GNOME y KDE, de manera opcional. Su función es utilizarse desde la unidad lectora, sin modificar nada en el disco duro, pero con la opción de instalarlo si así se quiere.</li>
<li><strong>NetInstall:</strong> Contiene sólo el instalador. Los paquetes se descargan vía red.</li>
</ul>
<p>Para arquitecturas de 32 bits (i386, i686):</p>
<p><strong>Descargar:</strong> <a href="http://mirrors.kernel.org/fedora/releases/12/Fedora/i386/iso/Fedora-12-i386-DVD.iso" target="_blank">Fedora 12 i386 DVD</a> (ISO)<br />
Suma de verificación (SHA256): f0ad929cd259957e160ea442eb80986b5f01daaffdbcc7e5a1840a666c4447c7<br />
Tamaño: 2.9 GB.</p>
<p>-</p>
<p><strong>Descargar:</strong> <a href="http://mirrors.kernel.org/fedora/releases/12/Fedora/i386/iso/Fedora-12-i386-disc1.iso" target="_blank">Fedora 12 i386 CD1</a> (ISO)<br />
Suma de verificación (SHA256): 2f548ce50c459a0270e85a7d63b2383c55239bf6aead9314a0f887f3623ddace<br />
Tamaño: 691.1 MB.</p>
<p><strong>Descargar:</strong> <a href="http://mirrors.kernel.org/fedora/releases/12/Fedora/i386/iso/Fedora-12-i386-disc2.iso" target="_blank">Fedora 12 i386 CD2</a> (ISO)<br />
Suma de verificación (SHA256): ce77d16d1b3362859aaa856f1f29c7197db69264d8ce6b9f8111dcee4d5e9ef7<br />
Tamaño: 694.3 MB.</p>
<p><strong>Descargar:</strong> <a href="http://mirrors.kernel.org/fedora/releases/12/Fedora/i386/iso/Fedora-12-i386-disc3.iso" target="_blank">Fedora 12 i386 CD3</a> (ISO)<br />
Suma de verificación (SHA256): 8c39cb9e3c1583948dcad21f9fdbe48a3ff6a8d1b536462188d47747c2640b36<br />
Tamaño: 693.2 MB.</p>
<p><strong>Descargar:</strong> <a href="http://mirrors.kernel.org/fedora/releases/12/Fedora/i386/iso/Fedora-12-i386-disc4.iso" target="_blank">Fedora 12 i386 CD4</a> (ISO)<br />
Suma de verificación (SHA256): 07f03f67d23331e8c7a37ad19e9a99062a4584a3e028beb40c49923bb5c70c6b<br />
Tamaño: 688.9 MB.</p>
<p><strong>Descargar:</strong> <a href="http://mirrors.kernel.org/fedora/releases/12/Fedora/i386/iso/Fedora-12-i386-disc5.iso" target="_blank">Fedora 12 i386 CD5</a> (ISO)<br />
Suma de verificación (SHA256): dff8c478fb73452a8799016deeecccde3097d40a0b756d681bfe6be2e56bb9eb<br />
Tamaño: 289 MB.</p>
<p>-</p>
<p><strong>Descargar:</strong> <a href="http://mirrors.kernel.org/fedora/releases/12/Live/i686/Fedora-12-i686-Live.iso" target="_blank">Fedora 12 i386 LiveCD GNOME</a> (ISO)<br />
Suma de verificación (SHA256): 5ad27455df004ee23fbc5a05dfa039a14e59956dccf4e767d493601e0bfa4001<br />
Tamaño: 654 MB.</p>
<p><strong>Descargar:</strong> <a href="http://mirrors.kernel.org/fedora/releases/12/Live/i686/Fedora-12-i686-Live-KDE.iso" target="_blank">Fedora 12 i386 LiveCD KDE</a> (ISO)<br />
Suma de verificación (SHA256): 1bb64a4eedecf4730b47fcbb6c17b49d6deaccf7b00b17dd7b1091af57cf1c1e<br />
Tamaño: 681 MB.</p>
<p>-</p>
<p><strong>Descargar:</strong> <a href="http://mirrors.kernel.org/fedora/releases/12/Fedora/i386/iso/Fedora-12-i386-netinst.iso" target="_blank">Fedora 12 i386 Netinstall</a> (ISO)<br />
Suma de verificación (SHA256): 128112527bdd4036ec82d678b5d5362aa7a11ac15a73647afd743d7a325f7df9<br />
Tamaño: 202 MB.</p>
<p>—</p>
<p>Para arquitecturas de 64 bits (x86_64):</p>
<p><strong>Descargar:</strong> <a href="http://mirrors.kernel.org/fedora/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-DVD.iso" target="_blank">Fedora 12 x86_64 DVD</a> (ISO)<br />
Suma de verificación (SHA256): c899659b8a7ceb8f005fc1a300b4e21c984a48fd7b8d8a332ed24bf8c3c479e8<br />
Tamaño: 3.3 GB.</p>
<p>-</p>
<p><strong>Descargar:</strong> <a href="http://mirrors.kernel.org/fedora/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc1.iso" target="_blank">Fedora 12 x86_64 CD1</a> (ISO)<br />
Suma de verificación (SHA256): 74097f55d8dd3d7cc7bfe86f5154b5b96a7e38104c9140551b546fee4ef88543<br />
Tamaño: 693.6 MB.</p>
<p><strong>Descargar:</strong> <a href="http://mirrors.kernel.org/fedora/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc2.iso" target="_blank">Fedora 12 x86_64 CD2</a> (ISO)<br />
Suma de verificación (SHA256): 36e9148f66bca27811fbbae1e25941950ab0e3641d97ec6439494ae99228083c<br />
Tamaño: 686.4 MB.</p>
<p><strong>Descargar:</strong> <a href="http://mirrors.kernel.org/fedora/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc3.iso" target="_blank">Fedora 12 x86_64 CD3</a> (ISO)<br />
Suma de verificación (SHA256): 3f43b1dfe2cd3ac221cc87d3441b0cc6f85d3fc8d29e15497f8dc376c60fb94c<br />
Tamaño: 692.8 MB.</p>
<p><strong>Descargar:</strong> <a href="http://mirrors.kernel.org/fedora/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc4.iso" target="_blank">Fedora 12 x86_64 CD4</a> (ISO)<br />
Suma de verificación (SHA256): 2ad8636534cccde8bd1ea943ad0d5e475cdec4d7792a5d76a4143deb7c4d3646<br />
Tamaño: 694.2 MB.</p>
<p><strong>Descargar:</strong> <a href="http://mirrors.kernel.org/fedora/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc5.iso" target="_blank">Fedora 12 x86_64 CD5</a> (ISO)<br />
Suma de verificación (SHA256): 9fc34ab7213b12621226a8d34e9c90bf854a6d2b6a77b5f41ac8e85c12d9184e<br />
Tamaño: 606.7 MB.</p>
<p>-</p>
<p><strong>Descargar:</strong> <a href="http://mirrors.kernel.org/fedora/releases/12/Live/x86_64/Fedora-12-x86_64-Live.iso" target="_blank">Fedora 12 x86_64 LiveCD GNOME</a> (ISO)<br />
Suma de verificación (SHA256): f2e78358dc20eea0dbe8dfda2455c39de7de5eeb06aa21e1740f3e6bec194d47<br />
Tamaño: 685 MB.</p>
<p><strong>Descargar:</strong> <a href="http://mirrors.kernel.org/fedora/releases/12/Live/x86_64/Fedora-12-x86_64-Live-KDE.iso" target="_blank">Fedora 12 x86_64 LiveCD KDE</a> (ISO)<br />
Suma de verificación (SHA256): 623c9e8ca7755d9e7723519992b4fa7d0df22ec00b4490bec8e16f64b1dd8c19<br />
Tamaño: 656 MB.</p>
<p>-</p>
<p><strong>Descargar:</strong> <a href="http://mirrors.kernel.org/fedora/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-netinst.iso" target="_blank">Fedora 12 x86_64 Netinstall</a> (ISO)<br />
Suma de verificación (SHA256): 87569889fe1f05b8f74e7045caa4957ab1126744ca2d276704520f111eb1bb27<br />
Tamaño: 171 MB.</p>
<p><strong>Opcionalmente puedes utilizar los siguientes mirrors de descarga:</strong></p>
<p>Fedora 12 i386 DVD (ISO)<br />
<a href="ftp://ftp.sunet.se/pub/Linux/distributions/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-DVD.iso" target="_blank">Mirror 1</a> &#124; <a href="http://ftp.df.lth.se/pub/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-DVD.iso" target="_blank">Mirror 2</a> &#124; <a href="http://mirror.switch.ch/ftp/mirror/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-DVD.iso" target="_blank">Mirror 3</a> &#124; <a href="http://ftp.riken.jp/Linux/fedora/releases/12/Fedora/i386/iso/Fedora-12-i386-DVD.iso" target="_blank">Mirror 4</a> &#124; <a href="http://ftp.heanet.ie/pub/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-DVD.iso" target="_blank">Mirror 5</a></p>
<p>-</p>
<p>Fedora 12 i386 CD1 (ISO)<br />
<a href="ftp://ftp.sunet.se/pub/Linux/distributions/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-disc1.iso" target="_blank">Mirror 1</a> &#124; <a href="http://ftp.df.lth.se/pub/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-disc1.iso" target="_blank">Mirror 2</a> &#124; <a href="http://mirror.switch.ch/ftp/mirror/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-disc1.iso" target="_blank">Mirror 3</a> &#124; <a href="http://ftp.riken.jp/Linux/fedora/releases/12/Fedora/i386/iso/Fedora-12-i386-disc1.iso" target="_blank">Mirror 4</a> &#124; <a href="http://ftp.heanet.ie/pub/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-disc1.iso" target="_blank">Mirror 5</a></p>
<p>Fedora 12 i386 CD2 (ISO)<br />
<a href="ftp://ftp.sunet.se/pub/Linux/distributions/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-disc2.iso" target="_blank">Mirror 1</a> &#124; <a href="http://ftp.df.lth.se/pub/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-disc2.iso" target="_blank">Mirror 2</a> &#124; <a href="http://mirror.switch.ch/ftp/mirror/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-disc2.iso" target="_blank">Mirror 3</a> &#124; <a href="http://ftp.riken.jp/Linux/fedora/releases/12/Fedora/i386/iso/Fedora-12-i386-disc2.iso" target="_blank">Mirror 4</a> &#124; <a href="http://ftp.heanet.ie/pub/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-disc2.iso" target="_blank">Mirror 5</a></p>
<p>Fedora 12 i386 CD3 (ISO)<br />
<a href="ftp://ftp.sunet.se/pub/Linux/distributions/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-disc3.iso" target="_blank">Mirror 1</a> &#124; <a href="http://ftp.df.lth.se/pub/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-disc3.iso" target="_blank">Mirror 2</a> &#124; <a href="http://mirror.switch.ch/ftp/mirror/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-disc3.iso" target="_blank">Mirror 3</a> &#124; <a href="http://ftp.riken.jp/Linux/fedora/releases/12/Fedora/i386/iso/Fedora-12-i386-disc3.iso" target="_blank">Mirror 4</a> &#124; <a href="http://ftp.heanet.ie/pub/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-disc3.iso" target="_blank">Mirror 5</a></p>
<p>Fedora 12 i386 CD4 (ISO)<br />
<a href="ftp://ftp.sunet.se/pub/Linux/distributions/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-disc4.iso" target="_blank">Mirror 1</a> &#124; <a href="http://ftp.df.lth.se/pub/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-disc4.iso" target="_blank">Mirror 2</a> &#124; <a href="http://mirror.switch.ch/ftp/mirror/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-disc4.iso" target="_blank">Mirror 3</a> &#124; <a href="http://ftp.riken.jp/Linux/fedora/releases/12/Fedora/i386/iso/Fedora-12-i386-disc4.iso" target="_blank">Mirror 4</a> &#124; <a href="http://ftp.heanet.ie/pub/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-disc4.iso" target="_blank">Mirror 5</a></p>
<p>Fedora 12 i386 CD5 (ISO)<br />
<a href="ftp://ftp.sunet.se/pub/Linux/distributions/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-disc5.iso" target="_blank">Mirror 1</a> &#124; <a href="http://ftp.df.lth.se/pub/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-disc5.iso" target="_blank">Mirror 2</a> &#124; <a href="http://mirror.switch.ch/ftp/mirror/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-disc5.iso" target="_blank">Mirror 3</a> &#124; <a href="http://ftp.riken.jp/Linux/fedora/releases/12/Fedora/i386/iso/Fedora-12-i386-disc5.iso" target="_blank">Mirror 4</a> &#124; <a href="http://ftp.heanet.ie/pub/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-disc5.iso" target="_blank">Mirror 5</a></p>
<p>-</p>
<p>Fedora 12 i386 LiveCD GNOME (ISO)<br />
<a href="ftp://ftp.sunet.se/pub/Linux/distributions/fedora/linux/releases/12/Live/i686/Fedora-12-i686-Live.iso" target="_blank">Mirror 1</a> &#124; <a href="http://ftp.df.lth.se/pub/fedora/linux/releases/12/Live/i686/Fedora-12-i686-Live.iso" target="_blank">Mirror 2</a> &#124; <a href="http://mirror.switch.ch/ftp/mirror/fedora/linux/releases/12/Live/i686/Fedora-12-i686-Live.iso" target="_blank">Mirror 3</a> &#124; <a href="http://ftp.riken.jp/Linux/fedora/releases/12/Live/i686/Fedora-12-i686-Live.iso" target="_blank">Mirror 4</a> &#124; <a href="http://ftp.heanet.ie/pub/fedora/linux/releases/12/Live/i686/Fedora-12-i686-Live.iso" target="_blank">Mirror 5</a></p>
<p>Fedora 12 i386 LiveCD KDE (ISO)<br />
<a href="ftp://ftp.sunet.se/pub/Linux/distributions/fedora/linux/releases/12/Live/i686/Fedora-12-i686-Live-KDE.iso" target="_blank">Mirror 1</a> &#124; <a href="http://ftp.df.lth.se/pub/fedora/linux/releases/12/Live/i686/Fedora-12-i686-Live-KDE.iso" target="_blank">Mirror 2</a> &#124; <a href="http://mirror.switch.ch/ftp/mirror/fedora/linux/releases/12/Live/i686/Fedora-12-i686-Live-KDE.iso" target="_blank">Mirror 3</a> &#124; <a href="http://ftp.riken.jp/Linux/fedora/releases/12/Live/i686/Fedora-12-i686-Live-KDE.iso" target="_blank">Mirror 4</a> &#124; <a href="http://ftp.heanet.ie/pub/fedora/linux/releases/12/Live/i686/Fedora-12-i686-Live-KDE.iso" target="_blank">Mirror 5</a></p>
<p>-</p>
<p>Fedora 12 i386 Netinstall (ISO)<br />
<a href="ftp://ftp.sunet.se/pub/Linux/distributions/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-netinst.iso" target="_blank">Mirror 1</a> &#124; <a href="http://ftp.df.lth.se/pub/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-netinst.iso" target="_blank">Mirror 2</a> &#124; <a href="http://mirror.switch.ch/ftp/mirror/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-netinst.iso" target="_blank">Mirror 3</a> &#124; <a href="http://ftp.riken.jp/Linux/fedora/releases/12/Fedora/i386/iso/Fedora-12-i386-netinst.iso" target="_blank">Mirror 4</a> &#124; <a href="http://ftp.heanet.ie/pub/fedora/linux/releases/12/Fedora/i386/iso/Fedora-12-i386-netinst.iso" target="_blank">Mirror 5</a></p>
<p>—</p>
<p>Fedora 12 x86_64 DVD (ISO)<br />
<a href="ftp://ftp.sunet.se/pub/Linux/distributions/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-DVD.iso" target="_blank">Mirror 1</a> &#124; <a href="http://ftp.df.lth.se/pub/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-DVD.iso" target="_blank">Mirror 2</a> &#124; <a href="http://mirror.switch.ch/ftp/mirror/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-DVD.iso" target="_blank">Mirror 3</a> &#124; <a href="http://ftp.riken.jp/Linux/fedora/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-DVD.iso" target="_blank">Mirror 4</a> &#124; <a href="http://ftp.heanet.ie/pub/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-DVD.iso" target="_blank">Mirror 5</a></p>
<p>-</p>
<p>Fedora 12 x86_64 CD1 (ISO)<br />
<a href="ftp://ftp.sunet.se/pub/Linux/distributions/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc1.iso" target="_blank">Mirror 1</a> &#124; <a href="http://ftp.df.lth.se/pub/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc1.iso" target="_blank">Mirror 2</a> &#124; <a href="http://mirror.switch.ch/ftp/mirror/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc1.iso" target="_blank">Mirror 3</a> &#124; <a href="http://ftp.riken.jp/Linux/fedora/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc1.iso" target="_blank">Mirror 4</a> &#124; <a href="http://ftp.heanet.ie/pub/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc1.iso" target="_blank">Mirror 5</a></p>
<p>Fedora 12 x86_64 CD2 (ISO)<br />
<a href="ftp://ftp.sunet.se/pub/Linux/distributions/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc2.iso" target="_blank">Mirror 1</a> &#124; <a href="http://ftp.df.lth.se/pub/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc2.iso" target="_blank">Mirror 2</a> &#124; <a href="http://mirror.switch.ch/ftp/mirror/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc2.iso" target="_blank">Mirror 3</a> &#124; <a href="http://ftp.riken.jp/Linux/fedora/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc2.iso" target="_blank">Mirror 4</a> &#124; <a href="http://ftp.heanet.ie/pub/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc2.iso" target="_blank">Mirror 5</a></p>
<p>Fedora 12 x86_64 CD3 (ISO)<br />
<a href="ftp://ftp.sunet.se/pub/Linux/distributions/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc3.iso" target="_blank">Mirror 1</a> &#124; <a href="http://ftp.df.lth.se/pub/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc3.iso" target="_blank">Mirror 2</a> &#124; <a href="http://mirror.switch.ch/ftp/mirror/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc3.iso" target="_blank">Mirror 3</a> &#124; <a href="http://ftp.riken.jp/Linux/fedora/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc3.iso" target="_blank">Mirror 4</a> &#124; <a href="http://ftp.heanet.ie/pub/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc3.iso" target="_blank">Mirror 5</a></p>
<p>Fedora 12 x86_64 CD4 (ISO)<br />
<a href="ftp://ftp.sunet.se/pub/Linux/distributions/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc4.iso" target="_blank">Mirror 1</a> &#124; <a href="http://ftp.df.lth.se/pub/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc4.iso" target="_blank">Mirror 2</a> &#124; <a href="http://mirror.switch.ch/ftp/mirror/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc4.iso" target="_blank">Mirror 3</a> &#124; <a href="http://ftp.riken.jp/Linux/fedora/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc4.iso" target="_blank">Mirror 4</a> &#124; <a href="http://ftp.heanet.ie/pub/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc4.iso" target="_blank">Mirror 5</a></p>
<p>Fedora 12 x86_64 CD5 (ISO)<br />
<a href="ftp://ftp.sunet.se/pub/Linux/distributions/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc5.iso" target="_blank">Mirror 1</a> &#124; <a href="http://ftp.df.lth.se/pub/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc5.iso" target="_blank">Mirror 2</a> &#124; <a href="http://mirror.switch.ch/ftp/mirror/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc5.iso" target="_blank">Mirror 3</a> &#124; <a href="http://ftp.riken.jp/Linux/fedora/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc5.iso" target="_blank">Mirror 4</a> &#124; <a href="http://ftp.heanet.ie/pub/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-disc5.iso" target="_blank">Mirror 5</a></p>
<p>-</p>
<p>Fedora 12 x86_64 LiveCD GNOME (ISO)<br />
<a href="ftp://ftp.sunet.se/pub/Linux/distributions/fedora/linux/releases/12/Live/x86_64/Fedora-12-x86_64-Live.iso" target="_blank">Mirror 1</a> &#124; <a href="http://ftp.df.lth.se/pub/fedora/linux/releases/12/Live/x86_64/Fedora-12-x86_64-Live.iso" target="_blank">Mirror 2</a> &#124; <a href="http://mirror.switch.ch/ftp/mirror/fedora/linux/releases/12/Live/x86_64/Fedora-12-x86_64-Live.iso" target="_blank">Mirror 3</a> &#124; <a href="http://ftp.riken.jp/Linux/fedora/releases/12/Live/x86_64/Fedora-12-x86_64-Live.iso" target="_blank">Mirror 4</a> &#124; <a href="http://ftp.heanet.ie/pub/fedora/linux/releases/12/Live/x86_64/Fedora-12-x86_64-Live.iso" target="_blank">Mirror 5</a></p>
<p>Fedora 12 x86_64 LiveCD KDE (ISO)<br />
<a href="ftp://ftp.sunet.se/pub/Linux/distributions/fedora/linux/releases/12/Live/x86_64/Fedora-12-x86_64-Live-KDE.iso" target="_blank">Mirror 1</a> &#124; <a href="http://ftp.df.lth.se/pub/fedora/linux/releases/12/Live/x86_64/Fedora-12-x86_64-Live-KDE.iso" target="_blank">Mirror 2</a> &#124; <a href="http://mirror.switch.ch/ftp/mirror/fedora/linux/releases/12/Live/x86_64/Fedora-12-x86_64-Live-KDE.iso" target="_blank">Mirror 3</a> &#124; <a href="http://ftp.riken.jp/Linux/fedora/releases/12/Live/x86_64/Fedora-12-x86_64-Live-KDE.iso" target="_blank">Mirror 4</a> &#124; <a href="http://ftp.heanet.ie/pub/fedora/linux/releases/12/Live/x86_64/Fedora-12-x86_64-Live-KDE.iso" target="_blank">Mirror 5</a></p>
<p>-</p>
<p>Fedora 12 x86_64 Netinstall (ISO)<br />
<a href="ftp://ftp.sunet.se/pub/Linux/distributions/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-netinst.iso" target="_blank">Mirror 1</a> &#124; <a href="http://ftp.df.lth.se/pub/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-netinst.iso" target="_blank">Mirror 2</a> &#124; <a href="http://mirror.switch.ch/ftp/mirror/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-netinst.iso" target="_blank">Mirror 3</a> &#124; <a href="http://ftp.riken.jp/Linux/fedora/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-netinst.iso" target="_blank">Mirror 4</a> &#124; <a href="http://ftp.heanet.ie/pub/fedora/linux/releases/12/Fedora/x86_64/iso/Fedora-12-x86_64-netinst.iso" target="_blank">Mirror 5</a></p>
<p>Torrents<br />
<a href="http://torrent.fedoraproject.org/torrents//Fedora-12-i386-DVD.torrent" target="_blank">Fedora 12 i386 DVD</a>.<br />
<a href="http://torrent.fedoraproject.org/torrents//Fedora-12-i386-CDs.torrent" target="_blank">Fedora 12 i386 CDs</a>.<br />
<a href="http://torrent.fedoraproject.org/torrents//Fedora-12-i686-Live.torrent" target="_blank">Fedora 12 i386 LiveCD GNOME</a>.<br />
<a href="http://torrent.fedoraproject.org/torrents//Fedora-12-i686-Live-KDE.torrent" target="_blank">Fedora 12 i386 LiveCD KDE</a>.</p>
<p><a href="http://torrent.fedoraproject.org/torrents//Fedora-12-x86_64-DVD.torrent" target="_blank">Fedora 12 x86_64 DVD</a>.<br />
<a href="http://torrent.fedoraproject.org/torrents//Fedora-12-x86_64-CDs.torrent" target="_blank">Fedora 12 x86_64 CDs</a>.<br />
<a href="http://torrent.fedoraproject.org/torrents//Fedora-12-x86_64-Live.torrent" target="_blank">Fedora 12 x86_64 LiveCD GNOME</a>.<br />
<a href="http://torrent.fedoraproject.org/torrents//Fedora-12-x86_64-Live-KDE.torrent" target="_blank">Fedora 12 x86_64 LiveCD KDE</a>.</p>
<p><strong>Recursos:</strong><br />
<a href="http://docs.fedoraproject.org/install-guide/f12/es-ES/html/" target="_blank">Guía oficial de instalación de Fedora</a><br />
<a href="http://docs.fedoraproject.org/user-guide/f12/es-ES/html/" target="_blank">Guía oficial de usuario de Fedora</a></p>
<p>&#160;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Chrome O.S?]]></title>
<link>http://davidmora.wordpress.com/2009/11/21/chrome-o-s/</link>
<pubDate>Sat, 21 Nov 2009 23:46:27 +0000</pubDate>
<dc:creator>davidmora616</dc:creator>
<guid>http://davidmora.wordpress.com/2009/11/21/chrome-o-s/</guid>
<description><![CDATA[No se que demonios le ven a ese Google Chrome O.S., uno entra a Youtube y lo primero que ve es un th]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>No se que demonios le ven a ese Google Chrome O.S., uno entra a Youtube y lo primero que ve es un thumbnail relacionado al sistema este, es algo logico ya que Google esta detras de Youtube despues de todo pero la verdad es que me cansa ver tantos posts en blogs y foros refiriendose a lo magnifico que va a ser. Personalmente pienso que no deberia de causar tanto revuelo en la gente que usa linux ya que no es mas que otra distribucion, y bueno, no tendria mucho sentido decir que Canonical esta asustada por esta nueva linea de Google ya que la misma compañia solicito su apoyo para desarrollar el sistema. Aunque pensandolo bien&#8230; Pueden llevarse bien hoy, pero mañana el panorama puede cambiar.</p>
<p>Estoy trabajando en un proyecto que involucra la personalizacion de un live-cd, uso el kernel de Debian para ello ya que hablamos de Debian Sid pero quiero pensar que Google tiene su propio nucleo corriendo, o acaso nos encontraremos con un segundo ubuntu? Digo, no tendria nada de malo, mas bien gente optaria por probar chrome O.S. si se basara en ubuntu pero definitivamente seria muy interesante ver si google en verdad esta aportando algo nuevo a linux, desde cero.</p>
<p>Bueno ya me canse, para terminar con esto, el revuelo de google, innecesario totalmente.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Looking closer at Fedora, Ubuntu live CDs]]></title>
<link>http://rwmj.wordpress.com/2009/11/21/looking-closer-at-fedora-ubuntu-live-cds/</link>
<pubDate>Sat, 21 Nov 2009 21:00:55 +0000</pubDate>
<dc:creator>rich</dc:creator>
<guid>http://rwmj.wordpress.com/2009/11/21/looking-closer-at-fedora-ubuntu-live-cds/</guid>
<description><![CDATA[Previously I&#8217;ve shown you can use guestfish to unpack a Fedora live CD. I&#8217;m interested i]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Previously <a href="http://rwmj.wordpress.com/2009/07/15/unpack-the-russian-doll-of-a-f11-live-cd/">I&#8217;ve shown you can use guestfish to unpack a Fedora live CD</a>.</p>
<p>I&#8217;m interested in whether we can use the contents of these live CDs to mass-install operating systems using <a href="http://libguestfs.org/">libguestfs</a>.</p>
<p>If you imagine that you go through an &#8220;all defaults&#8221; install of say Fedora or Ubuntu to a new virtual machine, then when you end up with is an identical disk image containing 1-2 GB of default packages and a lot of empty space.  Two people asked to go through the same all-defaults install of the same distro would end up with roughly the same content.  The details on the disk would be slightly different because some parts of the disk partitioning and ext3 superblocks change slightly depending on the overall disk size.  But really those things can be fixed up afterwards using a little repartitioning, lvresize and resize2fs.</p>
<p>Let&#8217;s look inside an Ubuntu live CD:</p>
<pre style="background-color:#fcfcfc;border-left:6px solid #f0f0f0;margin-left:1em;font-size:120%;padding:5px;">
$ <b>guestfish --ro -a ubuntu-9.10-desktop-amd64.iso</b>

Welcome to guestfish, the libguestfs filesystem interactive shell for
editing virtual machine filesystems.

Type: 'help' for help with commands
      'quit' to quit the shell

&#62;&#60;fs&#62; <b>run</b>
&#62;&#60;fs&#62; <b>list-devices</b>
/dev/sda
&#62;&#60;fs&#62; <b>file /dev/sda</b>
ISO 9660 CD-ROM filesystem data 'Ubuntu 9.10 amd64
&#62;&#60;fs&#62; <b>mkmountpoint /t1</b>
&#62;&#60;fs&#62; <b>mount /dev/sda /t1</b>
&#62;&#60;fs&#62; <b>ll /t1/casper</b>
total 691049
dr-xr-xr-x  2 root root      2048 Oct 27 14:31 .
dr-xr-xr-x 10 root root      2048 Oct 27 14:31 ..
-r--r--r--  2 root root     37288 Oct 27 14:19 filesystem.manifest
-r--r--r--  2 root root     35354 Oct 27 14:16 filesystem.manifest-desktop
-r--r--r--  2 root root 697778176 Oct 27 14:25 filesystem.squashfs
-r--r--r--  2 root root   5836401 Oct 27 14:20 initrd.lz
-r--r--r--  2 root root   3941696 Oct 16 12:12 vmlinuz
&#62;&#60;fs&#62; <b>mkmountpoint /t2</b>
&#62;&#60;fs&#62; <b>mount-loop /t1/casper/filesystem.squashfs /t2</b>
&#62;&#60;fs&#62; <b>cat /t2/etc/debian_version</b>
squeeze/sid
</pre>
<p>The file <code>/casper/filesystem.squashfs</code> seems to be a complete Ubuntu installation, and if I&#8217;m understanding this correctly the Ubuntu installer will copy this to the newly created filesystem directly.  That will be the new Ubuntu installation, plus or minus some config file changes and some extra packages downloaded afterwards from the net.</p>
<p>Here&#8217;s the same examination of the Fedora 12 Live CD:</p>
<pre style="background-color:#fcfcfc;border-left:6px solid #f0f0f0;margin-left:1em;font-size:120%;padding:5px;">
$ <b>guestfish --ro -a Fedora-12-x86_64-Live.iso</b>

Welcome to guestfish, the libguestfs filesystem interactive shell for
editing virtual machine filesystems.

Type: 'help' for help with commands
      'quit' to quit the shell

&#62;&#60;fs&#62; <b>run</b>
&#62;&#60;fs&#62; <b>list-devices</b>
/dev/sda
&#62;&#60;fs&#62; <b>file /dev/sda</b>
ISO 9660 CD-ROM filesystem data 'Fedora-12-x86_64-Live
&#62;&#60;fs&#62; <b>mkmountpoint /t1</b>
&#62;&#60;fs&#62; <b>mount /dev/sda /t1</b>
&#62;&#60;fs&#62; <b>ls /t1</b>
EFI
GPL
LiveOS
isolinux
&#62;&#60;fs&#62; <b>ll /t1/LiveOS</b>
total 655291
dr-xr-xr-x 2 root root      2048 Nov  9 14:45 .
dr-xr-xr-x 5 root root      2048 Nov  9 14:44 ..
-r-xr-xr-x 1 root root     23040 Nov  9 14:44 livecd-iso-to-disk
-r-xr-xr-x 1 root root      8192 Nov  9 14:45 osmin.img
-r-xr-xr-x 1 root root 670982144 Nov  9 14:48 squashfs.img
&#62;&#60;fs&#62; <b>mkmountpoint /t2</b>
&#62;&#60;fs&#62; <b>mount-loop /t1/LiveOS/squashfs.img /t2</b>
&#62;&#60;fs&#62; <b>ls /t2</b>
LiveOS
&#62;&#60;fs&#62; <b>ls /t2/LiveOS/</b>
ext3fs.img
&#62;&#60;fs&#62; <b>mkmountpoint /t3</b>
&#62;&#60;fs&#62; <b>mount-loop /t2/LiveOS/ext3fs.img /t3</b>
&#62;&#60;fs&#62; <b>cat /t3/etc/redhat-release</b>
Fedora release 12 (Constantine)
</pre>
<p>Again I hope I assume correctly that the installer copies <code>ext3fs.img</code> to the hard disk when installing Fedora 12.</p>
<p>So my vague plan, assuming anything I&#8217;ve written above is correct, is to take these pre-made filesystem images and allow people to quickly install specific operating system images from a simple tool:</p>
<pre style="background-color:#fcfcfc;border-left:6px solid #f0f0f0;margin-left:1em;font-size:120%;padding:5px;">
$ virt-press Fedora-12 F12
</pre>
<p>which would stamp out a <a href="http://www.theregister.co.uk/2009/11/19/fedora_12_review/">Fedora 12</a> VM in a few seconds and register it with <a href="http://libvirt.org/">libvirt</a> as &#8220;F12&#8243;.</p>
<p>I&#8217;m not sure this is possible yet &#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Half-baked ideas: View source button for Fedora]]></title>
<link>http://rwmj.wordpress.com/2009/11/21/half-baked-ideas-view-source-button-for-fedora/</link>
<pubDate>Sat, 21 Nov 2009 18:48:35 +0000</pubDate>
<dc:creator>rich</dc:creator>
<guid>http://rwmj.wordpress.com/2009/11/21/half-baked-ideas-view-source-button-for-fedora/</guid>
<description><![CDATA[For more half-baked ideas, see my ideas tag. I&#8217;ll mention first that this isn&#8217;t my idea,]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><i>For more half-baked ideas, see my <a href="http://rwmj.wordpress.com/tag/ideas/">ideas tag</a>.</i></p>
<p><img src="http://rwmj.wordpress.com/files/2009/11/screenshot-viewsource.png" align="right"> I&#8217;ll mention first that this isn&#8217;t my idea, and it&#8217;s not new or original.  <a href="http://laptop.org/">OLPC</a> <a href="http://wiki.laptop.org/go/OLPC_Human_Interface_Guidelines/The_Laptop_Experience/View_Source">already implemented</a> a <a href="http://blog.printf.net/articles/2006/10/29/the-view-source-key">View Source button</a>.</p>
<p>Why can&#8217;t we have the same for Fedora?  This is how it would work &#8230;</p>
<p>The View Source button would hover in your task bar.  When pressed it opens up this dialog:</p>
<p><img src="http://rwmj.wordpress.com/files/2009/11/screenshot-viewsource2.png" alt="View source dialog" longdesc="Dialog contains a button so the user can point at another window, or enter a command name or search terms."></p>
<p>Like <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Xkill">xkill</a> and xwininfo, pressing the &#8220;point at a window&#8221; button changes your mouse so you click on the program you want to view the source of.  X sort of makes it possible to find out (with a bit of effort) which binary is behind each program (see for example the <a href="http://www.x.org/archive/X11R6.8.1/doc/xprop.1.html">xprop</a> command).</p>
<p>You do an <code>rpm -qf</code> on this binary (or use a yum search) to locate the source.</p>
<p>Use <code>yumdownloader --source</code> to download the source.  Unpack it into a standard rpmbuild location, and open up the user&#8217;s preferred editor.</p>
<p>With experience, and many custom rules and heuristics, you can extend this idea.  For example, if they pointed at a dialog box, search the source for strings from the dialog box to try to locate the exact lines of code.</p>
<p>Or have some debuginfo-like metadata packages which are generated when packages are built, to allow very precise file/line locations to be determined.</p>
<p>Combine the whole thing with <a href="http://sourceforge.net/projects/lxr/">LXR</a> so we can browse source intuitively.</p>
<p>This is a great way to encourage contributions to Fedora and Free software in general, because I think it would really make code much more accessible to casual programmers, <a href="http://www.freedom-to-tinker.com/">tinkerers</a> and children.  Even experienced programmers would find it useful when tracking down bugs in random applications.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Vom Leitwolf und der allwissenden Müllhalde]]></title>
<link>http://drowningigby.wordpress.com/2009/11/21/vom-leitwolf-und-der-allwissenden-mullhalde/</link>
<pubDate>Sat, 21 Nov 2009 16:29:14 +0000</pubDate>
<dc:creator>drowningigby</dc:creator>
<guid>http://drowningigby.wordpress.com/2009/11/21/vom-leitwolf-und-der-allwissenden-mullhalde/</guid>
<description><![CDATA[„Ich glaube fest daran, dass wir vielleicht noch eine Chance haben.&#8221; Ottmar Hitzfeld Es sind a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><blockquote><p>„Ich glaube fest daran, dass wir vielleicht noch eine Chance haben.&#8221;<br />
Ottmar Hitzfeld</p></blockquote>
<p style="text-align:justify;">Es sind aufregende Worte Monate für Freunde Enthusiasten von und für Betriebssysteme aller Couleur. Schließlich hat alles, was Rang und Namen hat, eine neue Version des eigenen Betriebssystems herausgebracht. Canonical hat Ubuntu 9.10 „Karmic Koala“ veröffentlicht, Novell openSUSE 11.2 , Red Hat Fedora 12 „Constantine“ und der Monopolist<!--more--> Windows 7. Was? Windows 7? Ja, Windows 7.</p>
<h3 style="text-align:justify;">Der Leitwolf</h3>
<p style="text-align:justify;">Schließlich haben die Redmonder diese neue Version für eigene Verhältnisse ziemlich zügig auf den Markt gebracht. Und es ist ein offenes Geheimnis, dass Windows 7 die bessere Version des Vorgängers Vista ist und keine Neuentwicklung. Spötter behaupten gar, 7 sei nur das neueste Service Pack für Vista. Aber warum so schnell? Ja, schon fast hastig? Nun , die Konkurrenz, die Jungwölfe, spürte, dass der Leitwolf schwächelt. Und wie junge Wölfe, allen voran Canonical und Google,  so sind, fordern sie das Alphatier beim kleinsten Anzeichen von Schwäche (lies: Vista) heraus.</p>
<h3 style="text-align:justify;">ChromeOS</h3>
<p style="text-align:justify;">Der Jüngste unter den Herausforderern ist Google, im Usenet liebevoll „die allwissende Müllhalde“ genannt. </p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/z5KrPb9kdX4&#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/z5KrPb9kdX4&#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><br />
Googles neues System ist gerade erschienen. Es muss etwas an Besonderes an ChromeOS, in Analogie zum Chrome Browser, sein, denn die sog. Blogosphäre schreibt sich die Finger wund und das Internet quillt über vor Gerüchten und echten Informationen. Zwei Dinge sind es hauptsächlich:<br />
1. Es ist das Betriebssystem von Google. Und die allwissende Müllhalde ist wahrscheinlich die, dem Endverbraucher, bekannteste Softwarefirma. Nachdem dem Redmonder, versteht sich. Und da greift die alt bekannte Kundenlogik: bekannte (und erfolgreiche) Firma = gutes Produkt. Alleine dieser Punkt dürfte Google einen guten Marketingbonus geben. In Kombination mit gescheiter PR vielleicht sogar den einen oder anderen Prozentpunkt Marktanteil.<br />
Natürlich kann die allwissende Müllhalde nicht ein 08/15 Betriebssystem veröffentlichen. Nein, es muss, und das ist der zweite Punkt, etwas neues sein, etwas innovatives. Und das Unternehmen hat ein Problem: So ein Betriebssystem braucht auch Software, die man benutzen kann. Google hat solche Software, allerdings nur online. Nun folgt der eigentliche Trick: Man macht aus der Not eine Tugend. In dem man den hauseigenen Browser Chrome zum Kernstück des Systems gemacht wird, sind die vielen Online-Anwendungen für die Benutzer verfügbar. Und wenn die Müllhalde es schafft, den Benutzer klar zumachen, dass Online-Anwendungen ein Vorteil und kein Nachteil sind, dann stehen die Chancen gut, nennenswerte Marktanteile Bill Gates&#8217; ehemaligen Garagenunternehmen ab zuknöpfen. Zumindest der Zeitpunkt scheint günstig: Selten waren die Benutzer eher bereit das Betriebssystem zu wechseln.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[[FEL]: DIA for System Design and documentation]]></title>
<link>http://chitlesh.wordpress.com/2009/11/21/fel-dia-for-system-design-and-documentation/</link>
<pubDate>Sat, 21 Nov 2009 15:22:09 +0000</pubDate>
<dc:creator>Chitlesh</dc:creator>
<guid>http://chitlesh.wordpress.com/2009/11/21/fel-dia-for-system-design-and-documentation/</guid>
<description><![CDATA[Dia is known to seduce some system level designers and is used to describe different block levels fo]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Dia is known to seduce some system level designers and is used to describe different block levels for embedded design.</p>
<p style="text-align:center;"><a href="http://chitlesh.wordpress.com/files/2009/11/dia.png"><img class="aligncenter size-full wp-image-700" title="dia" src="http://chitlesh.wordpress.com/files/2009/11/dia.png" alt="" width="325" height="243" /></a></p>
<p><a href="http://chitlesh.wordpress.com/files/2009/11/dia.png"></a>Fedora has just received some additional shapes for digital blocks which will improve user documentation experience, through neat functional diagram drawn by dia. They should reach fedora repositories in a day or two.</p>
<p>Installation:</p>
<blockquote><p># yum install dia-Digital dia-CMOS dia-electronic dia-electric2</p></blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Comunidad Linux - La Zona Linux]]></title>
<link>http://elblogdepablin.wordpress.com/2009/11/21/comunidad-linux-la-zona-linux/</link>
<pubDate>Sat, 21 Nov 2009 14:33:49 +0000</pubDate>
<dc:creator>Pablo Milián</dc:creator>
<guid>http://elblogdepablin.wordpress.com/2009/11/21/comunidad-linux-la-zona-linux/</guid>
<description><![CDATA[Sin dudas, Linux está ganando terreno exponencialmente. Cada vez más usuarios de Pc están migrando a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://elblogdepablin.wordpress.com/files/2009/11/lazona.png"><img class="aligncenter size-full wp-image-398" title="Lazona" src="http://elblogdepablin.wordpress.com/files/2009/11/lazona.png" alt="" width="260" height="68" /></a></p>
<p style="text-align:justify;">Sin dudas, Linux está ganando terreno exponencialmente. Cada vez más usuarios de Pc están migrando a este sistema Libre y en muchos casos Gratuito.</p>
<p style="text-align:justify;">Hoy les traigo una página, perteneciente a una comunidad Linux en crecimiento (comenzaron en abril bajo el nombre Linuxinga!, éramos 17 usuarios cuando me registré, hoy somos más de 200).</p>
<p style="text-align:justify;">Puede que la arquitectura recuerde a <a href="http://www.taringa.net/">T!</a> (en su época linda, antes de aburguesarse y bastardear a la comunidad), pero la diferencia es que se puede postear dudas y consultas. Es una comunidad muy abierta y siempre dispuesta a ayudar y compartir.</p>
<p><a href="http://lazonalinux.com.ar">http://lazonalinux.com.ar</a></p>
<p>&#160;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Banshee 1.5.2]]></title>
<link>http://iyanmv.com/2009/11/21/banshee-1-5-2/</link>
<pubDate>Sat, 21 Nov 2009 09:10:05 +0000</pubDate>
<dc:creator>iyanmv</dc:creator>
<guid>http://iyanmv.com/2009/11/21/banshee-1-5-2/</guid>
<description><![CDATA[Se acaba de liberar una nueva versión de Banshee, la 1.5.2. Se trata de una versión centrada en la c]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignnone size-full wp-image-1448" style="border:0 none;" title="banshee-slide-music-browser" src="http://iyanovich.wordpress.com/files/2009/11/banshee-slide-music-browser.png" alt="" width="450" height="329" /></p>
<p>Se acaba de liberar una <strong>nueva versión de Banshee</strong>, la 1.5.2. Se trata de una versión <strong>centrada en la corrección de bugs</strong>, aunque no por ello libre de nuevas funciones, como por ejemplo, la herramienta para importar del iTunes, mejoras en la edición de los tags y soporte para nuevos dispositivos.</p>
<p><span style="text-decoration:underline;"><strong>Fedora</strong></span></p>
<blockquote><p>su -c &#8216;yum update banshee&#8217;</p></blockquote>
<p><span style="text-decoration:underline;"><strong>ArchLinux</strong></span></p>
<blockquote><p>sudo pacman -Syu</p></blockquote>
<p><span style="text-decoration:underline;"><strong>Ubuntu</strong></span></p>
<p>Agregáis <a href="https://launchpad.net/~banshee-team/+archive/ppa" target="_blank">este repositorio de Launchpad</a> y posteriormente actualizáis</p>
<blockquote><p>sudo aptitude update banshee</p></blockquote>
<p><strong>Descarga</strong> &#124; <a href="http://banshee-project.org/download/" target="_blank">Banshee 1.5.2</a></p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
