<?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>Takahisa's Weblog &#187; linux</title>
	<atom:link href="http://takahisa.info/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://takahisa.info</link>
	<description>weblog of lifetips?</description>
	<lastBuildDate>Fri, 02 Sep 2011 18:27:14 +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>sftp chroot with openssh ERROR : fatal: bad ownership or modes for chroot directory</title>
		<link>http://takahisa.info/2010/03/18/sftp-chroot-with-openssh-error-fatal-bad-ownership-or-modes-for-chroot-directory/</link>
		<comments>http://takahisa.info/2010/03/18/sftp-chroot-with-openssh-error-fatal-bad-ownership-or-modes-for-chroot-directory/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 02:34:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[chroot]]></category>
		<category><![CDATA[sftp]]></category>

		<guid isPermaLink="false">http://takahisa.info/?p=257</guid>
		<description><![CDATA[If you’re playing with the excellent new ChrootDirectory and internal-sftp options in recent OpenSSH releases (such as 5.1 which is in Ubuntu 8.10 Intrepid), you may have hit an error like: fatal: bad ownership or modes for chroot directory You may also have searched on Google for what to do about it and come away [...]]]></description>
			<content:encoded><![CDATA[<p>If you’re playing with the excellent new ChrootDirectory and internal-sftp options in recent OpenSSH releases (such as 5.1 which is in Ubuntu 8.10 Intrepid), you may have hit an error like:</p>
<p>fatal: bad ownership or modes for chroot directory<br />
You may also have searched on Google for what to do about it and come away with very little useful information.</p>
<p>Well no more! I did the same thing and got bored of reading mailing list posts, so read the source code instead. The relevant section is in session.c:</p>
<p>    if (stat(component, &#038;st) != 0)<br />
      fatal(&#8220;%s: stat(\&#8221;%s\&#8221;): %s&#8221;, __func__,<br />
          component, strerror(errno));<br />
    if (st.st_uid != 0 || (st.st_mode &#038; 022) != 0)<br />
      fatal(&#8220;bad ownership or modes for chroot &#8221;<br />
          &#8220;directory %s\&#8221;%s\&#8221;",<br />
          cp == NULL ? &#8220;&#8221; : &#8220;component &#8220;, component);<br />
This is quite simple really, it’s stat()ing the directory specified for “ChrootDirectory” and all its parents up to / and checking that they are:</p>
<p>owned by root<br />
not group or other writable<br />
(it also checks they are actually directories, but I’m going to assume you’re not stupid enough to try and chroot into a file )<br />
Note my emphesis that these checks apply to the chroot directory itself and its parents and /, so if you are chrooting users into /srv/chroot/ then you need to ensure that /, /srv and /srv/chroot are owned by root and not writable by the group (even if it’s root, bizarrely) or other users.</p>
<p>Adopted from : http://www.tenshu.net/archives/2008/10/09/openssh-51-chrootdirectory-permissions-issue/</p>
]]></content:encoded>
			<wfw:commentRss>http://takahisa.info/2010/03/18/sftp-chroot-with-openssh-error-fatal-bad-ownership-or-modes-for-chroot-directory/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Reinstall yum package</title>
		<link>http://takahisa.info/2009/06/10/reinstall-yum-package/</link>
		<comments>http://takahisa.info/2009/06/10/reinstall-yum-package/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 04:27:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[centos]]></category>

		<guid isPermaLink="false">http://takahisa.info/?p=232</guid>
		<description><![CDATA[as you might know, yum does not provide re-install functionality, for re-installing yum installed application following methods may useful yum install yum-utils yumdownloader package rpm -Uvh &#8211;force downloadedpackages]]></description>
			<content:encoded><![CDATA[<p>as you might know, yum does not provide re-install functionality,</p>
<p>for re-installing yum installed application following methods may useful</p>
<p class="code"> yum install yum-utils<br />
  yumdownloader package<br />
  rpm -Uvh &#8211;force downloadedpackages</p>
]]></content:encoded>
			<wfw:commentRss>http://takahisa.info/2009/06/10/reinstall-yum-package/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>adding a startup script ubuntu</title>
		<link>http://takahisa.info/2009/03/14/adding-a-startup-script-ubuntu/</link>
		<comments>http://takahisa.info/2009/03/14/adding-a-startup-script-ubuntu/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 01:28:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://takahisa.info/?p=221</guid>
		<description><![CDATA[update-rc.d foo defaults you also need script be executable chmod +x foo]]></description>
			<content:encoded><![CDATA[<p>update-rc.d foo defaults</p>
<p>you also need script be executable<br />
chmod +x foo</p>
]]></content:encoded>
			<wfw:commentRss>http://takahisa.info/2009/03/14/adding-a-startup-script-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>install webmin on ubuntu</title>
		<link>http://takahisa.info/2009/03/14/install-webmin-on-ubuntu/</link>
		<comments>http://takahisa.info/2009/03/14/install-webmin-on-ubuntu/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 01:26:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://takahisa.info/?p=219</guid>
		<description><![CDATA[$ sudo dpkg -i webmin_1.420_all.deb $ sudo apt-get -f install]]></description>
			<content:encoded><![CDATA[<p>$ sudo dpkg -i webmin_1.420_all.deb<br />
$ sudo apt-get -f install</p>
]]></content:encoded>
			<wfw:commentRss>http://takahisa.info/2009/03/14/install-webmin-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>gdm error after while&#8230;..</title>
		<link>http://takahisa.info/2009/03/14/gdm-error-after-while/</link>
		<comments>http://takahisa.info/2009/03/14/gdm-error-after-while/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 01:21:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[gentoo]]></category>

		<guid isPermaLink="false">http://takahisa.info/?p=216</guid>
		<description><![CDATA[ns2 ~ # /usr/bin/gdm /usr/bin/gdm: error while loading shared libraries: libdirectfb-0.9.so.25: cannot open shared object file: No such file or directory Revdep-rebuild should find out the problem for you, the most obvious reason whyit might not is if a previous run of revdep-rebuild did not complete and thetemporary files were still present.  Please try running [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: mceinline;">ns2 </span><span style="font-family: mceinline;">~ # </span>/usr/bin/gdm</p>
<p>/usr/bin/gdm: error while loading shared libraries: libdirectfb-0.9.so.25: cannot open shared object file: No such file or directory</p>
<p>Revdep-rebuild should find out the problem for you, the most obvious reason whyit might not is if a previous run of revdep-rebuild did not complete and thetemporary files were still present.  Please try running &#8220;revdep-rebuild -i&#8221; toensure that the temporary files are cleaned out.  If you do this before trying to re-emerge totem-pl-parser, you can test whether it spots, it and then againwhether totem-pl-parser fixes the problem.</p>
<p>If after you&#8217;ve got the results the problem hasn&#8217;t been fixed, orrevdep-rebuild wasn&#8217;t correctly finding the issue, then please feel free to reopen this bug&#8230;  5:)</p>
]]></content:encoded>
			<wfw:commentRss>http://takahisa.info/2009/03/14/gdm-error-after-while/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Squid3 on CentOS4</title>
		<link>http://takahisa.info/2009/02/01/squid3-squidclamav-on-centos4/</link>
		<comments>http://takahisa.info/2009/02/01/squid3-squidclamav-on-centos4/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 19:51:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[centos4]]></category>
		<category><![CDATA[squid]]></category>

		<guid isPermaLink="false">http://takahisa.info/?p=202</guid>
		<description><![CDATA[[root@ns99 ~]# wget http://ftp.riken.jp/Linux/fedora/releases/10/Fedora/source/SRPMS/squid-3.0.STABLE10-1.fc10.src.rpm &#8211;02:00:53&#8211; http://ftp.riken.jp/Linux/fedora/releases/10/Fedora/source/SRPMS/squid-3.0.STABLE10-1.fc10.src.rpm =&#62; `squid-3.0.STABLE10-1.fc10.src.rpm&#8217; Resolving ftp.riken.jp&#8230; 134.160.38.1 Connecting to ftp.riken.jp&#124;134.160.38.1&#124;:80&#8230; connected. HTTP request sent, awaiting response&#8230; 200 OK Length: 2,006,085 (1.9M) [application/x-wais-source] 100%[=============================&#62;] 2,006,085 1.40M/s 02:00:54 (1.40 MB/s) - `squid-3.0.STABLE10-1.fc10.src.rpm&#8217; saved [2006085/2006085] [root@ns99 ~]# rpm -ivh squid-3.0.STABLE10-1.fc10.src.rpm warning: squid-3.0.STABLE10-1.fc10.src.rpm: V3 DSA signature: NOKEY, key ID 4ebfc273 1:squid warning: user mockbuild does [...]]]></description>
			<content:encoded><![CDATA[<p class="code">[root@ns99 ~]# wget http://ftp.riken.jp/Linux/fedora/releases/10/Fedora/source/SRPMS/squid-3.0.STABLE10-1.fc10.src.rpm<br />
  &#8211;02:00:53&#8211; http://ftp.riken.jp/Linux/fedora/releases/10/Fedora/source/SRPMS/squid-3.0.STABLE10-1.fc10.src.rpm<br />
  =&gt; `squid-3.0.STABLE10-1.fc10.src.rpm&#8217;<br />
  Resolving ftp.riken.jp&#8230; 134.160.38.1<br />
  Connecting to ftp.riken.jp|134.160.38.1|:80&#8230; connected.<br />
  HTTP request sent, awaiting response&#8230; 200 OK<br />
  Length: 2,006,085 (1.9M) [application/x-wais-source]<br />
  100%[=============================&gt;] 2,006,085 1.40M/s 02:00:54 (1.40 MB/s) -<br />
  `squid-3.0.STABLE10-1.fc10.src.rpm&#8217; saved [2006085/2006085]<br />
  [root@ns99 ~]# rpm -ivh squid-3.0.STABLE10-1.fc10.src.rpm <br />
  warning: squid-3.0.STABLE10-1.fc10.src.rpm: V3 DSA signature: NOKEY, key ID 4ebfc273<br />
  1:squid warning: user mockbuild does not exist &#8211; using root<br />
  warning: group mockbuild does not exist &#8211; using root<br />
  warning: user mockbuild does not exist &#8211; using root<br />
  warning: group mockbuild does not exist &#8211; using root<br />
  warning: user mockbuild does not exist &#8211; using root<br />
  warning: group mockbuild does not exist &#8211; using root<br />
  warning: user mockbuild does not exist &#8211; using root<br />
  warning: group mockbuild does not exist &#8211; using root<br />
  warning: user mockbuild does not exist &#8211; using root<br />
  warning: group mockbuild does not exist &#8211; using root<br />
  warning: user mockbuild does not exist &#8211; using root<br />
  warning: group mockbuild does not exist &#8211; using root<br />
  warning: user mockbuild does not exist &#8211; using root<br />
  warning: group mockbuild does not exist &#8211; using root<br />
  warning: user mockbuild does not exist &#8211; using root<br />
  warning: group mockbuild does not exist &#8211; using root<br />
  warning: user mockbuild does not exist &#8211; using root<br />
  warning: group mockbuild does not exist &#8211; using root<br />
  warning: user mockbuild does not exist &#8211; using root<br />
  warning: group mockbuild does not exist &#8211; using root<br />
  warning: user mockbuild does not exist &#8211; using root<br />
  warning: group mockbuild does not exist &#8211; using root<br />
  warning: user mockbuild does not exist &#8211; using root<br />
  warning: group mockbuild does not exist &#8211; using root<br />
  warning: user mockbuild does not exist &#8211; using root<br />
  warning: group mockbuild does not exist &#8211; using root<br />
  ########################################### [100%]<br />
  warning: user mockbuild does not exist &#8211; using root<br />
  warning: group mockbuild does not exist &#8211; using root<br />
  [root@ns99 ~]# cd /usr/src/redhat/SPECS/<br />
  [root@ns99 SPECS]# rpmbuild &#8211;bb squid.spec <br />
  error: Failed build dependencies:<br />
  linuxdoc-tools is needed by squid-3.0.STABLE10-1.i386<br />
  [root@ns99 SPECS]# yum install linuxdoc-tools<br />
  Loading &quot;fastestmirror&quot; plugin<br />
  Setting up Install Process<br />
  Setting up repositories<br />
  Loading mirror speeds from cached hostfile<br />
  Reading repository metadata in from local files<br />
  Excluding Packages in global exclude list<br />
  Finished<br />
  Parsing package install arguments<br />
  Resolving Dependencies<br />
  &#8211;&gt; Populating transaction set with selected packages. Please wait.<br />
  &#8212;&gt; Downloading header for linuxdoc-tools to pack into transaction set.<br />
  linuxdoc-tools-0.9.20-14. 100% |=========================| 27 kB 00:00 <br />
  &#8212;&gt; Package linuxdoc-tools.i386 0:0.9.20-14 set to be updated<br />
  &#8211;&gt; Running transaction check Dependencies Resolved <br />
  =============================================================================<br />
  Package Arch Version Repository Size <br />
  =============================================================================<br />
  Installing:<br />
  linuxdoc-tools i386 0.9.20-14 base 396 k Transaction Summary<br />
  =============================================================================<br />
  Install 1 Package(s) <br />
  Update 0 Package(s) <br />
  Remove 0 Package(s) <br />
  Total download size: 396 k<br />
  Is this ok [y/N]: y<br />
  Downloading Packages:<br />
  (1/1): linuxdoc-tools-0.9 100% |=========================| 396 kB 00:00 <br />
  Running Transaction Test<br />
  Finished Transaction Test<br />
  Transaction Test Succeeded<br />
  Running Transaction<br />
  Installing: linuxdoc-tools ######################### [1/1] <br />
  Installed: linuxdoc-tools.i386 0:0.9.20-14<br />
  Complete!<br />
  [root@ns99 SPECS]# rpmbuild &#8211;bb squid.spec <br />
  [root@ns99 SPECS]# rpm -Uvh /usr/src/redhat/RPMS/i386/squid-3.0.STABLE10-1.i386.rpm</p>
]]></content:encoded>
			<wfw:commentRss>http://takahisa.info/2009/02/01/squid3-squidclamav-on-centos4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rebuild apache rpm on Centos4</title>
		<link>http://takahisa.info/2008/12/30/rebuild-apache-rpm-on-centos/</link>
		<comments>http://takahisa.info/2008/12/30/rebuild-apache-rpm-on-centos/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 22:50:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[centos]]></category>

		<guid isPermaLink="false">http://takahisa.info/?p=182</guid>
		<description><![CDATA[Download src rpm http://ftp.riken.jp/Linux/centos/4.7/centosplus/SRPMS/ httpd-2.0.63-2.el4s1.centos.2.src.rpm Install src rpm ns2 ~ # rpm -ivh httpd-2.0.63-2.el4s1.centos.2.src.rpm ns2 ~ # cd /usr/src/redhat/SPECS ns2 SPECS # vim httpd.spec %define contentdir /var/www -&#62; %define contentdir /home ns2 SPECS # rpmbuild -bb /usr/src/redhat/SPECS/httpd.spec error: Failed build dependencies: xmlto &#62;= 0.0.11 is needed by httpd-2.0.63-2.el4s1.centos.2.i386 apr-devel &#62;= 0.9.4-20 is needed by httpd-2.0.63-2.el4s1.centos.2.i386 [...]]]></description>
			<content:encoded><![CDATA[<p>Download src rpm</p>
<p>http://ftp.riken.jp/Linux/centos/4.7/centosplus/SRPMS/</p>
<p><a href="http://ftp.riken.jp/Linux/centos/4.7/centosplus/SRPMS/httpd-2.0.63-2.el4s1.centos.2.src.rpm">httpd-2.0.63-2.el4s1.centos.2.src.rpm</a></p>
<p class="code"><em>Install src rpm</em><br />
<span style="color: #ff0000;">ns2 </span><span style="color: #3366ff;">~ #</span> rpm -ivh  httpd-2.0.63-2.el4s1.centos.2.src.rpm<br />
<span style="color: #ff0000;">ns2 </span><span style="color: #3366ff;">~ #</span> cd /usr/src/redhat/SPECS<br />
<span style="color: #ff0000;">ns2</span> <span style="color: #3366ff;">SPECS # </span>vim httpd.spec<br />
<span style="text-decoration: line-through;">%define contentdir /var/www</span> -&gt; %define contentdir /home<br />
<span style="color: #ff0000;">ns2</span> <span style="color: #3366ff;">SPECS #</span> rpmbuild -bb /usr/src/redhat/SPECS/httpd.spec<br />
error: Failed build dependencies:<br />
xmlto &gt;= 0.0.11 is needed by httpd-2.0.63-2.el4s1.centos.2.i386<br />
apr-devel &gt;= 0.9.4-20 is needed by httpd-2.0.63-2.el4s1.centos.2.i386<br />
apr-util-devel is needed by httpd-2.0.63-2.el4s1.centos.2.i386<br />
distcache-devel is needed by httpd-2.0.63-2.el4s1.centos.2.i386<br />
<em>Install missing packages</em><br />
<span style="color: #ff0000;">ns2</span> <span style="color: #3366ff;">SPECS #</span> yum install xmlto apr-devel apr-util-devel distcache-devel<br />
<span style="color: #ff0000;">ns2</span> <span style="color: #3366ff;">SPECS #</span> rpmbuild -bb /usr/src/redhat/SPECS/httpd.spec<br />
<span style="color: #ff0000;">ns2</span> <span style="color: #3366ff;">SPECS #</span> cd ../RPMS<br />
<span style="color: #ff0000;">ns2</span> <span style="color: #3366ff;">RPMS #</span> rpm -ivh &#8211;force httpd-2.0.63-2.el4s1.centos.2.i386.rpm<br />
<span style="color: #ff0000;">ns2</span> <span style="color: #3366ff;">~ #</span> /etc/init.d/httpd restart<br />
<span style="color: #ff0000;">ns2</span> <span style="color: #3366ff;">~ #</span> suexec -V</p>
]]></content:encoded>
			<wfw:commentRss>http://takahisa.info/2008/12/30/rebuild-apache-rpm-on-centos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Proftpd on gentoo</title>
		<link>http://takahisa.info/2008/12/30/install-proftpd-on-gentoo/</link>
		<comments>http://takahisa.info/2008/12/30/install-proftpd-on-gentoo/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 20:03:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[proftpd]]></category>

		<guid isPermaLink="false">http://takahisa.info/?p=177</guid>
		<description><![CDATA[1, add &#8220;ftp&#8221; use flag to /etc/make.conf ns2 ~ # emerge proftpd ns2 ~ # cd /etc/proftpd ns2 proftpd # cp proftpd.conf.distrib proftpd.conf ns2 proftpd # vim proftpd.conf ServerName &#8220;ProFTPD Default Installation&#8221; -&#62; ServerName &#8220;ftp.ns2.example.local&#8221; #DefaultRoot ~ -&#62; comment out if you like to enable root login: add RootLogin on change Server Identification: add ServerIndent on [...]]]></description>
			<content:encoded><![CDATA[<p>1, add &#8220;ftp&#8221; use flag to /etc/make.conf</p>
<p class="code"><span style="font-weight: normal;"><span style="color: #ff0000;"><span style="font-weight: normal;">n</span></span></span><span style="color: #ff0000;"><span style="font-weight: normal;">s2 </span></span><span style="color: #3366ff;"><span style="font-weight: normal;">~ #</span></span><span style="font-weight: normal;"> emerge proftpd<br />
</span> <span style="color: #ff0000;"><span style="font-weight: normal;">ns2</span></span><span style="color: #3366ff;"><span style="font-weight: normal;"> ~ #</span></span><span style="font-weight: normal;"> cd /etc/proftpd<br />
</span> <span style="color: #ff0000;"><span style="font-weight: normal;">ns2</span></span><span style="font-weight: normal;"> </span><span style="color: #3366ff;"><span style="font-weight: normal;">proftpd #</span></span><span style="font-weight: normal;"> cp proftpd.conf.distrib proftpd.conf<br />
</span> <span style="color: #ff0000;"><span style="font-weight: normal;">ns2</span></span><span style="font-weight: normal;"> </span><span style="color: #3366ff;"><span style="font-weight: normal;">proftpd #</span></span><span style="font-weight: normal;"> vim proftpd.conf<br />
</span> <span style="text-decoration: line-through;"><span style="font-weight: normal;">ServerName &#8220;ProFTPD Default Installation&#8221;</span></span><span style="font-weight: normal;"> -&gt; ServerName &#8220;ftp.ns2.example.local&#8221;<br />
</span> <span style="text-decoration: line-through;"><span style="font-weight: normal;">#DefaultRoot ~</span></span><span style="font-weight: normal;"> -&gt; comment out<br />
</span> <em><span style="font-weight: normal;">if you like to enable root login: add</span><br />
<span style="font-weight: normal;">RootLogin on<br />
</span> <em><span style="font-weight: normal;">change Server Identification: add<br />
</span> <span style="font-style: normal;"><span style="font-weight: normal;">ServerIndent on  &#8221; Ftp Server at &#8230;..&#8221;</span></span><span style="font-weight: normal;"><br />
</span> <span style="color: #ff0000;"><span style="font-style: normal;"><span style="font-weight: normal;">ns2</span></span></span><span style="font-style: normal;"><span style="font-weight: normal;"> </span></span><span style="color: #3366ff;"><span style="font-style: normal;"><span style="font-weight: normal;">proftpd #</span></span></span><span style="font-style: normal;"><span style="font-weight: normal;"> /etc/init.d/proftpd start &amp;&amp; rc-update add proftpd default</span></span><span style="font-weight: normal;"><br />
</span> <span style="font-style: normal;"><span style="color: #ff0000;"><span style="font-weight: normal;">ns2</span></span><span style="font-weight: normal;"> </span><span style="color: #3366ff;"><span style="font-weight: normal;">etc #</span></span><span style="font-weight: normal;"> vim ftpusers</span></span><span style="font-weight: normal;"><br />
Comment out root </span></em></em></p>
]]></content:encoded>
			<wfw:commentRss>http://takahisa.info/2008/12/30/install-proftpd-on-gentoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>list installed packages on gentoo</title>
		<link>http://takahisa.info/2008/12/29/list-installed-packages-on-gentoo/</link>
		<comments>http://takahisa.info/2008/12/29/list-installed-packages-on-gentoo/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 16:15:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[gentoo]]></category>

		<guid isPermaLink="false">http://takahisa.info/?p=172</guid>
		<description><![CDATA[List all installed packages on gentoo you might use gentoolkit.  ns2 ~ # equery list Additional reference : http://www.gentoo.org/doc/en/gentoolkit.xml]]></description>
			<content:encoded><![CDATA[<p>List all installed packages on gentoo you might use gentoolkit.</p>
<p class="code"><span style="color: #ff0000;"> ns2</span> <span style="color: #3366ff;">~ #</span> equery list</p>
<p>Additional reference : <a href="http://www.gentoo.org/doc/en/gentoolkit.xml" target="_blank">http://www.gentoo.org/doc/en/gentoolkit.xml</a></p>
]]></content:encoded>
			<wfw:commentRss>http://takahisa.info/2008/12/29/list-installed-packages-on-gentoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>install Apache2 + php5 + mysql on gentoo</title>
		<link>http://takahisa.info/2008/12/29/install-apache2-php5-mysql-on-gentoo/</link>
		<comments>http://takahisa.info/2008/12/29/install-apache2-php5-mysql-on-gentoo/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 16:04:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://takahisa.info/?p=167</guid>
		<description><![CDATA[Install apache2 with php, mysql and ssl 1, Modify /etc/make.conf add those use flag : apache2 ssl pam xml xml2 pcre session unicode php mysql innodb berkdb ns2 ~ # emerge apache mysql php &#8230;&#8230;&#8230; when it done ns2 ~ # /usr/bin/mysql_install_db ns2 ~ # /etc/init.d/apache restart &#38;&#38; rc-update add apache default]]></description>
			<content:encoded><![CDATA[<p>Install apache2 with php, mysql and ssl</p>
<p><em>1, Modify /etc/make.conf</em><br />
add those use flag : apache2 ssl pam xml xml2 pcre session unicode php mysql innodb berkdb</p>
<p class="code"><span style="color: #ff0000;">ns2</span> <span style="color: #3366ff;">~ #</span> emerge apache mysql php<br />
&#8230;&#8230;&#8230; when it done<br />
<span style="color: #ff0000;">ns2</span> <span style="color: #3366ff;">~ # <span style="color: #000000;">/usr/bin/mysql_install_db<br />
<span style="color: #ff0000;">ns2</span> <span style="color: #3366ff;">~ # </span><span style="color: #000000;">/etc/init.d/apache restart &amp;&amp; rc-update add apache default</span></span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://takahisa.info/2008/12/29/install-apache2-php5-mysql-on-gentoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

