<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Seit Hamburg</title>
	<atom:link href="http://hamburguesas.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://hamburguesas.wordpress.com</link>
	<description></description>
	<lastBuildDate>Tue, 03 Nov 2009 22:54:53 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='hamburguesas.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/b8d3ea9e2c6918aac7dbf7dd28eb3586?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Seit Hamburg</title>
		<link>http://hamburguesas.wordpress.com</link>
	</image>
			<item>
		<title>Fedora 11 &#8211; MySQL configuration</title>
		<link>http://hamburguesas.wordpress.com/2009/11/03/fedora-11-mysql-configuration/</link>
		<comments>http://hamburguesas.wordpress.com/2009/11/03/fedora-11-mysql-configuration/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 22:54:53 +0000</pubDate>
		<dc:creator>backdoormann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hamburguesas.wordpress.com/?p=45</guid>
		<description><![CDATA[[root@www1 ~]#
yum -y install mysql-server
[root@www1 ~]#
/etc/rc.d/init.d/mysqld start
Initializing MySQL database:  Installing MySQL system tables&#8230;
090614 11:48:12 [Warning] Forcing shutdown of 2 plugins
OK
Filling help tables&#8230;
090614 11:48:12 [Warning] Forcing shutdown of 2 plugins
OK
To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system
PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamburguesas.wordpress.com&blog=1197698&post=45&subd=hamburguesas&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>[root@www1 ~]#</p>
<div>yum -y install mysql-server</div>
<p>[root@www1 ~]#</p>
<div>/etc/rc.d/init.d/mysqld start</div>
<p>Initializing MySQL database:  Installing MySQL system tables&#8230;<br />
090614 11:48:12 [Warning] Forcing shutdown of 2 plugins<br />
OK<br />
Filling help tables&#8230;<br />
090614 11:48:12 [Warning] Forcing shutdown of 2 plugins<br />
OK</p>
<p>To start mysqld at boot time you have to copy<br />
support-files/mysql.server to the right place for your system</p>
<p>PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !<br />
To do so, start the server, then issue the following commands:</p>
<p>/usr/bin/mysqladmin -u root password &#8216;new-password&#8217;<br />
/usr/bin/mysqladmin -u root -h www1.server-linux.info password &#8216;new-password&#8217;</p>
<p>Alternatively you can run:<br />
/usr/bin/mysql_secure_installation</p>
<p>which will also give you the option of removing the test<br />
databases and anonymous user created by default.  This is<br />
strongly recommended for production servers.</p>
<p>See the manual for more instructions.</p>
<p>You can start the MySQL daemon with:<br />
cd /usr ; /usr/bin/mysqld_safe &amp;</p>
<p>You can test the MySQL daemon with mysql-test-run.pl<br />
cd /usr/mysql-test ; perl mysql-test-run.pl</p>
<p>Please report any problems with the /usr/bin/mysqlbug script!</p>
<p>The latest information about MySQL is available at http://www.mysql.com/<br />
Support MySQL by buying support/licenses from http://shop.mysql.com/</p>
<p>Starting MySQL:     [  OK  ]</p>
<p>[root@www1 ~]#</p>
<div>chkconfig mysqld on</div>
<p>[root@www1 ~]#</p>
<div>mysql -u root</div>
<div>
<div># login to MySQL</div>
</div>
<p>Welcome to the MySQL monitor.  Commands end with ; or \g.<br />
Your MySQL connection id is 2 to server version: 5.0.22</p>
<p>Type &#8216;help;&#8217; or &#8216;\h&#8217; for help. Type &#8216;\c&#8217; to clear the buffer.</p>
<div># show user info</div>
<p>mysql&gt;</p>
<div>select user,host,password from mysql.user;</div>
<p>&nbsp;</p>
<div><img src="http://www.server-world.info/en/Fedora_11/mysql/img/1.jpg" alt="" width="413" height="162" /></div>
<p>5 rows in set (0.00 sec)</p>
<div># delete user that has no password</div>
<p>mysql&gt;</p>
<div>delete from mysql.user where user=&#8221;;</div>
<p>Query OK, 2 rows affected (0.00 sec)</p>
<div># set root password</div>
<p>mysql&gt;</p>
<div>set password for root@localhost=password(&#8216;password&#8217;);</div>
<p>Query OK, 0 rows affected (0.00 sec)</p>
<div># set root password</div>
<p>mysql&gt;</p>
<div>set password for root@&#8217;www1.server-linux.info&#8217;=password(&#8216;password&#8217;);</div>
<p>Query OK, 0 rows affected (0.00 sec)</p>
<div># set root password</div>
<p>mysql&gt;</p>
<div>set password for root@127.0.0.1=password(&#8216;password&#8217;);</div>
<p>Query OK, 0 rows affected (0.00 sec)</p>
<div># show user info</div>
<p>mysql&gt;</p>
<div>select user,host,password from mysql.user;</div>
<p>&nbsp;</p>
<div><img src="http://www.server-world.info/en/Fedora_11/mysql/img/2.jpg" alt="" width="473" height="110" /></div>
<p>3 rows in set (0.00 sec)</p>
<p>mysql&gt;</p>
<div>exit</div>
<div>
<div># logout</div>
</div>
<p>Bye<br />
[root@www1 ~]#</p>
<div>mysql -u root -p</div>
<div>
<div># login with root</div>
</div>
<p>Enter password:</p>
<div>
<div># password</div>
</div>
<p>Welcome to the MySQL monitor.  Commands end with ; or \g.<br />
Your MySQL connection id is 4 to server version: 5.0.22</p>
<p>Type &#8216;help;&#8217; or &#8216;\h&#8217; for help. Type &#8216;\c&#8217; to clear the buffer.</p>
<p>mysql&gt;</p>
<div>exit</div>
<p>Bye</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hamburguesas.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hamburguesas.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hamburguesas.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hamburguesas.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hamburguesas.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hamburguesas.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hamburguesas.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hamburguesas.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hamburguesas.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hamburguesas.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamburguesas.wordpress.com&blog=1197698&post=45&subd=hamburguesas&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hamburguesas.wordpress.com/2009/11/03/fedora-11-mysql-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/621f2fda49d0185b8b07eb2b1ea4fc34?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">backdoormann</media:title>
		</media:content>

		<media:content url="http://www.server-world.info/en/Fedora_11/mysql/img/1.jpg" medium="image" />

		<media:content url="http://www.server-world.info/en/Fedora_11/mysql/img/2.jpg" medium="image" />
	</item>
		<item>
		<title>Alias en shell</title>
		<link>http://hamburguesas.wordpress.com/2009/06/01/alias-en-shell/</link>
		<comments>http://hamburguesas.wordpress.com/2009/06/01/alias-en-shell/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 21:58:03 +0000</pubDate>
		<dc:creator>backdoormann</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://hamburguesas.wordpress.com/?p=41</guid>
		<description><![CDATA[shell linux alias<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamburguesas.wordpress.com&blog=1197698&post=41&subd=hamburguesas&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A shell is a software that provides an interface to the user. There could be two kinds of shells, text or graphical. In either category, the purpose of the shell is to lauch a program.</p>
<p>We can create alias inside a shell to invoke those programs in a more efficient way.</p>
<p>To do that, we just edit the file <em>.bashrc</em>. For example, if we want to create an alias in ubuntu to update the system, we add the following line:</p>
<p><em>#Alias for updating the system</em></p>
<p><em>alias update = &#8220;sudo apt-get update&#8221;</em></p>
<p>To override all possible aliases, we just write a backslash and the command will be run as-is.</p>
<p><em>\ls</em></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hamburguesas.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hamburguesas.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hamburguesas.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hamburguesas.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hamburguesas.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hamburguesas.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hamburguesas.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hamburguesas.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hamburguesas.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hamburguesas.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamburguesas.wordpress.com&blog=1197698&post=41&subd=hamburguesas&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hamburguesas.wordpress.com/2009/06/01/alias-en-shell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/621f2fda49d0185b8b07eb2b1ea4fc34?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">backdoormann</media:title>
		</media:content>
	</item>
		<item>
		<title>Flash in Fedora 10</title>
		<link>http://hamburguesas.wordpress.com/2008/12/24/flash-in-fedora-10/</link>
		<comments>http://hamburguesas.wordpress.com/2008/12/24/flash-in-fedora-10/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 16:11:43 +0000</pubDate>
		<dc:creator>backdoormann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://hamburguesas.wordpress.com/?p=37</guid>
		<description><![CDATA[fedora<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamburguesas.wordpress.com&blog=1197698&post=37&subd=hamburguesas&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Sencillo:</p>
<p>The YUM version simply installs the repository configuration files, after which you must install the Flash plugin separately.</p>
<p>To begin, refer to the Adobe site at <a class="external free" title="http://get.adobe.com/flashplayer/" href="http://get.adobe.com/flashplayer/">http://get.adobe.com/flashplayer/</a>.  Select <em>YUM for Linux</em> to download, and confirm.</p>
<p>Then proceed with the instructions showed below:</p>
<pre>su -c 'yum install flash-plugin nspluginwrapper.x86_64 \
    nspluginwrapper.i386 alsa-plugins-pulseaudio.i386 \
    libcurl.i386'

Yasta.</pre>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hamburguesas.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hamburguesas.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hamburguesas.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hamburguesas.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hamburguesas.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hamburguesas.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hamburguesas.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hamburguesas.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hamburguesas.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hamburguesas.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamburguesas.wordpress.com&blog=1197698&post=37&subd=hamburguesas&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hamburguesas.wordpress.com/2008/12/24/flash-in-fedora-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/621f2fda49d0185b8b07eb2b1ea4fc34?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">backdoormann</media:title>
		</media:content>
	</item>
		<item>
		<title>Memory Stick in Sony Vaio. Ubuntu Hardy.</title>
		<link>http://hamburguesas.wordpress.com/2008/11/29/memory-stick-in-sony-vaio-ubuntu-hardy/</link>
		<comments>http://hamburguesas.wordpress.com/2008/11/29/memory-stick-in-sony-vaio-ubuntu-hardy/#comments</comments>
		<pubDate>Sat, 29 Nov 2008 20:18:02 +0000</pubDate>
		<dc:creator>backdoormann</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[linux sony vaio memory_stick]]></category>

		<guid isPermaLink="false">http://hamburguesas.wordpress.com/?p=35</guid>
		<description><![CDATA[svn co -r155 http://svn.berlios.de/svnroot/repos/tifmxx/trunk/driver/
cd driver/
wget http://www.sw83.de/misc/tifm_ms.patch
patch -p0 &#60; tifm_ms.patch
make
sudo make install
http://swanseadivers.net/blog/tag/sony-vaio-ubuntu-hardy-linux/
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamburguesas.wordpress.com&blog=1197698&post=35&subd=hamburguesas&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>svn co -r155 http://svn.berlios.de/svnroot/repos/tifmxx/trunk/driver/<br />
cd driver/<br />
wget http://www.sw83.de/misc/tifm_ms.patch<br />
patch -p0 &lt; tifm_ms.patch<br />
make<br />
sudo make install</p>
<p><a href="http://swanseadivers.net/blog/tag/sony-vaio-ubuntu-hardy-linux/">http://swanseadivers.net/blog/tag/sony-vaio-ubuntu-hardy-linux/</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hamburguesas.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hamburguesas.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hamburguesas.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hamburguesas.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hamburguesas.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hamburguesas.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hamburguesas.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hamburguesas.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hamburguesas.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hamburguesas.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamburguesas.wordpress.com&blog=1197698&post=35&subd=hamburguesas&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hamburguesas.wordpress.com/2008/11/29/memory-stick-in-sony-vaio-ubuntu-hardy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/621f2fda49d0185b8b07eb2b1ea4fc34?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">backdoormann</media:title>
		</media:content>
	</item>
		<item>
		<title>Sysvconfig</title>
		<link>http://hamburguesas.wordpress.com/2008/09/07/sysvconfig/</link>
		<comments>http://hamburguesas.wordpress.com/2008/09/07/sysvconfig/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 14:38:50 +0000</pubDate>
		<dc:creator>backdoormann</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[sysvconfig services ubuntu]]></category>

		<guid isPermaLink="false">http://hamburguesas.wordpress.com/?p=29</guid>
		<description><![CDATA[A text menu based utility for configuring init script links. It provides extensive explanations at each step.
Some features supported by sysvconfig are:
- Enable or disable services.
- Edit init links.
- Restore from backup file if you make a mistake.
- Menu or command line interface.
- View all services, each with its status and a brief description.
Sysvconfig will [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamburguesas.wordpress.com&blog=1197698&post=29&subd=hamburguesas&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A text menu based utility for configuring init script links. It provides extensive explanations at each step.</p>
<p>Some features supported by <em>sysvconfig</em> are:</p>
<p>- Enable or disable services.<br />
- Edit init links.<br />
- Restore from backup file if you make a mistake.<br />
- Menu or command line interface.<br />
- View all services, each with its status and a brief description.</p>
<p><em>Sysvconfig</em> will install service command to <em>start</em>, <em>stop</em>, <em>restart</em> the service using service command use the following format:</p>
<p><em>sudo service apache2 restart</em></p>
<p><em>sudo service apache2 stop</em></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/hamburguesas.wordpress.com/29/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/hamburguesas.wordpress.com/29/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hamburguesas.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hamburguesas.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hamburguesas.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hamburguesas.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hamburguesas.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hamburguesas.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hamburguesas.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hamburguesas.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hamburguesas.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hamburguesas.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamburguesas.wordpress.com&blog=1197698&post=29&subd=hamburguesas&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hamburguesas.wordpress.com/2008/09/07/sysvconfig/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/621f2fda49d0185b8b07eb2b1ea4fc34?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">backdoormann</media:title>
		</media:content>
	</item>
		<item>
		<title>Montar imagen ISO en Ubuntu</title>
		<link>http://hamburguesas.wordpress.com/2008/05/20/montar-imagen-iso-en-ubuntu/</link>
		<comments>http://hamburguesas.wordpress.com/2008/05/20/montar-imagen-iso-en-ubuntu/#comments</comments>
		<pubDate>Tue, 20 May 2008 18:44:05 +0000</pubDate>
		<dc:creator>backdoormann</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[iso imagen]]></category>

		<guid isPermaLink="false">http://hamburguesas.wordpress.com/?p=26</guid>
		<description><![CDATA[sudo mount -t iso9660 -o loop archivo.iso /directorio/de/montaje
Más: http://bronch.wordpress.com/2006/05/24/como-montar-archivos-iso-bin-mdf-y-nrg-en-linux/
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamburguesas.wordpress.com&blog=1197698&post=26&subd=hamburguesas&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>sudo mount -t iso9660 -o loop archivo.iso /directorio/de/montaje</p>
<p>Más: http://bronch.wordpress.com/2006/05/24/como-montar-archivos-iso-bin-mdf-y-nrg-en-linux/</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/hamburguesas.wordpress.com/26/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/hamburguesas.wordpress.com/26/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hamburguesas.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hamburguesas.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hamburguesas.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hamburguesas.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hamburguesas.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hamburguesas.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hamburguesas.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hamburguesas.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hamburguesas.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hamburguesas.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamburguesas.wordpress.com&blog=1197698&post=26&subd=hamburguesas&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hamburguesas.wordpress.com/2008/05/20/montar-imagen-iso-en-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/621f2fda49d0185b8b07eb2b1ea4fc34?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">backdoormann</media:title>
		</media:content>
	</item>
		<item>
		<title>Configuring MySQL for Linux</title>
		<link>http://hamburguesas.wordpress.com/2008/05/06/configuring-mysql-for-linux/</link>
		<comments>http://hamburguesas.wordpress.com/2008/05/06/configuring-mysql-for-linux/#comments</comments>
		<pubDate>Tue, 06 May 2008 12:46:32 +0000</pubDate>
		<dc:creator>backdoormann</dc:creator>
				<category><![CDATA[bd]]></category>
		<category><![CDATA[programacion]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://hamburguesas.wordpress.com/?p=25</guid>
		<description><![CDATA[Three main tasks for the basic configuration of MySQL in Linux:
1. Create the grant tables.
2. Start the server.
3. Verify server function.
For the first step we have to find the script mysql_install_db. In Ubuntu it is located in the folder /bin.
The initial account settings created with this script have no passwords associated with the accounts.
You can [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamburguesas.wordpress.com&blog=1197698&post=25&subd=hamburguesas&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Three main tasks for the basic configuration of MySQL in Linux:</p>
<p>1. Create the grant tables.</p>
<p>2. Start the server.</p>
<p>3. Verify server function.</p>
<p>For the first step we have to find the script <em>mysql_install_db</em>. In Ubuntu it is located in the folder <em>/bin</em>.</p>
<p><strong>The initial account settings created with this script have no passwords associated with the accounts.</strong></p>
<p>You can <strong>start the MySQL</strong> daemon with the following command in root mode:<br />
<em>cd /usr ; /usr/bin/mysqld_safe &amp;</em></p>
<p>Remember to <strong>set a password for the MySQL</strong> root user.<br />
To do so, start the server, then issue the following commands:<br />
<em>/usr/bin/mysqladmin -u root password &#8216;new-password&#8217;<br />
/usr/bin/mysqladmin -u root -h name-of-your-laptop password &#8216;new-password&#8217;</em><br />
See the manual for more instructions.<br />
You can start the MySQL daemon with:<br />
<em>cd /usr ; /usr/bin/mysqld_safe &amp;</em></p>
<p>You can <strong>test the MySQL daemon</strong> with mysql-test-run.pl, you&#8217;ll get output similar to that shown below:<br />
<em>cd mysql-test ; perl mysql-test-run.pl</em></p>
<p>./mysqladmin Ver 8.40 Distrib 4.0.22, for pc-linux on i686<br />
Copyright (C) 2000 MySQL AB &amp; MySQL Finland AB &amp; TCX DataKonsult AB<br />
This software comes with ABSOLUTELY NO WARRANTY.  This is free software,<br />
and you are welcome to modify and redistribute it under the GPL license</p>
<p>Server version     4.0.22<br />
Protocol version   10<br />
Connection         Localhost via UNIX socket<br />
UNIX socket        /tmp/mysql.sock<br />
Uptime:            45 sec</p>
<p>Threads: 1  Questions: 1  Slow Queries: 1  Opens: 6  Flush Tables: 1  Open Tables: 0  Queries per second avg: 0.022</p>
<p>Once the server is up and running, test it out! Put your SQL knowledge to work and ensure that you&#8217;re able to create tables and work with data. Don&#8217;t forget that one of your first tasks should be to add security to the default accounts created during the installation process.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/hamburguesas.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/hamburguesas.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hamburguesas.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hamburguesas.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hamburguesas.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hamburguesas.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hamburguesas.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hamburguesas.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hamburguesas.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hamburguesas.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hamburguesas.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hamburguesas.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamburguesas.wordpress.com&blog=1197698&post=25&subd=hamburguesas&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hamburguesas.wordpress.com/2008/05/06/configuring-mysql-for-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/621f2fda49d0185b8b07eb2b1ea4fc34?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">backdoormann</media:title>
		</media:content>
	</item>
		<item>
		<title>Paso de parámetros a funciones en Java</title>
		<link>http://hamburguesas.wordpress.com/2008/04/28/paso-de-parametros-a-funciones-en-java/</link>
		<comments>http://hamburguesas.wordpress.com/2008/04/28/paso-de-parametros-a-funciones-en-java/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 00:01:43 +0000</pubDate>
		<dc:creator>backdoormann</dc:creator>
				<category><![CDATA[programacion]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://hamburguesas.wordpress.com/?p=22</guid>
		<description><![CDATA[En el paso de parámetros a funciones hay dos aproximaciones clásicas: el paso por valor y paso por referencia.
En el paso por valor se realiza una copia de los valores que se pasan, trabajando dentro de la función con la copia. Es por ello que cualquier cambio que sufran dentro, no repercute fuera de la [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamburguesas.wordpress.com&blog=1197698&post=22&subd=hamburguesas&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>En el paso de parámetros a funciones hay dos aproximaciones clásicas: el paso por valor y paso por referencia.</p>
<p>En el <strong>paso por valor</strong> se realiza una copia de los valores que se pasan, trabajando dentro de la función con la copia. Es por ello que cualquier cambio que sufran dentro, no repercute fuera de la función.</p>
<p>En el <strong>paso por referencia</strong> no se realiza dicha copia, por lo que las modificaciones de dentro de las funciones afectan a los parámetros y esos cambios permanecen al final de la función.</p>
<p>En Java el paso por parámetro es por valor, aunque los efectos son de paso por referencia cuando los argumentos son objetos. ¿cómo sucede eso? Pues es muy fácil, si una función tiene como argumento un tipo primitivo (int, float, etc&#8230;), en Java se realiza una copia para la función y cualquier cambio a dicho argumento no afecta a la variable original. Este paso de parámetros en Java está orientado a utilizar el valor de la variable para otros cálculos.</p>
<p>En el caso de los objetos es distinto. En realidad lo que sucede es que en Java siempre tenemos referencias a los objetos. Por eso al pasar a una función como argumento un objeto, pasamos la referencia al mismo, es decir, aunque se hace una copia para el paso por valor, como lo que se copia es una referencia, los cambios al objeto referenciado sí son visibles y afectan fuera de la función.</p>
<p>La única excepción es la clase String , cuyos objetos no son mutables. Cualquier modificación de un objeto String lleva aparejada la creación de una nueva instancia del objeto. Si deseamos el mismo comportamiento para el paso de parámetros del resto de objetos, tenemos que recurrir al objeto StringBuffer.</p>
<p><em><strong>Comentarios originales: </strong></em></p>
<p>Bueno, decir que la clase String es una excepción es algo equivocado. Efectivamente, la clase String es una clase inmutable, porque no se puede modificar el estado del objeto a través de ningún método del mismo. El objeto String inicializa su valor en el constructor y a partir de ese momento no cambia. Por lo tanto, como tu bien dices, cuando utilizamos el operador suma, ejemplo:</p>
<p>a = a + &#8221; texto añadido.&#8221;;</p>
<p>Lo que se está haciendo es crear un nuevo objeto String con el resultado de concatenar el String a con en String &#8221; texto añadido.&#8221;. Finalemente el operador de asignación hace que a deje de referenciar al antiguo String y apunte al objeto recién creado. Por supuesto, las otras referencias que puedan haber al antiguo a (en la función que llamo a esta) sigen apuntando al antiguo objeto.</p>
<p>Esto no es ninguna excepción, es simplemente el resultado lógico de la semantica de llamada de función de Java (paso por valor de la referencia) y de la semantica de las variables a objetos (las variables nunca son los objetos &#8220;en si&#8221; sino una referencia a los mismos).</p>
<p>Cualquier objeto inmutable reflejará este comportamiento.</p>
<p>Referencias:</p>
<p>http://www.error500.net/garbagecollector/java/paso_de_parmetros_a_funciones.html</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/hamburguesas.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/hamburguesas.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hamburguesas.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hamburguesas.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hamburguesas.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hamburguesas.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hamburguesas.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hamburguesas.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hamburguesas.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hamburguesas.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hamburguesas.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hamburguesas.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamburguesas.wordpress.com&blog=1197698&post=22&subd=hamburguesas&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hamburguesas.wordpress.com/2008/04/28/paso-de-parametros-a-funciones-en-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/621f2fda49d0185b8b07eb2b1ea4fc34?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">backdoormann</media:title>
		</media:content>
	</item>
		<item>
		<title>Navegador en modo texto.</title>
		<link>http://hamburguesas.wordpress.com/2008/03/22/navegador-en-modo-texto/</link>
		<comments>http://hamburguesas.wordpress.com/2008/03/22/navegador-en-modo-texto/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 19:51:19 +0000</pubDate>
		<dc:creator>backdoormann</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[navegar internet terminal]]></category>

		<guid isPermaLink="false">http://hamburguesas.wordpress.com/?p=21</guid>
		<description><![CDATA[Existe un navegador en modo texto que se llama links2. Para instalarlo en Ubuntu:
sudo aptitude install links2
Una vez que lo tenemos instalado, si queremos ver alguna página con este navegador hay que teclear en el terminal:
links2 www.google.es
Podremos acceder a un manual desde el programa. No tiene más complicación.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamburguesas.wordpress.com&blog=1197698&post=21&subd=hamburguesas&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Existe un navegador en modo texto que se llama links2. Para instalarlo en Ubuntu:</p>
<p><i>sudo aptitude install links2</i></p>
<p>Una vez que lo tenemos instalado, si queremos ver alguna página con este navegador hay que teclear en el terminal:</p>
<p>links2 www.google.es</p>
<p>Podremos acceder a un manual desde el programa. No tiene más complicación.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/hamburguesas.wordpress.com/21/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/hamburguesas.wordpress.com/21/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hamburguesas.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hamburguesas.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hamburguesas.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hamburguesas.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hamburguesas.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hamburguesas.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hamburguesas.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hamburguesas.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hamburguesas.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hamburguesas.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamburguesas.wordpress.com&blog=1197698&post=21&subd=hamburguesas&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hamburguesas.wordpress.com/2008/03/22/navegador-en-modo-texto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/621f2fda49d0185b8b07eb2b1ea4fc34?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">backdoormann</media:title>
		</media:content>
	</item>
		<item>
		<title>Colores en la salida del comando ls</title>
		<link>http://hamburguesas.wordpress.com/2008/03/21/colores-en-la-salida-del-comando-ls/</link>
		<comments>http://hamburguesas.wordpress.com/2008/03/21/colores-en-la-salida-del-comando-ls/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 13:02:14 +0000</pubDate>
		<dc:creator>backdoormann</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[colores ls]]></category>

		<guid isPermaLink="false">http://hamburguesas.wordpress.com/?p=20</guid>
		<description><![CDATA[En la consola de Ubuntu no salen los colores al hacer listados de archivos con el comando ls. Para conseguirlo hay que editar el archivo /etc/bash.bashrc y añadir al final:
alias ls = &#8216;ls &#8211;color=auto&#8217;
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamburguesas.wordpress.com&blog=1197698&post=20&subd=hamburguesas&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>En la consola de Ubuntu no salen los colores al hacer listados de archivos con el comando ls. Para conseguirlo hay que editar el archivo /etc/bash.bashrc y añadir al final:</p>
<p><i>alias ls = &#8216;ls &#8211;color=auto&#8217;</i></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/hamburguesas.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/hamburguesas.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hamburguesas.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hamburguesas.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hamburguesas.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hamburguesas.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hamburguesas.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hamburguesas.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hamburguesas.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hamburguesas.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hamburguesas.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hamburguesas.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hamburguesas.wordpress.com&blog=1197698&post=20&subd=hamburguesas&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hamburguesas.wordpress.com/2008/03/21/colores-en-la-salida-del-comando-ls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/621f2fda49d0185b8b07eb2b1ea4fc34?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">backdoormann</media:title>
		</media:content>
	</item>
	</channel>
</rss>