<?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>CoderDan &#187; Linux</title>
	<atom:link href="http://www.coderdan.com/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.coderdan.com</link>
	<description>My thoughts on programming, technology and business</description>
	<lastBuildDate>Tue, 13 Dec 2011 23:34:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Which package owns a file?</title>
		<link>http://www.coderdan.com/2011/01/which-package-owns-a-file/</link>
		<comments>http://www.coderdan.com/2011/01/which-package-owns-a-file/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 03:45:33 +0000</pubDate>
		<dc:creator>Daniel Negrea</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[rpm]]></category>

		<guid isPermaLink="false">http://www.coderdan.com/?p=82</guid>
		<description><![CDATA[Sometimes you wonder which package installed a file. There is a simple way to do this on RPM based systems. Unfortunately, I tend to forget it so I will post it here. # rpm -qf /usr/bin/od coreutils-8.5-7.fc14.i686 &#8230; and to get more info about the package: [root@iweb ~]# yum info coreutils Loaded plugins: fastestmirror, presto Loading [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes you wonder which package installed a file. There is a simple way to do this on RPM based systems. Unfortunately, I tend to forget it so I will post it here.</p>
<pre># rpm -qf /usr/bin/od
coreutils-8.5-7.fc14.i686</pre>
<p>&#8230; and to get more info about the package:</p>
<pre>[root@iweb ~]# yum info coreutils
Loaded plugins: fastestmirror, presto
Loading mirror speeds from cached hostfile
 * fedora: fedora.mirror.iweb.ca
 * updates: mirror.cc.vt.edu
Installed Packages
Name        : coreutils
Arch        : i686
Version     : 8.5
Release     : 7.fc14
Size        : 12 M
Repo        : installed
From repo   : updates
Summary     : A set of basic GNU tools commonly used in shell scripts
URL         : http://www.gnu.org/software/coreutils/
License     : GPLv3+
Description : These are the GNU core utilities.  This package is the combination
            : of the old GNU fileutils, sh-utils, and textutils packages.
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.coderdan.com/2011/01/which-package-owns-a-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Fix for the Fedora DNSSEC Issue</title>
		<link>http://www.coderdan.com/2010/06/quick-fix-for-the-fedora-dnssec-issue/</link>
		<comments>http://www.coderdan.com/2010/06/quick-fix-for-the-fedora-dnssec-issue/#comments</comments>
		<pubDate>Sat, 26 Jun 2010 16:03:52 +0000</pubDate>
		<dc:creator>Daniel Negrea</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[dnssec]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[named]]></category>

		<guid isPermaLink="false">http://www.coderdan.com/?p=64</guid>
		<description><![CDATA[After a routing update, Fedora 12 has some problems with the DNS service. The named service fails to start with with the following error: Error in named configuration: /etc/pki/dnssec-keys//named.dnssec.keys:1: open: /etc/pki/dnssec-keys//production/bg.conf: file not found The update was not a fortunate one and an official fix will probably be issued soon. A quick way is to [...]]]></description>
			<content:encoded><![CDATA[<p>After a routing update, Fedora 12 has some problems with the DNS service. The named service fails to start with with the following error:</p>
<p><code>Error in named configuration:<br />
/etc/pki/dnssec-keys//named.dnssec.keys:1: open: /etc/pki/dnssec-keys//production/bg.conf: file not found</code></p>
<p>The update was not a fortunate one and an official fix will probably be issued soon. A quick way is to disable the DNSSEC options in named. Edit /etc/named.conf and comment the following lines:<br />
<code><br />
      dnssec-enable yes;<br />
      dnssec-validation yes;<br />
      dnssec-lookaside . trust-anchor dlv.isc.org.;<br />
</code><br />
 and at the bottom:<br />
<code><br />
include "/etc/pki/dnssec-keys//named.dnssec.keys";<br />
include "/etc/pki/dnssec-keys//dlv/dlv.isc.org.conf";<br />
</code><br />
The DNSSEC features ads digital signatures to your DNS queries. If you need this, keep searching for other solutions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coderdan.com/2010/06/quick-fix-for-the-fedora-dnssec-issue/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Cygwin update</title>
		<link>http://www.coderdan.com/2009/12/cygwin-update/</link>
		<comments>http://www.coderdan.com/2009/12/cygwin-update/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 17:46:53 +0000</pubDate>
		<dc:creator>Daniel Negrea</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[cygwin]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://www.coderdan.com/?p=43</guid>
		<description><![CDATA[Cygwin is one way to have a Linux like environment on Windows. It is a superior alternative to the command prompt, it is great for occasional text processing. I used the included ssh client to connect to remote linux servers and it works well with a little exception:  many programs using more advanced terminal capabilities [...]]]></description>
			<content:encoded><![CDATA[<p>Cygwin is one way to have a Linux like environment on Windows. It is a superior alternative to the command prompt, it is great for occasional text processing. I used the included ssh client to connect to remote linux servers and it works well with a little exception:  many programs using more advanced terminal capabilities had weird artifacts, characters out of place, etc. Once, I tried to look for a fix, some terminal settings on client side or server side but nothing worked. Today I updated to the new Cygwin (1.7.1-1) and the issue was solved. Here is a screenshot of Midnight Commander running on a remote linux server.</p>
<p><a href="http://www.coderdan.com/wp-content/uploads/2009/12/mc.png"><img class="alignnone size-full wp-image-44" title="Midnight Commander (mc)" src="http://www.coderdan.com/wp-content/uploads/2009/12/mc.png" alt="Midnight Commander (mc)" width="668" height="331" /></a></p>
<p>I did not use it for some time but I am glad to see it working.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coderdan.com/2009/12/cygwin-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

