<?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>dragffy.com &#187; Linux</title>
	<atom:link href="http://dragffy.com/blog/posts/category/operating-system/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://dragffy.com/blog</link>
	<description>The development, documentation, and blogging domain of Gabriel Dragffy.</description>
	<lastBuildDate>Sun, 29 Apr 2012 11:55:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Add Secondary IP Address to CentOS 5.5</title>
		<link>http://dragffy.com/blog/posts/add-secondary-ip-address-to-centos-5-5</link>
		<comments>http://dragffy.com/blog/posts/add-secondary-ip-address-to-centos-5-5#comments</comments>
		<pubDate>Tue, 08 Mar 2011 15:32:51 +0000</pubDate>
		<dc:creator>Gabe</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[RHEL/CentOS]]></category>

		<guid isPermaLink="false">http://dragffy.com/blog/?p=163</guid>
		<description><![CDATA[Create a new interface file with a colon and a number. # cp /etc/sysconfig/network-scripts/ifcfg-eth0 /etc/sysconfig/network-scripts/ifcfg-eth0:1 # vim /etc/sysconfig/network-scripts/ifcfg-eth0:1 DEVICE=eth0:1 BOOTPROTO=static IPADDR=192.168.0.5 ONBOOT=yes To activate it, just # ifup eth0:1]]></description>
			<content:encoded><![CDATA[<p>Create a new interface file with a colon and a number.<br />
# cp  /etc/sysconfig/network-scripts/ifcfg-eth0 /etc/sysconfig/network-scripts/ifcfg-eth0:1<br />
# vim /etc/sysconfig/network-scripts/ifcfg-eth0:1</p>
<p>DEVICE=eth0:1<br />
BOOTPROTO=static<br />
IPADDR=192.168.0.5<br />
ONBOOT=yes</p>
<p>To activate it, just</p>
<p># ifup eth0:1</p>
]]></content:encoded>
			<wfw:commentRss>http://dragffy.com/blog/posts/add-secondary-ip-address-to-centos-5-5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSH KeepAlive</title>
		<link>http://dragffy.com/blog/posts/ssh-keepalive</link>
		<comments>http://dragffy.com/blog/posts/ssh-keepalive#comments</comments>
		<pubDate>Wed, 09 Feb 2011 15:34:34 +0000</pubDate>
		<dc:creator>Gabe</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://dragffy.com/blog/?p=161</guid>
		<description><![CDATA[add the following to sshd_config KeepAlive yes ClientAliveInterval 60]]></description>
			<content:encoded><![CDATA[<p>add the following to sshd_config</p>
<p><code>KeepAlive yes<br />
ClientAliveInterval 60</code></p>
]]></content:encoded>
			<wfw:commentRss>http://dragffy.com/blog/posts/ssh-keepalive/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>apache2: apr_sockaddr_info_get() failed</title>
		<link>http://dragffy.com/blog/posts/apache2-apr_sockaddr_info_get-failed</link>
		<comments>http://dragffy.com/blog/posts/apache2-apr_sockaddr_info_get-failed#comments</comments>
		<pubDate>Wed, 24 Nov 2010 15:28:55 +0000</pubDate>
		<dc:creator>Gabe</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://dragffy.com/blog/?p=158</guid>
		<description><![CDATA[Starting httpd: httpd: apr_sockaddr_info_get() failed for hostname.domain.com httpd: Could not reliably determine the server&#8217;s fully qualified domain name, using 127.0.0.1 for ServerName Fix with these commands : # hostname HOSTNAME.DOMAIN.COM Add in to /etc/hosts e.g. # vim /etc/hosts # echo HOST.DOMAIN.com > /etc/hostname # /bin/hostname -F /etc/hostname # apache2ctl graceful]]></description>
			<content:encoded><![CDATA[<p>Starting httpd: httpd: apr_sockaddr_info_get() failed for hostname.domain.com<br />
httpd: Could not reliably determine the server&#8217;s fully qualified domain name, using 127.0.0.1 for ServerName </p>
<p>Fix with these commands :</p>
<p><code># hostname HOSTNAME.DOMAIN.COM</code></p>
<p>Add in to <code>/etc/hosts</code> e.g. <code># vim /etc/hosts</code></p>
<p><code># echo HOST.DOMAIN.com > /etc/hostname</code></p>
<p><code># /bin/hostname -F /etc/hostname</code></p>
<p><code># apache2ctl graceful</code></p>
]]></content:encoded>
			<wfw:commentRss>http://dragffy.com/blog/posts/apache2-apr_sockaddr_info_get-failed/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy way to install LAMP (DNS, samba, etc) under Maverick Meerkat Ubuntu 10.10</title>
		<link>http://dragffy.com/blog/posts/easy-way-to-install-lamp-dns-samba-etc-under-maverick-meerkat-ubuntu-10-10</link>
		<comments>http://dragffy.com/blog/posts/easy-way-to-install-lamp-dns-samba-etc-under-maverick-meerkat-ubuntu-10-10#comments</comments>
		<pubDate>Wed, 24 Nov 2010 14:21:14 +0000</pubDate>
		<dc:creator>Gabe</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://dragffy.com/blog/?p=155</guid>
		<description><![CDATA[Either: $ sudo tasksel or: $ sudo tasksel install lamp-server or: $ sudo apt-get install php5 mysql-server apache2]]></description>
			<content:encoded><![CDATA[<p>Either:<br />
<code>$ sudo tasksel</code></p>
<p>or:<br />
<code>$ sudo tasksel install lamp-server</code></p>
<p>or:<br />
<code>$ sudo apt-get install php5 mysql-server apache2</code></p>
]]></content:encoded>
			<wfw:commentRss>http://dragffy.com/blog/posts/easy-way-to-install-lamp-dns-samba-etc-under-maverick-meerkat-ubuntu-10-10/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu perl: warning: Setting locale failed</title>
		<link>http://dragffy.com/blog/posts/ubuntu-perl-warning-setting-locale-failed</link>
		<comments>http://dragffy.com/blog/posts/ubuntu-perl-warning-setting-locale-failed#comments</comments>
		<pubDate>Wed, 24 Nov 2010 11:58:25 +0000</pubDate>
		<dc:creator>Gabe</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://dragffy.com/blog/?p=153</guid>
		<description><![CDATA[Run as root, or prefix with &#8220;sudo&#8221;: # locale-gen en_GB.UTF-8 # dpkg-reconfigure locales]]></description>
			<content:encoded><![CDATA[<p>Run as root, or prefix with &#8220;sudo&#8221;:<br />
<code># locale-gen en_GB.UTF-8<br />
# dpkg-reconfigure locales</code></p>
]]></content:encoded>
			<wfw:commentRss>http://dragffy.com/blog/posts/ubuntu-perl-warning-setting-locale-failed/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Effectively repair MySQL Tables</title>
		<link>http://dragffy.com/blog/posts/effectively-repair-mysql-tables</link>
		<comments>http://dragffy.com/blog/posts/effectively-repair-mysql-tables#comments</comments>
		<pubDate>Wed, 27 Jan 2010 14:23:44 +0000</pubDate>
		<dc:creator>Gabe</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://dragffy.com/blog/?p=148</guid>
		<description><![CDATA[$ cd /var/lib/mysql find -type f -name '*.MYI' -exec myisamchk --silent --force --fast --update-state --key_buffer_size=64M --sort_buffer_size=64M --read_buffer_size=1M --write_buffer_size=1M {} \;]]></description>
			<content:encoded><![CDATA[<p><code>$ cd /var/lib/mysql</code></p>
<p><code>find -type f -name '*.MYI' -exec myisamchk --silent --force --fast --update-state --key_buffer_size=64M --sort_buffer_size=64M --read_buffer_size=1M --write_buffer_size=1M {} \;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://dragffy.com/blog/posts/effectively-repair-mysql-tables/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Access denied for user &#8216;debian-sys-maint&#8217;@&#039;localhost&#8217; (using password: YES)</title>
		<link>http://dragffy.com/blog/posts/access-denied-for-user-debian-sys-maintlocalhost-using-password-yes</link>
		<comments>http://dragffy.com/blog/posts/access-denied-for-user-debian-sys-maintlocalhost-using-password-yes#comments</comments>
		<pubDate>Tue, 26 Jan 2010 09:26:59 +0000</pubDate>
		<dc:creator>Gabe</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://dragffy.com/blog/?p=146</guid>
		<description><![CDATA[Find your debian-sys-maint password in /etc/mysql/debian.cnf. GRANT ALL PRIVILEGES ON *.* TO 'debian-sys-maint'@'localhost' IDENTIFIED BY ' ' WITH GRANT OPTION; Replace with your debian-sys-maint password.]]></description>
			<content:encoded><![CDATA[<p>Find your debian-sys-maint password in <code>/etc/mysql/debian.cnf.</p>
<p></code><code>GRANT ALL PRIVILEGES ON *.* TO 'debian-sys-maint'@'localhost' IDENTIFIED BY '
<password>' WITH GRANT OPTION;</password></code></p>
<p>Replace <code>
<password></password></code> with your debian-sys-maint password.</p>
]]></content:encoded>
			<wfw:commentRss>http://dragffy.com/blog/posts/access-denied-for-user-debian-sys-maintlocalhost-using-password-yes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clicking on a GVFS link opens in Firefox</title>
		<link>http://dragffy.com/blog/posts/clicking-on-a-gvfs-link-opens-in-firefox</link>
		<comments>http://dragffy.com/blog/posts/clicking-on-a-gvfs-link-opens-in-firefox#comments</comments>
		<pubDate>Thu, 22 Oct 2009 16:52:30 +0000</pubDate>
		<dc:creator>Gabe</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://dragffy.com/blog/?p=140</guid>
		<description><![CDATA[For some reason servers that I connected to using FTP with gnome-vfs would open in Firefox. Odd really. I fiddled about and eventually developed a filesystem level fix. Just go to the folder: ~/.gconf/desktop/gnome/url-handlers And delete the ftp folder!]]></description>
			<content:encoded><![CDATA[<p>For some reason servers that I connected to using FTP  with gnome-vfs would open in Firefox. Odd really.</p>
<p>I fiddled about and eventually developed a filesystem level fix. Just go to  the folder:<br />
<code>~/.gconf/desktop/gnome/url-handlers</code><br />
And delete the <code>ftp</code> folder!</p>
]]></content:encoded>
			<wfw:commentRss>http://dragffy.com/blog/posts/clicking-on-a-gvfs-link-opens-in-firefox/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VirtualBox 3 Transparent Background on Ubuntu Jaunty</title>
		<link>http://dragffy.com/blog/posts/virtualbox-3-transparent-background-on-ubuntu-jaunty</link>
		<comments>http://dragffy.com/blog/posts/virtualbox-3-transparent-background-on-ubuntu-jaunty#comments</comments>
		<pubDate>Tue, 30 Jun 2009 15:53:28 +0000</pubDate>
		<dc:creator>Gabe</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://dragffy.com/blog/?p=132</guid>
		<description><![CDATA[I upgraded to VirtualBox 3 and then my windows guest went wrong. First of all, you have make sure the latest version of compiz installed. Go to CompizConfigs Settings Manager and look for &#8220;Windows Rules&#8221; under Windows Management category. Enable &#8220;Windows Rules&#8221; and go to &#8220;No ARGB visuals&#8221; use Window Class, click Grab and then [...]]]></description>
			<content:encoded><![CDATA[<p>I upgraded to VirtualBox 3 and then my windows guest went wrong.</p>
<p>First of all, you have make sure the latest version of compiz installed. </p>
<p>Go to CompizConfigs Settings Manager and look for &#8220;Windows Rules&#8221; under Windows Management category. Enable &#8220;Windows Rules&#8221; and go to &#8220;No ARGB visuals&#8221; use Window Class, click Grab and then click in virtualbox window.</p>
]]></content:encoded>
			<wfw:commentRss>http://dragffy.com/blog/posts/virtualbox-3-transparent-background-on-ubuntu-jaunty/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Using APG to generate secure, pronuncable passwords.</title>
		<link>http://dragffy.com/blog/posts/using-apg-to-generate-secure-pronuncable-passwords</link>
		<comments>http://dragffy.com/blog/posts/using-apg-to-generate-secure-pronuncable-passwords#comments</comments>
		<pubDate>Fri, 12 Jun 2009 15:28:20 +0000</pubDate>
		<dc:creator>Gabe</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://dragffy.com/blog/?p=130</guid>
		<description><![CDATA[The following command will generate several passwords with the following properties: Length of 10 characters Contain a mixture of upper and lowercase characters Contain at least 1 number Completely random most likely not in the dictionary (expect by random luck) Pronounceable This makes these passwords easier to remember but very difficult to brute force. They [...]]]></description>
			<content:encoded><![CDATA[<p>The following command will generate several passwords with the following properties:</p>
<ul>
<li>Length of 10 characters</li>
<li>Contain a mixture of upper and lowercase characters</li>
<li>Contain at least 1 number</li>
<li>Completely random most likely not in the dictionary (expect by random luck)</li>
<li>Pronounceable</li>
</ul>
<p>This makes these passwords easier to remember but very difficult to brute force. They are ideal as passwords for logging in to machines, servers, routers, etc.</p>
<p><code><br />
$ apg -m 10 -x 10 -a 0 -M NCL -t<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://dragffy.com/blog/posts/using-apg-to-generate-secure-pronuncable-passwords/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

