<?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>zonalivre.org &#187; linux</title>
	<atom:link href="http://www.zonalivre.org/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zonalivre.org</link>
	<description></description>
	<lastBuildDate>Fri, 21 May 2010 22:39:47 +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>How to force yum to uninstall a package when you change it&#8217;s name</title>
		<link>http://www.zonalivre.org/2009/10/29/how-to-force-yum-to-uninstall-a-package-when-you-change-its-name/</link>
		<comments>http://www.zonalivre.org/2009/10/29/how-to-force-yum-to-uninstall-a-package-when-you-change-its-name/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 17:37:01 +0000</pubDate>
		<dc:creator>Joao</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[rpm]]></category>
		<category><![CDATA[specfiles]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://www.zonalivre.org/?p=58</guid>
		<description><![CDATA[Use the obsoletes tag in the specfile.  This will cause &#8220;package-oldname&#8221; to be uninstalled before installing &#8220;package-renamed&#8221;.

Name: package-renamed
Obsoletes: package-oldname



No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Use the obsoletes tag in the specfile.  This will cause &#8220;package-oldname&#8221; to be uninstalled before installing &#8220;package-renamed&#8221;.</p>
<p><code><br />
Name: package-renamed<br />
Obsoletes: package-oldname<br />
</code></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.zonalivre.org/2009/10/29/how-to-force-yum-to-uninstall-a-package-when-you-change-its-name/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using dd to create large files</title>
		<link>http://www.zonalivre.org/2009/10/20/using-dd-to-create-large-files/</link>
		<comments>http://www.zonalivre.org/2009/10/20/using-dd-to-create-large-files/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 12:50:58 +0000</pubDate>
		<dc:creator>Joao</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[dd]]></category>
		<category><![CDATA[filesystem]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.zonalivre.org/?p=55</guid>
		<description><![CDATA[An example of using dd to create a 1GB file.

dd if=/dev/zero of=testfile bs=1M count=1024



No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>An example of using dd to create a 1GB file.<br />
<code><br />
dd if=/dev/zero of=testfile bs=1M count=1024<br />
</code></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.zonalivre.org/2009/10/20/using-dd-to-create-large-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to temporarly ignore foreign keys in MySQL InnoDB.</title>
		<link>http://www.zonalivre.org/2009/10/19/how-to-temporarly-ignore-foreign-keys-in-mysql-innodb/</link>
		<comments>http://www.zonalivre.org/2009/10/19/how-to-temporarly-ignore-foreign-keys-in-mysql-innodb/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 17:40:52 +0000</pubDate>
		<dc:creator>Joao</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[innodb]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.zonalivre.org/?p=52</guid>
		<description><![CDATA[
SET FOREIGN_KEY_CHECKS = 0;
SELECT @@FOREIGN_KEY_CHECKS;
SET FOREIGN_KEY_CHECKS = 1;

Alexander Stetsenko blog has more info about it.


No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><code><br />
SET FOREIGN_KEY_CHECKS = 0;<br />
SELECT @@FOREIGN_KEY_CHECKS;<br />
SET FOREIGN_KEY_CHECKS = 1;<br />
</code></p>
<p><a href='http://www.stetsenko.net/2008/10/mysql-how-to-ignore-checking-of-foreign-key-constraints-for-innodb-tables/'>Alexander Stetsenko blog</a> has more info about it.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.zonalivre.org/2009/10/19/how-to-temporarly-ignore-foreign-keys-in-mysql-innodb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache2::Request rpm</title>
		<link>http://www.zonalivre.org/2009/10/13/apache2request-rpm/</link>
		<comments>http://www.zonalivre.org/2009/10/13/apache2request-rpm/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 14:58:04 +0000</pubDate>
		<dc:creator>Joao</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[rpm]]></category>

		<guid isPermaLink="false">http://www.zonalivre.org/?p=41</guid>
		<description><![CDATA[Not immediately obvious, but if you&#8217;re looking for an rpm to install the Apache2::Request module you need perl-libapreq2 (this works in CentOS 5 and I imagine others as well).
yum install perl-libapreq2


No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Not immediately obvious, but if you&#8217;re looking for an rpm to install the Apache2::Request module you need perl-libapreq2 (this works in CentOS 5 and I imagine others as well).</p>
<p><code>yum install perl-libapreq2</code></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.zonalivre.org/2009/10/13/apache2request-rpm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Common yum commands</title>
		<link>http://www.zonalivre.org/2009/10/13/common-yum-commands/</link>
		<comments>http://www.zonalivre.org/2009/10/13/common-yum-commands/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 13:35:56 +0000</pubDate>
		<dc:creator>Joao</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://www.zonalivre.org/?p=36</guid>
		<description><![CDATA[List available repositores
yum repolist
Search by package name (case insensitive)
yum list "*package*"
List files inside a repository package (regardless if that package has been installed)
repoquery --list &#60;PACKAGE_NAME&#62;


Related posts:Common RPM commands This is my commonly used rpm command reference Install/Upgrade a...
Related posts brought to you by Yet Another Related Posts Plugin.


Related posts:<ol><li><a href='http://www.zonalivre.org/2009/10/12/common-rpm-commands/' rel='bookmark' title='Permanent Link: Common RPM commands'>Common RPM commands</a> <small>This is my commonly used rpm command reference Install/Upgrade a...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>List available repositores<br />
<code>yum repolist</code><br />
Search by package name (case insensitive)<br />
<code>yum list "*package*"</code><br />
List files inside a repository package (regardless if that package has been installed)<br />
<code>repoquery --list &lt;PACKAGE_NAME&gt;</code></p>


<p>Related posts:<ol><li><a href='http://www.zonalivre.org/2009/10/12/common-rpm-commands/' rel='bookmark' title='Permanent Link: Common RPM commands'>Common RPM commands</a> <small>This is my commonly used rpm command reference Install/Upgrade a...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.zonalivre.org/2009/10/13/common-yum-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Give passwordless sudo access to a user</title>
		<link>http://www.zonalivre.org/2009/10/13/give-passwordless-sudo-access-to-a-user/</link>
		<comments>http://www.zonalivre.org/2009/10/13/give-passwordless-sudo-access-to-a-user/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 02:17:08 +0000</pubDate>
		<dc:creator>Joao</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[su]]></category>
		<category><![CDATA[sudo]]></category>

		<guid isPermaLink="false">http://www.zonalivre.org/?p=32</guid>
		<description><![CDATA[Add the following to the /etc/sudoers file:
&#60;USERNAME&#62; ALL= NOPASSWD: ALL


No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Add the following to the /etc/sudoers file:</p>
<p><code>&lt;USERNAME&gt; ALL= NOPASSWD: ALL</code></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.zonalivre.org/2009/10/13/give-passwordless-sudo-access-to-a-user/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
