<?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>Linux T&#38;T &#187; Gentoo</title>
	<atom:link href="http://linux.wxs.ro/category/gentoo/feed/" rel="self" type="application/rss+xml" />
	<link>http://linux.wxs.ro</link>
	<description>WladyX’s collection of linux tips&#38;tricks</description>
	<lastBuildDate>Fri, 27 Jan 2012 16:42:05 +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>genkernel</title>
		<link>http://linux.wxs.ro/2012/01/27/genkernel/</link>
		<comments>http://linux.wxs.ro/2012/01/27/genkernel/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 16:42:05 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Gentoo]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=1849</guid>
		<description><![CDATA[genkernel --no-clean --install --symlink --disklabel --menuconfig all disable device drv &#8211; networking -atm]]></description>
			<content:encoded><![CDATA[<p><code>genkernel --no-clean --install --symlink --disklabel --menuconfig all</code></p>
<p>disable device drv &#8211; networking -atm</p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2012/01/27/genkernel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gentoo apcupsd not shutting down UPS</title>
		<link>http://linux.wxs.ro/2011/08/16/gentoo-apcupsd-not-shutting-down-ups/</link>
		<comments>http://linux.wxs.ro/2011/08/16/gentoo-apcupsd-not-shutting-down-ups/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 11:49:37 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Gentoo]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=1568</guid>
		<description><![CDATA[If you want apcupsd to power off your UPS when it shuts down your system in a power failure, you must add apcupsd.powerfail to your shutdown runlevel: rc-update add apcupsd.powerfail shutdown]]></description>
			<content:encoded><![CDATA[<p>If you want apcupsd to power off your UPS when it shuts down your system in a power failure, you must add <strong>apcupsd.powerfail</strong> to your shutdown runlevel:</p>
<p><code>rc-update add apcupsd.powerfail shutdown</code></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2011/08/16/gentoo-apcupsd-not-shutting-down-ups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configure PureFTPd To Accept TLS Sessions</title>
		<link>http://linux.wxs.ro/2011/04/27/configure-pureftpd-to-accept-tls-sessions/</link>
		<comments>http://linux.wxs.ro/2011/04/27/configure-pureftpd-to-accept-tls-sessions/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 10:20:11 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=1415</guid>
		<description><![CDATA[Gentoo: create a self-signed private certificat /etc/ssl/private/pure-ftpd.pem: mkdir -p /etc/ssl/private openssl req -x509 -nodes -newkey rsa:1024 -keyout /etc/ssl/private/pure-ftpd.pem -out /etc/ssl/private/pure-ftpd.pem /etc/conf.d/pure-ftpd: MISC_OTHER="-Y 2" &#8220;-Y 0&#8243;, support for SSL/TLS is disabled. This is the default. &#8220;-Y 1&#8243;, clients can connect either the traditional way or through an SSL/TLS layer. &#8220;-Y 2&#8243;, cleartext sessions are refused and [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Gentoo:</strong></p>
<p>create a self-signed private certificat /etc/ssl/private/pure-ftpd.pem:<br />
<code>mkdir -p /etc/ssl/private<br />
openssl req -x509 -nodes -newkey rsa:1024 -keyout /etc/ssl/private/pure-ftpd.pem -out /etc/ssl/private/pure-ftpd.pem</code></p>
<p>/etc/conf.d/pure-ftpd:<br />
<code>MISC_OTHER="-Y 2"</code></p>
<p>&#8220;-Y 0&#8243;, support for SSL/TLS is disabled. This is the default.<br />
&#8220;-Y 1&#8243;, clients can connect either the traditional way or through an SSL/TLS layer.<br />
&#8220;-Y 2&#8243;, cleartext sessions are refused and only SSL/TLS compatible clients are accepted</p>
<p><a href="http://en.gentoo-wiki.com/wiki/Pure-ftpd#SSL.2FTLS_support">source</a></p>
<p><strong>Ubuntu:</strong><br />
<code><br />
echo 1 &gt; /etc/pure-ftpd/conf/TLS</code></p>
<p><code>mkdir -p /etc/ssl/private/<br />
openssl req -x509 -nodes -days 7300 -newkey rsa:2048 -keyout /etc/ssl/private/pure-ftpd.pem -out /etc/ssl/private/pure-ftpd.pem </code></p>
<p><strong>StartSSL cert:</strong><br />
<code>cd<br />
wget http://www.startssl.com/certs/ca.pem<br />
wget http://www.startssl.com/certs/sub.class1.server.ca.pem<br />
cat www.key www.crt sub.class2.server.ca.pem ca.pem &gt; /etc/ssl/private/pure-ftpd.pem</code></p>
<p><a href="http://www.howtoforge.com/forums/showpost.php?p=251008&amp;postcount=3">source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2011/04/27/configure-pureftpd-to-accept-tls-sessions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>free space of ext3 / decreasing</title>
		<link>http://linux.wxs.ro/2010/11/25/free-space-of-ext3-decreasing/</link>
		<comments>http://linux.wxs.ro/2010/11/25/free-space-of-ext3-decreasing/#comments</comments>
		<pubDate>Thu, 25 Nov 2010 12:54:19 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Gentoo]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=1197</guid>
		<description><![CDATA[Probably files being deleted but still opened by some application. lsof -P -n +L1 lsof -P -n &#124; grep -E -e "(path inode&#124;deleted)" source]]></description>
			<content:encoded><![CDATA[<p>Probably files being deleted but still opened by some application.<br />
<code><br />
lsof -P -n +L1</code></p>
<p><code>lsof -P -n | grep -E -e "(path inode|deleted)"</code></p>
<p><a href="http://forums.gentoo.org/viewtopic-t-852941-start-0-postdays-0-postorder-asc-highlight-.html">source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2010/11/25/free-space-of-ext3-decreasing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logwatch with Metalog on Gentoo</title>
		<link>http://linux.wxs.ro/2010/04/21/logwatch-with-metalog-on-gentoo/</link>
		<comments>http://linux.wxs.ro/2010/04/21/logwatch-with-metalog-on-gentoo/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 08:50:42 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=800</guid>
		<description><![CDATA[http://en.gentoo-wiki.com/wiki/Logwatch_with_Metalog]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.gentoo-wiki.com/wiki/Logwatch_with_Metalog">http://en.gentoo-wiki.com/wiki/Logwatch_with_Metalog</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2010/04/21/logwatch-with-metalog-on-gentoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DKIM on Gentoo</title>
		<link>http://linux.wxs.ro/2010/03/17/dkim-on-gentoo/</link>
		<comments>http://linux.wxs.ro/2010/03/17/dkim-on-gentoo/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 06:18:13 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Mail]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=743</guid>
		<description><![CDATA[emerge -a dkim-milter emerge --config mail-filter/dkim-milter /etc/mail/dkim-filter/dkim-filter.conf: Domain domain.tld KeyFile /etc/mail/dkim-filter/mydkim.private Selector mydkim UMask 000 /var/bind/domain.tld.hosts: mydkim._domainkey.domain.tld. IN TXT "v=DKIM1; g=*; k=rsa; p=yourkeyhere;" /etc/postfix/main.cf: smtpd_milters = unix:/var/run/dkim-filter/dkim-filter.sock non_smtpd_milters = unix:/var/run/dkim-filter/dkim-filter.sock rndc reload postfix reload /etc/init.d/dkim-filter start Test by sending email to autorespond+dkim@dk.elandsys.com. PS: If you want dkim only to sign mails, not to verify them, [...]]]></description>
			<content:encoded><![CDATA[<p><code>emerge -a dkim-milter<br />
emerge --config mail-filter/dkim-milter</code></p>
<p>/etc/mail/dkim-filter/dkim-filter.conf:<br />
<code> Domain domain.tld<br />
KeyFile /etc/mail/dkim-filter/mydkim.private<br />
Selector mydkim<br />
UMask 000 </code></p>
<p><code> </code></p>
<p>/var/bind/domain.tld.hosts:<br />
<code>mydkim._domainkey.domain.tld. IN TXT "v=DKIM1; g=*; k=rsa; p=yourkeyhere;"<br />
</code><br />
/etc/postfix/main.cf:<br />
<code>smtpd_milters = unix:/var/run/dkim-filter/dkim-filter.sock<br />
non_smtpd_milters = unix:/var/run/dkim-filter/dkim-filter.sock</code></p>
<p><code> </code></p>
<p><code>rndc reload<br />
postfix reload<br />
/etc/init.d/dkim-filter start </code></p>
<p>Test by sending email to autorespond+dkim@dk.elandsys.com.</p>
<p>PS: If you want dkim only to sign mails, not to verify them, then change the mode in /etc/mail/dkim-filter/dkim-filter.conf:<br />
##  Mode [sv]<br />
##      default sv<br />
##<br />
##  Indicates which mode(s) of operation should be provided.  &#8220;s&#8221; means<br />
##  &#8220;sign&#8221;, &#8220;v&#8221; means &#8220;verify&#8221;.</p>
<p>Mode            s</p>
<p><a href="http://en.gentoo-wiki.com/wiki/Domainkeys_and_DKIM_with_Postfix">source1<br />
</a><a href="http://www.howtoforge.com/postfix-dkim-with-dkim-milter-centos5.1">source2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2010/03/17/dkim-on-gentoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find packages installed from overlays</title>
		<link>http://linux.wxs.ro/2010/03/17/find-packages-installed-from-overlays/</link>
		<comments>http://linux.wxs.ro/2010/03/17/find-packages-installed-from-overlays/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 06:08:33 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Gentoo]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/?p=741</guid>
		<description><![CDATA[eix -Jc]]></description>
			<content:encoded><![CDATA[<p><code>eix -Jc</code></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2010/03/17/find-packages-installed-from-overlays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache vhost SSL SNI</title>
		<link>http://linux.wxs.ro/2009/12/10/apache-vhost-ssl-sni/</link>
		<comments>http://linux.wxs.ro/2009/12/10/apache-vhost-ssl-sni/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 08:19:04 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Gentoo]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/2009/12/10/apache-vhost-ssl-sni/</guid>
		<description><![CDATA[In the ssl virtual host fragment: SSLEngine on SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM SSLCertificateFile /etc/ssl/apache2/wxs.crt SSLCertificateKeyFile /etc/ssl/apache2/wxs.key SSLCertificateChainFile /etc/ssl/apache2/sub.class1.server.ca.pem SSLCACertificateFile /etc/ssl/apache2/ca.pem SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown SSLOptions StrictRequire SSLProtocol all -SSLv2 This is for StartSSL.com certs.]]></description>
			<content:encoded><![CDATA[<p>In the ssl virtual host fragment:</p>
<p><code>    SSLEngine on<br />    SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM<br />    SSLCertificateFile /etc/ssl/apache2/wxs.crt<br />    SSLCertificateKeyFile /etc/ssl/apache2/wxs.key<br />    SSLCertificateChainFile /etc/ssl/apache2/sub.class1.server.ca.pem<br />    SSLCACertificateFile /etc/ssl/apache2/ca.pem<br />    SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown<br />    SSLOptions StrictRequire<br />    SSLProtocol all -SSLv2</code></p>
<p>This is for StartSSL.com certs.</p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2009/12/10/apache-vhost-ssl-sni/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sony Ericsson Codes</title>
		<link>http://linux.wxs.ro/2009/02/02/sony-ericsson-codes/</link>
		<comments>http://linux.wxs.ro/2009/02/02/sony-ericsson-codes/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 08:16:59 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Gentoo]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/2009/02/02/sony-ericsson-codes/</guid>
		<description><![CDATA[Getting your IMEI (International Mobile Equipment Identity) Number: *#06# Access Software version: &#62; * &#60; &#60; * &#60; * Reach last dialed numbers: 0 then # The Sony Ericsson Secret Menu screen: -&#62; * &#60;- &#60;- * &#60;- * Change to Default Language (English): &#60; 0 0 0 0 &#62; Info about SIMLOCK: &#60; * [...]]]></description>
			<content:encoded><![CDATA[<p>Getting your IMEI (International Mobile Equipment Identity) Number: *#06#<br />
Access Software version: &gt; * &lt; &lt; * &lt; *<br />
Reach last dialed numbers: 0 then #<br />
The Sony Ericsson Secret Menu screen: -&gt; * &lt;- &lt;- * &lt;- *<br />
Change to Default Language (English): &lt; 0 0 0 0 &gt;<br />
Info about SIMLOCK: &lt; * * &lt;<br />
Opening phone without a SIM card: **04*0000*0000*0000# followed by on ‘Wrong Pin’ number</p>
<p><a href="http://www.esato.com/archive/t.php/t-149619,1.html">Sony Ericsson Codes &#8211; Esato archive</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2009/02/02/sony-ericsson-codes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Emerge warning</title>
		<link>http://linux.wxs.ro/2008/10/15/emerge-warning/</link>
		<comments>http://linux.wxs.ro/2008/10/15/emerge-warning/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 11:40:05 +0000</pubDate>
		<dc:creator>WladyX</dc:creator>
				<category><![CDATA[Gentoo]]></category>

		<guid isPermaLink="false">http://linux.wxs.ro/2008/10/15/emerge-warning/</guid>
		<description><![CDATA[If you get this warning when using emerge WARNING: repository at &#8230; is missing a repo_name entry you need to create a file &#8220;repo_name&#8221; containing the overlay name into the &#8220;profiles&#8221; directory under your overlay directory. If my overlay is in /opt/my-overlay, i need this file : # cat /opt/my-overlay/profiles/repo_name myoverlay]]></description>
			<content:encoded><![CDATA[<p>If you get this warning when using emerge</p>
<blockquote><p>WARNING: repository at &#8230; is missing a repo_name entry</p></blockquote>
<p>you need to create a file &#8220;repo_name&#8221; containing the overlay name into the &#8220;profiles&#8221; directory under your overlay directory. If my overlay is in /opt/my-overlay, i need this file :</p>
<blockquote><p># cat /opt/my-overlay/profiles/repo_name<br />
myoverlay</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://linux.wxs.ro/2008/10/15/emerge-warning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

