<?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>Caneblu.com &#187; Linux</title>
	<atom:link href="http://www.caneblu.com/category/howto/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.caneblu.com</link>
	<description>Solo un altro blog targato WordPress</description>
	<lastBuildDate>Mon, 10 May 2010 20:32:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Symfony: XSL module to install in Ubuntu</title>
		<link>http://www.caneblu.com/2010/05/symfony-xsl-module-to-install-in-ubuntu/</link>
		<comments>http://www.caneblu.com/2010/05/symfony-xsl-module-to-install-in-ubuntu/#comments</comments>
		<pubDate>Mon, 10 May 2010 20:22:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[symfony]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.caneblu.com/?p=144</guid>
		<description><![CDATA[Following the tutorial Simfony (known PHP Framework) to the preliminary pre-requisite, reflected the lack of XSL module under Apache and PHP. Specifically, the message I found was: &#91;&#91;WARNING&#93;&#93; XSL module is installed: FAILED *** Install the XSL module &#40;recommended for Propel&#41; *** The workaround is to install apt-get the missing modules as follows: sudo apt-get [...]]]></description>
			<content:encoded><![CDATA[<p>Following the tutorial Simfony (known PHP Framework) to the preliminary pre-requisite, reflected the lack of XSL module under Apache and PHP. Specifically, the message I found was:</p>

<div class="wp_syntax"><div class="code"><pre class="ini" style="font-family:monospace;"><span style="color: #000066; font-weight:bold;"><span style="">&#91;</span><span style="">&#91;</span>WARNING<span style="">&#93;</span><span style="">&#93;</span></span> XSL module is installed: FAILED
*** Install the XSL module <span style="">&#40;</span>recommended for Propel<span style="">&#41;</span> ***</pre></div></div>

<p>The workaround is to install apt-get the missing modules as follows:</p>

<div class="wp_syntax"><div class="code"><pre class="ini" style="font-family:monospace;">sudo apt-get install libapache2-modxslt php5-xsl</pre></div></div>

<p>then restart the instance of Apache2</p>

<div class="wp_syntax"><div class="code"><pre class="ini" style="font-family:monospace;">sudo / etc/init.d/apache2 restart</pre></div></div>

<p>Restarting the configuration check the error message should be gone.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.caneblu.com/2010/05/symfony-xsl-module-to-install-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL backup from command line</title>
		<link>http://www.caneblu.com/2010/02/mysql-backup-from-command-line/</link>
		<comments>http://www.caneblu.com/2010/02/mysql-backup-from-command-line/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 16:17:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://www.caneblu.com/?p=123</guid>
		<description><![CDATA[It may be useful to make a backup of a specific database through the command line. Surely it is easier to use tools like phpMyAdmin, but in case of emergency or because you prefer use the shell, this info is certainly useful. The executable that performs the operation is &#8220;mysqldump&#8221; which is usually installed with [...]]]></description>
			<content:encoded><![CDATA[<p>It may be useful to make a backup of a specific database through the command line. Surely it is easier to use tools like <strong>phpMyAdmin</strong>, but in case of emergency or because you prefer use the shell, this info is certainly useful. The executable that performs the operation is &#8220;<strong>mysqldump</strong>&#8221; which is usually installed with the MySQL server.</p>
<p><code>mysqldump -h localhost -u username -p database_name > database_backup.sql</code></p>
<p>Obviously the parameters changed accordingly, localhost should be fine considering the use of the shell, while database_name username must be adjusted accordingly. After the sign > is the name chosen at your discretion. Once given the command will be prompted for a password to access the database to its content.</p>
<p>Can also directly produce a compressed slightly by changing the syntax as follows:</p>
<p><code>mysqldump -h localhost -u username -p database_name | gzip -9 > database_backup.sql.gz</code></p>
<p>where performs gzip compression (-9 parameter indicates the best compression possible), this is useful if you download the file through the Internet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.caneblu.com/2010/02/mysql-backup-from-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make a bootable USB key</title>
		<link>http://www.caneblu.com/2009/11/make-a-bootable-usb-key/</link>
		<comments>http://www.caneblu.com/2009/11/make-a-bootable-usb-key/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 20:20:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[bootable]]></category>
		<category><![CDATA[stick]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://www.caneblu.com/?p=112</guid>
		<description><![CDATA[Today we had the need to &#8220;burn&#8221; (of course the correct term is &#8220;load&#8221;) an ISO image on a bootable USB stick. The problem was  how to transfer a previously ISO image on a USB key and make it bootable. We found this very interesting project on sourceforge, named  UNetbootin. This small program in Windows version [...]]]></description>
			<content:encoded><![CDATA[<p>Today we had the need to &#8220;burn&#8221; (of course the correct term is &#8220;load&#8221;) an ISO image on a bootable USB stick. The problem was  how to transfer a previously ISO image on a USB key and make it bootable. We found this very interesting project on sourceforge, named  <strong><a href="http://unetbootin.sourceforge.net/">UNetbootin</a></strong>.</p>
<p>This small program in Windows version ( installation is not required) and Linux too, allow to create a bootable stick with an single easy step.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.caneblu.com/2009/11/make-a-bootable-usb-key/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nagios: NRPE ssl headers</title>
		<link>http://www.caneblu.com/2009/02/nagios-nrpe-ssl-headers/</link>
		<comments>http://www.caneblu.com/2009/02/nagios-nrpe-ssl-headers/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 11:17:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[NagiOS]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[nrpe]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.caneblu.com/?p=78</guid>
		<description><![CDATA[Just installing NRPE client for Nagios into Suse Linux Enterprise 10. After ./configure i get this error &#8220;configure: error: Cannot find ssl headers&#8221; You can solve installing openssl-devel with Yast or with &#8221; yast2 -i openssl-devel&#8221;]]></description>
			<content:encoded><![CDATA[<p>Just installing NRPE client for <a href="http://www.nagios.org" target="_blank">Nagios</a> into Suse Linux Enterprise 10.<br />
After <em>./configure</em> i get this error &#8220;configure: error: Cannot find ssl headers&#8221;</p>
<p>You can solve installing openssl-devel with Yast or with &#8221; yast2 -i openssl-devel&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.caneblu.com/2009/02/nagios-nrpe-ssl-headers/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Watch netstat -naop</title>
		<link>http://www.caneblu.com/2009/01/watch-netstat-naop/</link>
		<comments>http://www.caneblu.com/2009/01/watch-netstat-naop/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 16:27:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[netstat]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[process]]></category>

		<guid isPermaLink="false">http://www.caneblu.com/caneblu/?p=19</guid>
		<description><![CDATA[If you need to watch how many active network connections are running on your machine, and what processes using it, simply run from root (or under Sudo) watch netstat -naop where: -n: show ip address -a: show only active connections -o: show the ports connected -P: pid and name of processes]]></description>
			<content:encoded><![CDATA[<p>If you need to watch how many active network connections are running on your machine, and what processes using it, simply run from root (or under Sudo)</p>
<p><strong>watch netstat -naop</strong></p>
<p>where:</p>
<p>-n: show ip address<br />
-a: show only active connections<br />
-o: show the ports connected<br />
-P: pid and name of processes</p>
]]></content:encoded>
			<wfw:commentRss>http://www.caneblu.com/2009/01/watch-netstat-naop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
