<?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/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>きぬろぐ &#187; solaris</title>
	<atom:link href="http://www.kinusati.net/category/computer/solaris/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kinusati.net</link>
	<description>だめでつれづれな日記</description>
	<lastBuildDate>Sun, 15 Jan 2012 23:42:13 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.kinusati.net/category/computer/solaris/feed/" />
		<item>
		<title>OpenLDAP 2.4でUnable to allocate memory for transaction detail</title>
		<link>http://www.kinusati.net/2010/07/05/openldap-2-4%e3%81%a7unable-to-allocate-memory-for-transaction-detail/</link>
		<comments>http://www.kinusati.net/2010/07/05/openldap-2-4%e3%81%a7unable-to-allocate-memory-for-transaction-detail/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 10:21:21 +0000</pubDate>
		<dc:creator>kinusati</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://www.kinusati.net/?p=726</guid>
		<description><![CDATA[OpenLDAP2.4に対して同時接続数を増やすテストを行っていたところ、以下のエラーがログに出力されました。 「Unable to allocate memory for transaction detail」 何だ? &#8230; <a href="http://www.kinusati.net/2010/07/05/openldap-2-4%e3%81%a7unable-to-allocate-memory-for-transaction-detail/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>OpenLDAP2.4に対して同時接続数を増やすテストを行っていたところ、以下のエラーがログに出力されました。</p>
<p>「Unable to allocate memory for transaction detail」</p>
<p>何だ?これ。と思ってしらべていたら、Oracleのサイトに以下の情報が。</p>
<pre>
Berkeley DB occasionally returns the error: &quot;Unable to allocate  memory for transaction detail&quot;. What does that mean?This error means the maximum number of active  transactions configured for Berkeley DB has been reached. The Berkeley  DB environment should be configured to support more active transactions.  When all of the memory available in the database environment for  transactions is in use, calls to being a transaction will fail until  some active transactions complete. By default, the database environment  is configured to support at least 20 active transactions.

For more information see the &quot;&lt;a href=&quot;http://www.oracle.com/technology/documentation/berkeley-db/db/programmer_reference/txn_config.html&quot;&gt;Configuring  transactions&lt;/a&gt;&quot; section of the Berkeley DB Reference Guide.
</pre>
<p>BerkeleyDBに対して設定されたActiveトランザクション数の最大値に達したとのこと。参照の試験しかしていないのにおかしいな・・・</p>
<p>とりあえずDB_CONFIGファイルのset_lg_regionmax, set_lg_bsizeを倍にしたら回避できた。</p>
<pre>
#set_lg_regionmax 262144
#set_lg_bsize 2097152
set_lg_regionmax 524288
set_lg_bsize 4194304
</pre>
<p>参照だけでもトランザクションを使うのでしょうかね。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kinusati.net/2010/07/05/openldap-2-4%e3%81%a7unable-to-allocate-memory-for-transaction-detail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.kinusati.net/2010/07/05/openldap-2-4%e3%81%a7unable-to-allocate-memory-for-transaction-detail/" />
	</item>
		<item>
		<title>OpenLDAP 2.4のチューニングについて</title>
		<link>http://www.kinusati.net/2010/07/04/openldap-2-4%e3%81%ae%e3%83%81%e3%83%a5%e3%83%bc%e3%83%8b%e3%83%b3%e3%82%b0%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6/</link>
		<comments>http://www.kinusati.net/2010/07/04/openldap-2-4%e3%81%ae%e3%83%81%e3%83%a5%e3%83%bc%e3%83%8b%e3%83%b3%e3%82%b0%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 11:29:29 +0000</pubDate>
		<dc:creator>kinusati</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://www.kinusati.net/?p=706</guid>
		<description><![CDATA[OpenLDAP 2.4のチューニングについて調査していたら、日本LDAPユーザ会にいい資料がありました。 さあそ の先へ、OpenLDAPパフォーマンスチューニング これは、便利。早速参考にさせて頂きます。 ところで、 &#8230; <a href="http://www.kinusati.net/2010/07/04/openldap-2-4%e3%81%ae%e3%83%81%e3%83%a5%e3%83%bc%e3%83%8b%e3%83%b3%e3%82%b0%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>OpenLDAP 2.4のチューニングについて調査していたら、日本LDAPユーザ会にいい資料がありました。</p>
<p><a title="doc:osc2010_tokyo_spring.pdf" href="http://www.ldap.jp/_media/doc/osc2010_tokyo_spring.pdf?id=doc&amp;cache=cache">さあそ の先へ、OpenLDAPパフォーマンスチューニング</a></p>
<p>これは、便利。早速参考にさせて頂きます。</p>
<p>ところで、LDAPの負荷をかけるツールには私の知る限り二種類あります。</p>
<ul>
<li><a href="http://www.slamd.com/">SLAMD</a></li>
<li><a href="http://jakarta.apache.org/jmeter/">Apache JMeter</a> の LDAP Extended Request/LDAPリクエスト</li>
</ul>
<p>どっちがいいんですかね。SLAMD使ったこと無いからよくわからんな・・・またいつか調べましょう。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kinusati.net/2010/07/04/openldap-2-4%e3%81%ae%e3%83%81%e3%83%a5%e3%83%bc%e3%83%8b%e3%83%b3%e3%82%b0%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.kinusati.net/2010/07/04/openldap-2-4%e3%81%ae%e3%83%81%e3%83%a5%e3%83%bc%e3%83%8b%e3%83%b3%e3%82%b0%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6/" />
	</item>
		<item>
		<title>久々のWiki更新</title>
		<link>http://www.kinusati.net/2010/02/28/%e4%b9%85%e3%80%85%e3%81%aewiki%e6%9b%b4%e6%96%b0/</link>
		<comments>http://www.kinusati.net/2010/02/28/%e4%b9%85%e3%80%85%e3%81%aewiki%e6%9b%b4%e6%96%b0/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 07:47:35 +0000</pubDate>
		<dc:creator>kinusati</dc:creator>
				<category><![CDATA[freebsd]]></category>
		<category><![CDATA[solaris]]></category>
		<category><![CDATA[コンピュータ]]></category>

		<guid isPermaLink="false">http://www.kinusati.net/?p=582</guid>
		<description><![CDATA[久々にWikiページを更新しました。 今回のねたはまぁまぁ大作です。 Soaris関係 Solaris10で以下の導入メモをまとめました。特にApacheとredmineの連携はSolaris10の環境だとはまりどころが &#8230; <a href="http://www.kinusati.net/2010/02/28/%e4%b9%85%e3%80%85%e3%81%aewiki%e6%9b%b4%e6%96%b0/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>久々にWikiページを更新しました。</p>
<p>今回のねたはまぁまぁ大作です。</p>
<h3>Soaris関係</h3>
<p>Solaris10で以下の導入メモをまとめました。特にApacheとredmineの連携はSolaris10の環境だとはまりどころが多いようなので、参考になるかと思います。</p>
<ol>
<li><a href="http://wiki.kinusati.net/index.php/Solaris10:Apache%E3%81%A8redmine%E3%81%AE%E9%80%A3%E4%BF%82">Apacheとredmineの連携</a></li>
<li><a href="http://wiki.kinusati.net/index.php/Solaris10:Apache-2.2.14%E5%B0%8E%E5%85%A5">Apache-2.2.14の導入</a></li>
<li><a href="http://wiki.kinusati.net/index.php/Solaris10:MySQL_5.5.2-m2%E5%B0%8E%E5%85%A5">MySQL 5.5.2-m2の導入</a></li>
</ol>
<h3>FreeBSD関係</h3>
<ol>
<li><a href="http://wiki.kinusati.net/index.php/FreeBSD:MySQL_5.5.1-m2%E8%A8%AD%E5%AE%9A">MySQL 5.5.1-m2の導入</a></li>
</ol>
<h3>MySQL関係</h3>
<p>TIPSを更新しました。MySQLデータベースのアップグレード他を記載しました。</p>
<p><a href="http://wiki.kinusati.net/index.php/MySQL:TIPS">http://wiki.kinusati.net/index.php/MySQL:TIPS</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kinusati.net/2010/02/28/%e4%b9%85%e3%80%85%e3%81%aewiki%e6%9b%b4%e6%96%b0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.kinusati.net/2010/02/28/%e4%b9%85%e3%80%85%e3%81%aewiki%e6%9b%b4%e6%96%b0/" />
	</item>
		<item>
		<title>Solaris 10 u8 (10/09)にアップグレード時にエラーが・・</title>
		<link>http://www.kinusati.net/2009/10/22/solaris-10-u8-1009%e3%81%ab%e3%82%a2%e3%83%83%e3%83%97%e3%82%b0%e3%83%ac%e3%83%bc%e3%83%89%e6%99%82%e3%81%ab%e3%82%a8%e3%83%a9%e3%83%bc%e3%81%8c%e3%83%bb%e3%83%bb/</link>
		<comments>http://www.kinusati.net/2009/10/22/solaris-10-u8-1009%e3%81%ab%e3%82%a2%e3%83%83%e3%83%97%e3%82%b0%e3%83%ac%e3%83%bc%e3%83%89%e6%99%82%e3%81%ab%e3%82%a8%e3%83%a9%e3%83%bc%e3%81%8c%e3%83%bb%e3%83%bb/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 01:19:25 +0000</pubDate>
		<dc:creator>kinusati</dc:creator>
				<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://www.kinusati.net/?p=386</guid>
		<description><![CDATA[Solaris 10 u8 (10/09)アップグレード時にエラーが出ます Live Upgradeを利用して、Solaris 10 u7 (5/09) SPARC版から Solaris 10 u8(10/09)にアップ &#8230; <a href="http://www.kinusati.net/2009/10/22/solaris-10-u8-1009%e3%81%ab%e3%82%a2%e3%83%83%e3%83%97%e3%82%b0%e3%83%ac%e3%83%bc%e3%83%89%e6%99%82%e3%81%ab%e3%82%a8%e3%83%a9%e3%83%bc%e3%81%8c%e3%83%bb%e3%83%bb/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2>Solaris 10 u8 (10/09)アップグレード時にエラーが出ます</h2>
<p>Live Upgradeを利用して、Solaris 10 u7 (5/09) SPARC版から Solaris 10 u8(10/09)にアップグレードしたら、luactivateコマンド実行後の再起動時に以下のエラーが出ました。シングルユーザでログインするためrootパスワードを入れろとのこと。</p>
<pre>
Configuring devices.
ERROR: svc:/system/filesystem/minimal:default failed to mount /var  (see 'svcs -x' for details)
Oct 17 17:25:50 svc.startd[7]: svc:/system/filesystem/minimal:default: Method &quot;/lib/svc/method/fs-minimal&quot; faled with exit status 95.
Oct 17 17:25:50 svc.startd[7]: system/filesystem/minimal:default failed fatally: transitioned to maintenance see 'svcs -xv' for details)
Requesting System Maintenance Mode
(See /lib/svc/share/README for more information.)
Console login service(s) cannot run

Root password for system maintenance (control-d to bypass):
single-user privilege assigned to /dev/console.
Entering System Maintenance Mode
</pre>
<p>なにやら/varのマウントができない模様。svcs -xコマンドを実行すると以下のエラーが&#8230;</p>
<pre>
bash-3.00# svcs -x
svc:/network/iscsi_initiator:default has no &quot;restarter&quot; property group; ignoring.
svc:/system/filesystem/minimal:default (minimal file system mounts)
 State: maintenance since Sat Oct 17 17:25:50 2009
Reason: Start method exited with $SMF_EXIT_ERR_FATAL.
   See: http://sun.com/msg/SMF-8000-KS
   See: /etc/svc/volatile/system-filesystem-minimal:default.log
Impact: 55 dependent services are not running.  (Use -v for list.)

svc:/application/print/server:default (LP print server)
 State: disabled since Sat Oct 17 17:23:42 2009
Reason: Disabled by an administrator.
   See: http://sun.com/msg/SMF-8000-05
   See: lpsched(1M)
Impact: 1 dependent service is not running.  (Use -v for list.)
</pre>
<p>/etc/svc/volatile/system-filesystem-minimal:default.logを見ろと記述されているので、見てみると、/varのマウントが失敗しています。</p>
<pre>
bash-3.00# cat /etc/svc/volatile/system-filesystem-minimal\:default.log
[ Oct 17 17:23:41 Enabled. ]
[ Oct 17 17:25:50 Executing start method (&quot;/lib/svc/method/fs-minimal&quot;) ]
ERROR: /sbin/mount -O -F zfs   /var failed, err=1
filesystem 'rpool/ROOT/s10s_u8wos_09/var' cannot be mounted using 'mount -F zfs' Use 'zfs set mountpoint=/var instead. If you must use 'mount -F zfs' or /etc/vfstab, use 'zfs set mountpoint=legacy'. See zfs(1M) for mor information.
[ Oct 17 17:25:50 Method &quot;start&quot; exited with status 95 ]
</pre>
</pre>
<p>Live Upgradeを利用すると、/etc/vfstabに/と/varを登録するのですが、/varは元々zfsのマウント機能でマウントする設定が有効になっていたので、「/etc/vfstab経由でマウントするならそういうオプション設定してよ」と怒られている模様。</p>
<pre>
rpool/ROOT/s10s_u8wos_09        -       /       zfs     1       no      -
rpool/ROOT/s10s_u8wos_09/var    -       /var    zfs     1       no      -
</pre>
<h2>解決策</h2>
<p>以下のコマンドを実行して事なきを得ました。珍しいエラーなのかなぁ・・・</p>
<pre>
zfs set mountpoint=legacy rpool/ROOT/s10s_u8wos_09/var
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.kinusati.net/2009/10/22/solaris-10-u8-1009%e3%81%ab%e3%82%a2%e3%83%83%e3%83%97%e3%82%b0%e3%83%ac%e3%83%bc%e3%83%89%e6%99%82%e3%81%ab%e3%82%a8%e3%83%a9%e3%83%bc%e3%81%8c%e3%83%bb%e3%83%bb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.kinusati.net/2009/10/22/solaris-10-u8-1009%e3%81%ab%e3%82%a2%e3%83%83%e3%83%97%e3%82%b0%e3%83%ac%e3%83%bc%e3%83%89%e6%99%82%e3%81%ab%e3%82%a8%e3%83%a9%e3%83%bc%e3%81%8c%e3%83%bb%e3%83%bb/" />
	</item>
		<item>
		<title>Solaris 10 10/09 リリース</title>
		<link>http://www.kinusati.net/2009/10/17/solaris-10-1009-%e3%83%aa%e3%83%aa%e3%83%bc%e3%82%b9/</link>
		<comments>http://www.kinusati.net/2009/10/17/solaris-10-1009-%e3%83%aa%e3%83%aa%e3%83%bc%e3%82%b9/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 03:59:04 +0000</pubDate>
		<dc:creator>kinusati</dc:creator>
				<category><![CDATA[solaris]]></category>
		<category><![CDATA[コンピュータ]]></category>

		<guid isPermaLink="false">http://www.kinusati.net/?p=367</guid>
		<description><![CDATA[Solaris 10 10/09がリリースされていますね。日本のサイトではまだアナウンスされていないですが、本家サイトでばっちりダウンロードできるようになっています。 新機能は以下のページに掲載されています。 http: &#8230; <a href="http://www.kinusati.net/2009/10/17/solaris-10-1009-%e3%83%aa%e3%83%aa%e3%83%bc%e3%82%b9/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Solaris 10 10/09がリリースされていますね。日本のサイトではまだアナウンスされていないですが、本家サイトでばっちりダウンロードできるようになっています。</p>
<p>新機能は以下のページに掲載されています。</p>
<p><a href="http://docs.sun.com/app/docs/doc/821-0382/gijtg?a=view">http://docs.sun.com/app/docs/doc/821-0382/gijtg?a=view</a></p>
<ol>
<li>2テラバイトディスクでのインストールと起動が可能に。今までは1TBまでしか無理だった</li>
<li>pcitoolが利用可能に</li>
<li>JumpstartインストールにZFSが利用可能に</li>
<li>ユーザ/グループ単位でZFSにQuotaを設定可能に</li>
</ol>
<p>等々ほかいろいろあるようです。</p>
<div class="mj-articles">http://journal.mycom.co.jp/news/2009/10/13/033/index.html</div>
<p><script src="http://api.journal.mycom.co.jp/tensai/mj-tensai-single.js" type="text/javascript"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kinusati.net/2009/10/17/solaris-10-1009-%e3%83%aa%e3%83%aa%e3%83%bc%e3%82%b9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.kinusati.net/2009/10/17/solaris-10-1009-%e3%83%aa%e3%83%aa%e3%83%bc%e3%82%b9/" />
	</item>
		<item>
		<title>VirtualBox 3.0.8で、不具合が解消された！</title>
		<link>http://www.kinusati.net/2009/10/17/virtualbox-3-0-8%e3%81%a7%e3%80%81%e4%b8%8d%e5%85%b7%e5%90%88%e3%81%8c%e8%a7%a3%e6%b6%88%e3%81%95%e3%82%8c%e3%81%9f%ef%bc%81/</link>
		<comments>http://www.kinusati.net/2009/10/17/virtualbox-3-0-8%e3%81%a7%e3%80%81%e4%b8%8d%e5%85%b7%e5%90%88%e3%81%8c%e8%a7%a3%e6%b6%88%e3%81%95%e3%82%8c%e3%81%9f%ef%bc%81/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 03:33:42 +0000</pubDate>
		<dc:creator>kinusati</dc:creator>
				<category><![CDATA[solaris]]></category>
		<category><![CDATA[コンピュータ]]></category>

		<guid isPermaLink="false">http://www.kinusati.net/?p=364</guid>
		<description><![CDATA[VirtualBox 3.0.8がリリースしています。 前々からVirtuaｌBox3系 + Solaris環境でkernel panicが発生し、その不安定さに悩まされていたのですが、今回のリリースでは無事安定稼働して &#8230; <a href="http://www.kinusati.net/2009/10/17/virtualbox-3-0-8%e3%81%a7%e3%80%81%e4%b8%8d%e5%85%b7%e5%90%88%e3%81%8c%e8%a7%a3%e6%b6%88%e3%81%95%e3%82%8c%e3%81%9f%ef%bc%81/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>VirtualBox 3.0.8がリリースしています。</p>
<p>前々からVirtuaｌBox3系 + Solaris環境でkernel panicが発生し、その不安定さに悩まされていたのですが、今回のリリースでは無事安定稼働しています！やったぞ。たぶん、以下修正点のbug #4775というものが該当するのだろう。我が家はNATではなくbridge利用だったので、可能性があると思う。</p>
<ul>
<li>Solaris hosts: fixed a bug which would hang the host sporadically as interrupts were not re-enabled everytime</li>
<li>Solaris hosts: fixed a kernel panic with bridged and host-only networking (bug <a title="vbox 3.0.4 causes host panic on osol 0904 on VBoxNetDHCP module (closed)" href="http://www.virtualbox.org/ticket/4775">#4775</a>)</li>
<li>Solaris hosts: fixed incorrectly persistent CD/DVD-ROMs when changing them (bug <a title="VirtualBox 3.0.6 sees invalid cd/dvd data after an eject / load on Solaris  ... (closed)" href="http://www.virtualbox.org/ticket/5077">#5077</a>)</li>
</ul>
<p>これで安心してSolarisホストOS下でのVirtualBox3系を利用できます。一安心。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kinusati.net/2009/10/17/virtualbox-3-0-8%e3%81%a7%e3%80%81%e4%b8%8d%e5%85%b7%e5%90%88%e3%81%8c%e8%a7%a3%e6%b6%88%e3%81%95%e3%82%8c%e3%81%9f%ef%bc%81/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.kinusati.net/2009/10/17/virtualbox-3-0-8%e3%81%a7%e3%80%81%e4%b8%8d%e5%85%b7%e5%90%88%e3%81%8c%e8%a7%a3%e6%b6%88%e3%81%95%e3%82%8c%e3%81%9f%ef%bc%81/" />
	</item>
		<item>
		<title>VirtualBOXからVMware vSphere 4 ESXiに仮想マシンを移行</title>
		<link>http://www.kinusati.net/2009/10/10/virtualbox%e3%81%8b%e3%82%89vmware-esxi-4-0%e3%81%ab%e4%bb%ae%e6%83%b3%e3%83%9e%e3%82%b7%e3%83%b3%e3%82%92%e7%a7%bb%e8%a1%8c/</link>
		<comments>http://www.kinusati.net/2009/10/10/virtualbox%e3%81%8b%e3%82%89vmware-esxi-4-0%e3%81%ab%e4%bb%ae%e6%83%b3%e3%83%9e%e3%82%b7%e3%83%b3%e3%82%92%e7%a7%bb%e8%a1%8c/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 12:13:53 +0000</pubDate>
		<dc:creator>kinusati</dc:creator>
				<category><![CDATA[solaris]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.kinusati.net/?p=319</guid>
		<description><![CDATA[我が家ではSolaris10(amd64)上でVirtualBOX 2.2.4を動かし、その上でWindowsを起動させていたのですが、このたび古い機材を集めてVMware vSphere 4 ESXi用のPCを組み立て &#8230; <a href="http://www.kinusati.net/2009/10/10/virtualbox%e3%81%8b%e3%82%89vmware-esxi-4-0%e3%81%ab%e4%bb%ae%e6%83%b3%e3%83%9e%e3%82%b7%e3%83%b3%e3%82%92%e7%a7%bb%e8%a1%8c/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>我が家ではSolaris10(amd64)上でVirtualBOX 2.2.4を動かし、その上でWindowsを起動させていたのですが、このたび古い機材を集めてVMware vSphere 4 ESXi用のPCを組み立てました。</p>
<p>で、VirtualBOX上のVMをESXiに移行する方法です。具体的にはVMware vCenter Converterを利用しますが、そこに持って行くまでに何段かトラップがあります。<strong>手順の通りに実行しましょう!</strong></p>
<h2>VirtualBox 2.2.4からのエクスポート手順</h2>
<p>1. VirtualBOX 2.2.4上でVMを停止して、エクスポートします。仮想アプライアンス エクスポート　ウィザードでエクスポート対象を選択します。今回のケースでは「XP1」というVMを選択します。</p>
<p><a href="http://www.kinusati.net/wp-content/uploads/2009/10/step1.png"><img class="alignnone size-medium wp-image-320" title="step1" src="http://www.kinusati.net/wp-content/uploads/2009/10/step1-300x267.png" alt="step1" width="300" height="267" /></a></p>
<p>2. 仮想アプライアンスのエクスポート設定で各種パラメータを設定します。なお今回は未設定で進めています。</p>
<p><a href="http://www.kinusati.net/wp-content/uploads/2009/10/step2.png"><img class="alignnone size-medium wp-image-321" title="step2" src="http://www.kinusati.net/wp-content/uploads/2009/10/step2-300x270.png" alt="step2" width="300" height="270" /></a></p>
<p>3. ファイル名(*.ovf)形式で出力します。なおこの際「Write legacy OVF 0.9」を選択してください。<span style="color: #ff0000;"><strong>これを選択しないとVMware Converterから読み込めません。</strong></span></p>
<p><a href="http://www.kinusati.net/wp-content/uploads/2009/10/step3.png"><img class="alignnone size-medium wp-image-322" title="step3" src="http://www.kinusati.net/wp-content/uploads/2009/10/step3-300x269.png" alt="step3" width="300" height="269" /></a></p>
<p>4. エクスポート完了を待ちます。</p>
<p><a href="http://www.kinusati.net/wp-content/uploads/2009/10/step4.png"><img class="alignnone size-medium wp-image-323" title="step4" src="http://www.kinusati.net/wp-content/uploads/2009/10/step4-300x270.png" alt="step4" width="300" height="270" /></a></p>
<p>5. エクスポートしたVMファイル(ovfとvmdkファイル)をApacheのDocumentRoot直下に設置します。このときにパーミッションもApache起動ユーザで読み込めるように変更しましょう！</p>
<p>なぜこんなことをするかって?<span style="color: #ff0000;"><strong>VMware vCenter Converterで読めないからです。</strong><span style="color: #000000;">本当は読む方法あるかもしれないけどさ・・・</span></span></p>
<p><span style="color: #ff0000;"><strong><br />
</strong></span></p>
<h2><strong>VMware vCnter Conveterで</strong>VMware vSphere 4 ESXiにインポート</h2>
<p>インポート作業にはVMware vCnter Conveterを利用します。以下手順です。</p>
<p>1. Womdows上でVMware vCenter Converterを起動してローカルサーバに接続します。なおWindows7 RTM(x64)でやってみましたが、普通に動きましたよ。</p>
<p><a href="http://www.kinusati.net/wp-content/uploads/2009/10/step5.png"><img class="alignnone size-medium wp-image-325" title="step5" src="http://www.kinusati.net/wp-content/uploads/2009/10/step5-272x300.png" alt="step5" width="272" height="300" /></a></p>
<p>2. VirtualBoxでエクスポートしたVMをESXi 4.0に変換するので「Convert Machine」を選択します。</p>
<p><a href="http://www.kinusati.net/wp-content/uploads/2009/10/step6.png"><img class="alignnone size-medium wp-image-326" title="step6" src="http://www.kinusati.net/wp-content/uploads/2009/10/step6-300x246.png" alt="step6" width="300" height="246" /></a></p>
<p>3. 「Select source type」で「Virtual Appliance」を選択し、URLに先ほどエクスポートしたVMのダウンロードURLを記述します。</p>
<p><a href="http://www.kinusati.net/wp-content/uploads/2009/10/step7.png"><img class="alignnone size-medium wp-image-327" title="step7" src="http://www.kinusati.net/wp-content/uploads/2009/10/step7-300x234.png" alt="step7" width="300" height="234" /></a></p>
<p>4. 内容を確認します。</p>
<p><a href="http://www.kinusati.net/wp-content/uploads/2009/10/step8.png"><img class="alignnone size-medium wp-image-328" title="step8" src="http://www.kinusati.net/wp-content/uploads/2009/10/step8-300x234.png" alt="step8" width="300" height="234" /></a></p>
<p>5. インポート先のESXiの情報を入力します。「Select destination type」に「VMware Infrastructure virtual machine」を選択し、ESXiのIP・ユーザ名・パスワードを入力します。</p>
<p><a href="http://www.kinusati.net/wp-content/uploads/2009/10/step9.png"><img class="alignnone size-medium wp-image-329" title="step9" src="http://www.kinusati.net/wp-content/uploads/2009/10/step9-300x234.png" alt="step9" width="300" height="234" /></a></p>
<p>6. インポート後の仮想マシン名とインポート先のストレージを選択します。</p>
<p><a href="http://www.kinusati.net/wp-content/uploads/2009/10/step10.png"><img class="alignnone size-medium wp-image-330" title="step10" src="http://www.kinusati.net/wp-content/uploads/2009/10/step10-300x234.png" alt="step10" width="300" height="234" /></a></p>
<p>7. 内容を確認します。</p>
<p><a href="http://www.kinusati.net/wp-content/uploads/2009/10/step11.png"><img class="alignnone size-medium wp-image-331" title="step11" src="http://www.kinusati.net/wp-content/uploads/2009/10/step11-300x234.png" alt="step11" width="300" height="234" /></a></p>
<p>8. 同じく内容を確認します。</p>
<p><a href="http://www.kinusati.net/wp-content/uploads/2009/10/step12.png"><img class="alignnone size-medium wp-image-332" title="step12" src="http://www.kinusati.net/wp-content/uploads/2009/10/step12-300x234.png" alt="step12" width="300" height="234" /></a></p>
<p>9. さぁ、インポート開始です。</p>
<p><a href="http://www.kinusati.net/wp-content/uploads/2009/10/step13.png"><img class="alignnone size-medium wp-image-333" title="step13" src="http://www.kinusati.net/wp-content/uploads/2009/10/step13-300x246.png" alt="step13" width="300" height="246" /></a></p>
<p>10. 以上で無事にインポート完了。長かった・・・</p>
<p>ちなみに<a href="http://wiki.kinusati.net/index.php/VMware:TIPS:VirtualBox%E3%81%8B%E3%82%89VMware_vSphere_4_ESXi%E3%81%AB%E4%BB%AE%E6%83%B3%E3%83%9E%E3%82%B7%E3%83%B3%E3%82%92%E7%A7%BB%E8%A1%8C">Wikiページ</a>にも上記をまとめておきました。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kinusati.net/2009/10/10/virtualbox%e3%81%8b%e3%82%89vmware-esxi-4-0%e3%81%ab%e4%bb%ae%e6%83%b3%e3%83%9e%e3%82%b7%e3%83%b3%e3%82%92%e7%a7%bb%e8%a1%8c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.kinusati.net/2009/10/10/virtualbox%e3%81%8b%e3%82%89vmware-esxi-4-0%e3%81%ab%e4%bb%ae%e6%83%b3%e3%83%9e%e3%82%b7%e3%83%b3%e3%82%92%e7%a7%bb%e8%a1%8c/" />
	</item>
		<item>
		<title>freeradius-server-2.1.7インストール</title>
		<link>http://www.kinusati.net/2009/09/23/freeradius-server-2-1-7%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/</link>
		<comments>http://www.kinusati.net/2009/09/23/freeradius-server-2-1-7%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 01:15:03 +0000</pubDate>
		<dc:creator>kinusati</dc:creator>
				<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://www.kinusati.net/?p=249</guid>
		<description><![CDATA[Solaris10(amd64)にfreeradius-server-2.1.7をインストールしてみました。 いっつも思うんだけど、何でSolarisにソフトウェアをインストールするのはこんなに大変なんだろう。./con &#8230; <a href="http://www.kinusati.net/2009/09/23/freeradius-server-2-1-7%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Solaris10(amd64)にfreeradius-server-2.1.7をインストールしてみました。</p>
<p>いっつも思うんだけど、何でSolarisにソフトウェアをインストールするのはこんなに大変なんだろう。./configure, make , make installでまったく通らないですよ！</p>
<p>例えば、&#8211;without-rlm_eapが無いと以下のエラーが・・・</p>
<pre>
Making all in libeap...
gmake[7]: Entering directory `/var/tmp/work/freeradius-server-2.1.7/src/modules/rlm_eap/libeap'
/var/tmp/work/freeradius-server-2.1.7/libtool --mode=link gcc -release 2.1.7 \
 -export-dynamic -o libfreeradius-eap.la -rpath /usr/local/lib eapcommon.lo eapcrypto.lo eapsimlib.lo fips186prf.lo cb.lo eap_tls.lo mppe_keys.lo tls.lo \
/var/tmp/work/freeradius-server-2.1.7/src/lib/libfreeradius-radius.la -lnsl -lresolv -lsocket -lposix4  -lpthread
libtool: link: `eapcrypto.lo' is not a valid libtool object
gmake[7]: *** [libfreeradius-eap.la] Error 1
</pre>
<p>&#8211;without-rlm_perlが無いと以下のエラーが・・・</p>
<pre>
*** Warning: Linking the shared library rlm_perl.la against the
*** static library /usr/perl5/5.8.4/lib/i86pc-solaris-64int/auto/DynaLoader/DynaLoader.a is not portable!
gcc -shared -Wl,-h -Wl,rlm_perl-2.1.7.so -o .libs/rlm_perl-2.1.7.so  .libs/rlm_perl.o  -R/var/tmp/work/freeradius-server-2.1.7/src/lib/.libs -R/usr/local/lib -R/usr/perl5/5.8.4/lib/i86pc-solaris-64int/CORE /var/tmp/work/freeradius-server-2.1.7/src/lib/.libs/libfreeradius-radius.so /usr/perl5/5.8.4/lib/i86pc-solaris-64int/auto/DynaLoader/DynaLoader.a -L/usr/perl5/5.8.4/lib/i86pc-solaris-64int/CORE -lperl -ldl -lm -lc -lnsl -lresolv -lsocket -lposix4 -lpthread -lc
Text relocation remains                         referenced
    against symbol                  offset      in file
.rodata1                            0x6         /usr/perl5/5.8.4/lib/i86pc-solaris-64int/auto/DynaLoader/DynaLoader.a(DynaLoader.o)
my_cxt                              0x13        /usr/perl5/5.8.4/lib/i86pc-solaris-64int/auto/DynaLoader/DynaLoader.a(DynaLoader.o)
</pre>
<p>でも&#8211;without-rlm_eapを設定するとradeapclientファイルが生成されなくなるので、make installで失敗するからここも手動対応・・</p>
<pre>
gmake[9]: Leaving directory `/var/tmp/work/freeradius-server-2.1.7/src/modules/rlm_eap/libeap'
gmake[8]: Leaving directory `/var/tmp/work/freeradius-server-2.1.7/src/modules/rlm_eap'
/var/tmp/work/freeradius-server-2.1.7/libtool --mode=install /var/tmp/work/freeradius-server-2.1.7/install-sh -c -m 755  radeapclient /usr/local/bin
/var/tmp/work/freeradius-server-2.1.7/install-sh -c -m 755 radeapclient /usr/local/bin/radeapclient
install:  radeapclient does not exist
gmake[7]: *** [install-subdirs] Error 1
</pre>
<p>ま、Makefileを手動で編集すればいいですけどね。src/modules/rlm_eap/Makefileの41行目をコメントアウト。</p>
<pre># vi src/modules/rlm_eap/Makefile
39 install-subdirs:
40     @$(MAKE) $(MFLAGS) WHAT_TO_MAKE=install common
41     #$(LIBTOOL) --mode=install $(INSTALL) -m 755 $(INSTALLSTRIP) radeapclient$(EXEEXT) $(R)$(bindir)
</pre>
<p>Wikiにまとめておきました。</p>
<p id="firstHeading"><a href="http://wiki.kinusati.net/index.php/Solaris10:freeradius-server-2.1.7%E8%A8%AD%E5%AE%9A" target="_blank">Solaris10:freeradius-server-2.1.7設定</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kinusati.net/2009/09/23/freeradius-server-2-1-7%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.kinusati.net/2009/09/23/freeradius-server-2-1-7%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/" />
	</item>
		<item>
		<title>squidをバージョンアップ</title>
		<link>http://www.kinusati.net/2009/09/14/squid%e3%82%92%e3%83%90%e3%83%bc%e3%82%b8%e3%83%a7%e3%83%b3%e3%82%a2%e3%83%83%e3%83%97/</link>
		<comments>http://www.kinusati.net/2009/09/14/squid%e3%82%92%e3%83%90%e3%83%bc%e3%82%b8%e3%83%a7%e3%83%b3%e3%82%a2%e3%83%83%e3%83%97/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 14:29:11 +0000</pubDate>
		<dc:creator>kinusati</dc:creator>
				<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://www.kinusati.net/?p=220</guid>
		<description><![CDATA[IPv4/IPv6両方をしゃべれるプロキシサーバとしてsquid-3.1(beta)を利用していた。 従来はsquid-3.1.0.4を利用していたが、Solaris10(amd64)環境下ではCPUが100%に張り付く &#8230; <a href="http://www.kinusati.net/2009/09/14/squid%e3%82%92%e3%83%90%e3%83%bc%e3%82%b8%e3%83%a7%e3%83%b3%e3%82%a2%e3%83%83%e3%83%97/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>IPv4/IPv6両方をしゃべれるプロキシサーバとしてsquid-3.1(beta)を利用していた。</p>
<p>従来はsquid-3.1.0.4を利用していたが、Solaris10(amd64)環境下ではCPUが100%に張り付くことがたびたびあった。そこで、バージョンアップを試みたがsquid-3.1.0.13では以下のエラーが出て、コンパイルができなかった。</p>
<pre>
-bash-3.00# gmake
Making all in compat
gmake[1]: Entering directory `/var/tmp/work/squid-3.1.0.13/compat'
/bin/bash ../libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H  -I.. -I../include -I../src -I../include   -I/usr/include/libxml2  -Werror -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -D_REENTRANT -pthreads -Usparc -Uunix -Ui386 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -Wall -g  -MT GnuRegex.lo -MD -MP -MF .deps/GnuRegex.Tpo -c -o GnuRegex.lo GnuRegex.c
 gcc -DHAVE_CONFIG_H -I.. -I../include -I../src -I../include -I/usr/include/libxml2 -Werror -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments -D_REENTRANT -pthreads -Usparc -Uunix -Ui386 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -Wall -g -MT GnuRegex.lo -MD -MP -MF .deps/GnuRegex.Tpo -c GnuRegex.c  -fPIC -DPIC -o .libs/GnuRegex.o
In file included from ../compat/compat.h:63,
                 from ../include/config.h:58,
                 from GnuRegex.c:35:
../compat/os/solaris.h:33: warning: &quot;struct rusage&quot; declared inside parameter list
../compat/os/solaris.h:33: warning: its scope is only this definition or declaration, which is probably not what you want
gmake[1]: *** [GnuRegex.lo] Error 1
gmake[1]: Leaving directory `/var/tmp/work/squid-3.1.0.13/compat'
gmake: *** [all-recursive] Error 1
</pre>
<p>思い切って、daily build版のsquid-3.1.0.13-20090914を利用してみたら、コンパイルもとおって、ばっちりインストールができたので、今日はこれで満足することとしよう。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kinusati.net/2009/09/14/squid%e3%82%92%e3%83%90%e3%83%bc%e3%82%b8%e3%83%a7%e3%83%b3%e3%82%a2%e3%83%83%e3%83%97/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.kinusati.net/2009/09/14/squid%e3%82%92%e3%83%90%e3%83%bc%e3%82%b8%e3%83%a7%e3%83%b3%e3%82%a2%e3%83%83%e3%83%97/" />
	</item>
		<item>
		<title>RRDtool-1.3.8をSolaris10(x86/x64)にインストールするのが難しい</title>
		<link>http://www.kinusati.net/2009/09/13/rrdtool-1-3-8%e3%82%92solaris10x86x64%e3%81%ab%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e3%81%99%e3%82%8b%e3%81%ae%e3%81%8c%e9%9b%a3%e3%81%97%e3%81%84/</link>
		<comments>http://www.kinusati.net/2009/09/13/rrdtool-1-3-8%e3%82%92solaris10x86x64%e3%81%ab%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e3%81%99%e3%82%8b%e3%81%ae%e3%81%8c%e9%9b%a3%e3%81%97%e3%81%84/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 00:40:40 +0000</pubDate>
		<dc:creator>kinusati</dc:creator>
				<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://www.kinusati.net/?p=217</guid>
		<description><![CDATA[RRDtool-1.3.8をSolaris10にインストールするWikiページを書いているが、Solaris10(x86/x64)にインストールできないことが発覚・・・ 以下のエラーが出ます・・・ gmake[3]: E &#8230; <a href="http://www.kinusati.net/2009/09/13/rrdtool-1-3-8%e3%82%92solaris10x86x64%e3%81%ab%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e3%81%99%e3%82%8b%e3%81%ae%e3%81%8c%e9%9b%a3%e3%81%97%e3%81%84/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>RRDtool-1.3.8をSolaris10にインストールするWikiページを書いているが、Solaris10(x86/x64)にインストールできないことが発覚・・・</p>
<p>以下のエラーが出ます・・・</p>
<pre>
gmake[3]: Entering directory `/var/tmp/work/rrdtool/fontconfig-2.4.2/src'
/bin/bash ../libtool --tag=CC --mode=link gcc  -O3 -fPIC   -o libfontconfig.la -rpath /usr/local/rrdtool/lib -version-info 3:0:2 -no-undefined  fcatomic.lo fcblanks.lo fccache.lo fccfg.lo fccharset.lo fcdbg.lo fcdefault.lo fcdir.lo fcfreetype.lo fcfs.lo fcinit.lo fclang.lo fclist.lo fcmatch.lo fcmatrix.lo fcname.lo fcpat.lo fcserialize.lo fcstr.lo fcxml.lo ftglue.lo  -L/usr/local/rrdtool/lib -R/usr/local/rrdtool/lib -lfreetype -lz -L/usr/local/rrdtool/lib -lxml2
gcc -shared -Wl,-h -Wl,libfontconfig.so.1 -o .libs/libfontconfig.so.1.2.0  .libs/fcatomic.o .libs/fcblanks.o .libs/fccache.o .libs/fccfg.o .libs/fccharset.o .libs/fcdbg.o .libs/fcdefault.o .libs/fcdir.o .libs/fcfreetype.o .libs/fcfs.o .libs/fcinit.o .libs/fclang.o .libs/fclist.o .libs/fcmatch.o .libs/fcmatrix.o .libs/fcname.o .libs/fcpat.o .libs/fcserialize.o .libs/fcstr.o .libs/fcxml.o .libs/ftglue.o  -R/usr/local/rrdtool/lib -R/usr/local/rrdtool/lib -L/usr/local/rrdtool/lib /usr/local/rrdtool/lib/libfreetype.so -lz /usr/local/rrdtool/lib/libxml2.so -lc
ld: fatal: relocation error: R_386_GOTOFF: file .libs/fccache.o: symbol FcDebugVal: relocation must bind locally
collect2: ld returned 1 exit status
gmake[3]: *** [libfontconfig.la] Error 1
gmake[3]: Leaving directory `/var/tmp/work/rrdtool/fontconfig-2.4.2/src'
gmake[2]: *** [all] Error 2
gmake[2]: Leaving directory `/var/tmp/work/rrdtool/fontconfig-2.4.2/src'
gmake[1]: *** [all-recursive] Error 1
gmake[1]: Leaving directory `/var/tmp/work/rrdtool/fontconfig-2.4.2'
gmake: *** [all] Error 2
</pre>
<p>上記fontconfitg-2.4.2はRRDtoolのパッケージが指定しているバージョンなので変えていいべきかを悩んでいろいろ試行錯誤をしたものの、結局バージョンを変えることで解決した。解決したバージョンはfontconfig-2.7.3。ふー。</p>
<p>取り急ぎWikiページを更新しています。<br />
<a href="http://wiki.kinusati.net/index.php/Solaris10:rrdtool-1.3.8%E5%B0%8E%E5%85%A5" target="_blank"> http://wiki.kinusati.net/index.php/Solaris10:rrdtool-1.3.8%E5%B0%8E%E5%85%A5</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kinusati.net/2009/09/13/rrdtool-1-3-8%e3%82%92solaris10x86x64%e3%81%ab%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e3%81%99%e3%82%8b%e3%81%ae%e3%81%8c%e9%9b%a3%e3%81%97%e3%81%84/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.kinusati.net/2009/09/13/rrdtool-1-3-8%e3%82%92solaris10x86x64%e3%81%ab%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e3%81%99%e3%82%8b%e3%81%ae%e3%81%8c%e9%9b%a3%e3%81%97%e3%81%84/" />
	</item>
	</channel>
</rss>

