<?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>infoalive labs &#187; 未分類</title>
	<atom:link href="http://labs.infoalive.com/category/uncategorized/feed" rel="self" type="application/rss+xml" />
	<link>http://labs.infoalive.com</link>
	<description>プロダクトの紹介とTipsのまとめサイト</description>
	<lastBuildDate>Thu, 02 Sep 2010 07:45:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CentOSにDAG（rpmforge）のyumリポジトリの追加</title>
		<link>http://labs.infoalive.com/uncategorized/210</link>
		<comments>http://labs.infoalive.com/uncategorized/210#comments</comments>
		<pubDate>Thu, 02 Sep 2010 07:45:40 +0000</pubDate>
		<dc:creator>岩本＠サーバー事業部</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://labs.infoalive.com/uncategorized/210</guid>
		<description><![CDATA[もうすっかり9月ですね、岩本@サーバー事業部です。
&#160;
CentOSを新規でインストールする時、標準のyumリポジトリでは足りず、DAGを利用する際、
yumリポジトリの追加方法の覚書です。なぜかいつもよく忘れます。
&#160;
DAGのサイトより
左側メニュー
&#160;[RPM packages] 
&#160;
ページ中段   [Getting started Please read &#34;Installation and Configuration&#34; from the FAQ to get started quickl.]
&#160;
にて、各OS毎のリポジトリ追加方法が載っています。
CentOS5はRedHatEL5のリポジトリを使います。
&#160;
# rpm -Uhv http://apt.sw.be/redhat/el5/en/i386/rpmforge/RPMS/rpmforge-release-0.3.6-1.el5.rf.i386.rpm
]]></description>
			<content:encoded><![CDATA[<p>もうすっかり9月ですね、岩本@サーバー事業部です。</p>
<p>&#160;</p>
<p>CentOSを新規でインストールする時、標準のyumリポジトリでは足りず、DAGを利用する際、</p>
<p>yumリポジトリの追加方法の覚書です。なぜかいつもよく忘れます。</p>
<p>&#160;</p>
<p><a href="http://dag.wieers.com/">DAG</a>のサイトより</p>
<p>左側メニュー</p>
<p>&#160;<a href="http://dag.wieers.com/rpm/">[RPM packages]</a> </p>
<p>&#160;</p>
<p>ページ中段   <br />[Getting started Please read <a href="http://dag.wieers.com/rpm/FAQ.php#B">&quot;Installation and Configuration&quot;</a> from the FAQ to get started quickl.]</p>
<p>&#160;</p>
<p>にて、各OS毎のリポジトリ追加方法が載っています。</p>
<p>CentOS5はRedHatEL5のリポジトリを使います。</p>
<p>&#160;</p>
<p># rpm -Uhv <a href="http://apt.sw.be/redhat/el5/en/i386/rpmforge/RPMS/rpmforge-release-0.3.6-1.el5.rf.i386.rpm">http://apt.sw.be/redhat/el5/en/i386/rpmforge/RPMS/rpmforge-release-0.3.6-1.el5.rf.i386.rpm</a></p>
]]></content:encoded>
			<wfw:commentRss>http://labs.infoalive.com/uncategorized/210/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>curlftpfs のオートマウント</title>
		<link>http://labs.infoalive.com/uncategorized/187</link>
		<comments>http://labs.infoalive.com/uncategorized/187#comments</comments>
		<pubDate>Tue, 30 Mar 2010 04:27:54 +0000</pubDate>
		<dc:creator>岩本＠サーバー事業部</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://labs.infoalive.com/uncategorized/187</guid>
		<description><![CDATA[もう3月も終わりですが、寒い日が続きますね。昨日は江坂に雪がふってました。岩本@サーバー事業部です。
&#160;
いつも仮想化ネタ(そんなに書いてもいないですが)FTPをファイルシステムとしてマウントする方法のご紹介
&#160;
FUSEはユーザースペースでファイルシステムを作れるようにするもで、有名所ではGmilFSやsshfsがあります。    curlftpfsを使えば、別途FTP接続をしなくても、FTPがディレクトリとしてマウントできてしまいます。
&#160;
CentOS：インストール
# yum install curlftpfs&#160; でOK(rpmfogegが要るかも)
&#160;
○マウント方法
# curlftpfs -o user=ユーザ名:パスワード ftp://アドレス/ マウントポイント
&#160;
○アンマウント方法
# fusermount -u マウントポイント
# umount&#160; マウントポイント
&#160;
※ 使ってる時にうまくアンマウントできない時がありました。そんな時は
# fusermount -uz マウントポイント
&#160;
わざわざFTPコマンド打たなくても、FTPがディレクトリとして扱えるので大変便利
&#160;
&#160;
autofsと組み合わせてみる
&#160;
sshfsの設定を参考に/etc/auto.misc に書いてみる
# sshfs
test1 -fstype=fuse,rw :sshfs\#username@host\:    #curlftpfs 
test2 -fstype=fuse,rw :curlftpfs\#host\:
&#160;
しかし、sshはマウントできたけど、ftpはマウントできない。
Ubuntuのフォーラムにも同じような内容がありました。
http://ubuntuforums.org/showthread.php?t=830419
&#160;
autofsにてcurlftpfsを使うには、別途マウント/アンマウント用のスクリプトが必要なようです。
http://lukaszproszek.blogspot.com/2008/05/automounting-ftpfs-using-curlftpfs-and.html
&#160;
上記を参考に、自動マウント完了です。
]]></description>
			<content:encoded><![CDATA[<p>もう3月も終わりですが、寒い日が続きますね。昨日は江坂に雪がふってました。岩本@サーバー事業部です。</p>
<p>&#160;</p>
<p>いつも仮想化ネタ(そんなに書いてもいないですが)FTPをファイルシステムとしてマウントする方法のご紹介</p>
<p>&#160;</p>
<p>FUSEはユーザースペースでファイルシステムを作れるようにするもで、有名所ではGmilFSやsshfsがあります。    <br />curlftpfsを使えば、別途FTP接続をしなくても、FTPがディレクトリとしてマウントできてしまいます。</p>
<p>&#160;</p>
<p>CentOS：インストール</p>
<p># yum install curlftpfs&#160; でOK(rpmfogegが要るかも)</p>
<p>&#160;</p>
<p>○マウント方法</p>
<p># curlftpfs -o user=ユーザ名:パスワード <a href="ftp://アドレス/">ftp://アドレス/</a> マウントポイント</p>
<p>&#160;</p>
<p>○アンマウント方法</p>
<p># fusermount -u マウントポイント</p>
<p># umount&#160; マウントポイント</p>
<p>&#160;</p>
<p>※ 使ってる時にうまくアンマウントできない時がありました。そんな時は</p>
<p># fusermount -uz マウントポイント</p>
<p>&#160;</p>
<p>わざわざFTPコマンド打たなくても、FTPがディレクトリとして扱えるので大変便利</p>
<p>&#160;</p>
<p>&#160;</p>
<p>autofsと組み合わせてみる</p>
<p>&#160;</p>
<p>sshfsの設定を参考に/etc/auto.misc に書いてみる</p>
<p># sshfs</p>
<p>test1 -fstype=fuse,rw :sshfs\#username@host\:    <br />#curlftpfs </p>
<p>test2 -fstype=fuse,rw :curlftpfs\#host\:</p>
<p>&#160;</p>
<p>しかし、sshはマウントできたけど、ftpはマウントできない。</p>
<p>Ubuntuのフォーラムにも同じような内容がありました。</p>
<p><a title="http://ubuntuforums.org/showthread.php?t=830419" href="http://ubuntuforums.org/showthread.php?t=830419">http://ubuntuforums.org/showthread.php?t=830419</a></p>
<p>&#160;</p>
<p>autofsにてcurlftpfsを使うには、別途マウント/アンマウント用のスクリプトが必要なようです。</p>
<p><a title="http://lukaszproszek.blogspot.com/2008/05/automounting-ftpfs-using-curlftpfs-and.html" href="http://lukaszproszek.blogspot.com/2008/05/automounting-ftpfs-using-curlftpfs-and.html">http://lukaszproszek.blogspot.com/2008/05/automounting-ftpfs-using-curlftpfs-and.html</a></p>
<p>&#160;</p>
<p>上記を参考に、自動マウント完了です。</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.infoalive.com/uncategorized/187/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>infoalive 研究用blogをスタートしました。</title>
		<link>http://labs.infoalive.com/uncategorized/3</link>
		<comments>http://labs.infoalive.com/uncategorized/3#comments</comments>
		<pubDate>Fri, 30 Jan 2009 06:04:07 +0000</pubDate>
		<dc:creator>tanaka</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://labs.infoalive.com/?p=3</guid>
		<description><![CDATA[各種アイディアやTips、実験的プロダクトを紹介していく予定です。
]]></description>
			<content:encoded><![CDATA[<p>各種アイディアやTips、実験的プロダクトを紹介していく予定です。</p>
]]></content:encoded>
			<wfw:commentRss>http://labs.infoalive.com/uncategorized/3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
