<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>{francho(lab)} &#187; emuladores</title>
	<atom:link href="http://francho.org/lab/tag/emuladores/feed/" rel="self" type="application/rss+xml" />
	<link>http://francho.org/lab</link>
	<description>forjando ideicas</description>
	<lastBuildDate>Fri, 20 Aug 2010 10:56:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Como ejecutar aplicaciones WindowsXP en Linux (QEmu)</title>
		<link>http://francho.org/lab/87/como-ejecutar-aplicaciones-windowsxp-en-linux-qemu/</link>
		<comments>http://francho.org/lab/87/como-ejecutar-aplicaciones-windowsxp-en-linux-qemu/#comments</comments>
		<pubDate>Wed, 07 Feb 2007 22:07:15 +0000</pubDate>
		<dc:creator>francho</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[emuladores]]></category>

		<guid isPermaLink="false">http://francho.org/blog/?p=87</guid>
		<description><![CDATA[En este tutorial explican paso a paso como instalr QEmu en Ubuntu para poder correr un WindowsXP o aplicaciones Windows en el escritorio de Ubuntu.
Este es mi script para lanzar el XP desde Gnome (lo lanzo con un &#8220;launcher&#8221; que tengo en el escritorio)

$ cat bin/qemu_winXP.sh
#! /bin/sh
#
# francho@pixar.es
#       utomatiza el lanzamiento de WinXP con qemu

MIERR=`tempfile`

# [...]]]></description>
			<content:encoded><![CDATA[<p>En este <a href="https://help.ubuntu.com/community/WindowsXPUnderQemuHowTo">tutorial</a> explican paso a paso como instalr QEmu en Ubuntu para poder correr un WindowsXP o aplicaciones Windows en el escritorio de Ubuntu.</p>
<p>Este es mi script para lanzar el XP desde Gnome (lo lanzo con un &#8220;launcher&#8221; que tengo en el escritorio)</p>
<pre class="brush: bash;">
$ cat bin/qemu_winXP.sh
#! /bin/sh
#
# francho@pixar.es
#       utomatiza el lanzamiento de WinXP con qemu

MIERR=`tempfile`

# Parametros de configuracion
RAM=256
TMPFS_SIZE=272

# Preparamos el entorno
gksudo &quot;modprobe kqemu&quot; 2&gt; ${MIERR}
gksudo &quot;chgrp adm /dev/kqemu&quot; 2&gt; ${MIERR}
gksudo &quot;umount /dev/shm&quot; 2&gt; ${MIERR}
gksudo &quot;mount -t tmpfs -o size=${TMPFS_SIZE}m none /dev/shm&quot; 2&gt; ${MIERR}

# Está el CDROM montado?
( mount | egrep -q &quot;cdrom|dvdrecorder&quot; ) &amp;&amp; CDROM=&quot;-cdrom /dev/cdrom&quot; || CDROM=&quot;&quot;

# Lanzamos el qemu
qemu -localtime -hda ~/windowsXP.img ${CDROM} -m ${RAM} 2&gt; ${MIERR}

# Si hay algo en el log de errores lo mostramos con cara gnome
[ -s ${MIERR} ] &amp;&amp; zenity --text-info --filename ${MIERR}

rm -f ${MIERR}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://francho.org/lab/87/como-ejecutar-aplicaciones-windowsxp-en-linux-qemu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
