<?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>PHPプログラマのバリ・ポジ情報ブログ &#187; ubuntu</title>
	<atom:link href="http://blog.veryposi.info/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.veryposi.info</link>
	<description>PHP,JavaScriptやサーバーの設定などのプログラミングに関する情報をバリ・ポジティブに発信しているプログラマのブログ、『バリ・ポジ』</description>
	<lastBuildDate>Thu, 10 May 2012 06:23:01 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>screenの設定</title>
		<link>http://blog.veryposi.info/server/server-setup/screen-screenrc/</link>
		<comments>http://blog.veryposi.info/server/server-setup/screen-screenrc/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 08:47:53 +0000</pubDate>
		<dc:creator>gensan</dc:creator>
				<category><![CDATA[設定]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.veryposi.info/?p=1158</guid>
		<description><![CDATA[unixを使用しているとscreenを使用している人が多いと思います。 自分が使っている.screenrcをさらします。 どっかで拾ってきたのだったと思います。 1 2 3 4 5 escape ^Tt startup_ [...]]]></description>
			<content:encoded><![CDATA[<p>unixを使用しているとscreenを使用している人が多いと思います。</p>
<p>自分が使っている.screenrcをさらします。</p>
<p>どっかで拾ってきたのだったと思います。</p>
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
2
3
4
5
</pre>
</td>
<td class="code">
<pre class="bash">
escape ^Tt
startup_message off
defscrollback <span style="color: rgb(0, 0, 0);">10000</span>
msgwait <span style="color: rgb(0, 0, 0);">10</span>
hardstatus alwayslastline <span style="color: rgb(255, 0, 0);">&quot;%{= wk} %-w%{=bu dr}%n %t%{-}%+w %= %{=b wb}%y/%m/%d %{=b wb}%c&quot;</span></pre>
</td>
</tr>
</tbody>
</table>
</div>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.veryposi.info/server/server-setup/screen-screenrc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UbuntuのApacheでmod_rewriteを有効にする方法</title>
		<link>http://blog.veryposi.info/server/server-setup/ubuntu-apache-mod_rewrite/</link>
		<comments>http://blog.veryposi.info/server/server-setup/ubuntu-apache-mod_rewrite/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 05:39:14 +0000</pubDate>
		<dc:creator>gensan</dc:creator>
				<category><![CDATA[設定]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.veryposi.info/?p=1057</guid>
		<description><![CDATA[UbuntuにLAMP環境を構築して色々と試しているとあることに気がつきました。 &#160; mod_rewriteが有効になっていない！！ &#160; ということでmod_rewriteを有効にしました まず、 1 [...]]]></description>
			<content:encoded><![CDATA[<p>UbuntuにLAMP環境を構築して色々と試しているとあることに気がつきました。</p>
<p>&nbsp;</p>
<p><span style="background-color: rgb(255, 255, 153);"><span style="font-size: large;">mod_rewriteが有効になっていない！！</span></span></p>
<p>&nbsp;</p>
<p>ということでmod_rewriteを有効にしました<img src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/happy02.gif" alt="" /></p>
<p>まず、</p>
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
</pre>
</td>
<td class="code">
<pre class="bash"><span style="color: rgb(194, 12, 185); font-weight: bold;">sudo</span> a2enmod rewrite</pre>
</td>
</tr>
</tbody>
</table>
</div>
<p>コマンドを実行してmod_rewriteを有効化します。</p>
<p>次に「/etc/apache2/sites-enabled」の中のconfファイルのmod_rewriteを有効にしたい環境の「AllowOverride」をAllに変更する</p>
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
</pre>
</td>
<td class="code">
<pre class="div">
Listen <span style="color: rgb(204, 102, 204);">8080</span>
&nbsp;
&lt;VirtualHost *:<span style="color: rgb(204, 102, 204);">8080</span>&gt;
    ServerAdmin webmaster@localhost
&nbsp;
    DocumentRoot /home/hashizume/work/www/
    &lt;Directory /home/hashizume/work/www/&gt;
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        Order allow,deny
        allow <span style="color: rgb(0, 64, 177);">FROM</span> all
    &lt;/Directory&gt;
&nbsp;
    ErrorLog /var/log/apache2/error.log
&nbsp;
    # Possible values include: <span style="color: rgb(0, 64, 177);">DEBUG</span>, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn
&nbsp;
    CustomLog /var/log/apache2/access.log combined
&nbsp;
&lt;/VirtualHost&gt;</pre>
</td>
</tr>
</tbody>
</table>
</div>
<p>（9行目の部分ね<img src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/sign01.gif" alt="" />）</p>
<p>で、apacheの再起動を行うと。</p>
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
</pre>
</td>
<td class="code">
<pre class="bash"><span style="color: rgb(194, 12, 185); font-weight: bold;">sudo</span> /etc/init.d/apache2 restart</pre>
</td>
</tr>
</tbody>
</table>
</div>
<p>これで、mod_rewriteの有効化は完了です。</p>
<p>対象の環境で本当にmod_rewriteが有効になっているか確かめたらばっちりでした<img alt="" src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/happy01.gif" /></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.veryposi.info/server/server-setup/ubuntu-apache-mod_rewrite/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>UbuntuのＩＰアドレスをDHCPから固定IPへ変更</title>
		<link>http://blog.veryposi.info/server/server-setup/ubuntu-interfaces/</link>
		<comments>http://blog.veryposi.info/server/server-setup/ubuntu-interfaces/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 13:31:31 +0000</pubDate>
		<dc:creator>gensan</dc:creator>
				<category><![CDATA[設定]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.veryposi.info/?p=974</guid>
		<description><![CDATA[Vmware上に作ってあるＵｂｕｎｔｕがDHCPからIPアドレスを自動取得するようになっていた為、固定ＩＰになるように変更しました。 まず、「netstat」コマンドを使ってルーティングテーブルの確認をします。 1 ne [...]]]></description>
			<content:encoded><![CDATA[<p>Vmware上に作ってあるＵｂｕｎｔｕがDHCPからIPアドレスを自動取得するようになっていた為、固定ＩＰになるように変更しました。</p>
<p>まず、「netstat」コマンドを使ってルーティングテーブルの確認をします。</p>
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
</pre>
</td>
<td class="code">
<pre class="bash"><span style="color: rgb(194, 12, 185); font-weight: bold;">netstat</span> -nr</pre>
</td>
</tr>
</tbody>
</table>
</div>
<p><a href="http://blog.veryposi.info/wp-content/uploads/2009/03/netstat.png" rel="lightbox[974]"><img height="51" width="300" src="http://blog.veryposi.info/wp-content/uploads/2009/03/netstat-300x51.png" alt="netstat" title="netstat" class="aligncenter size-medium wp-image-1115" /></a></p>
<p>&nbsp;それから「ifconfig」コマンドを使ってネットワーク環境を確認します。</p>
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
</pre>
</td>
<td class="code">
<pre class="bash">
ifconfig</pre>
</td>
</tr>
</tbody>
</table>
</div>
<p><a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubutu-network.png" rel="lightbox[974]"><img height="300" width="277" class="aligncenter size-medium wp-image-975" title="ubutu-network" alt="ubutu-network" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubutu-network-277x300.png" /></a></p>
<p>/etc/network/interfaces というファイルに</p>
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
2
3
4
5
6
7
</pre>
</td>
<td class="code">
<pre class="div">
auto eth0
iface eth0 inet static
    address <span style="color: rgb(204, 102, 204);">192.168</span><span style="color: rgb(204, 102, 204);">.25</span><span style="color: rgb(204, 102, 204);">.128</span>
    netmask <span style="color: rgb(204, 102, 204);">255.255</span><span style="color: rgb(204, 102, 204);">.255</span><span style="color: rgb(204, 102, 204);">.0</span>
    network <span style="color: rgb(204, 102, 204);">192.168</span><span style="color: rgb(204, 102, 204);">.25</span><span style="color: rgb(204, 102, 204);">.0</span>
    broadcast <span style="color: rgb(204, 102, 204);">192.168</span><span style="color: rgb(204, 102, 204);">.25</span><span style="color: rgb(204, 102, 204);">.255</span>
    gateway <span style="color: rgb(204, 102, 204);">192.168</span><span style="color: rgb(204, 102, 204);">.25</span><span style="color: rgb(204, 102, 204);">.2</span></pre>
</td>
</tr>
</tbody>
</table>
</div>
<p>この内容で設定を追加しました。</p>
<p>そして、</p>
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
</pre>
</td>
<td class="code">
<pre class="bash"><span style="color: rgb(194, 12, 185); font-weight: bold;">sudo</span> /etc/init.d/networking restart</pre>
</td>
</tr>
</tbody>
</table>
</div>
<p>とコマンドを実行してネットワークをリスタート<img src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/enter.gif" alt="" /></p>
<p>これで無事固定ＩＰになりました。</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.veryposi.info/server/server-setup/ubuntu-interfaces/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UbuntuへのLAMP環境の構築</title>
		<link>http://blog.veryposi.info/programing/php/ubuntu-apache-mysql-php/</link>
		<comments>http://blog.veryposi.info/programing/php/ubuntu-apache-mysql-php/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 07:52:45 +0000</pubDate>
		<dc:creator>gensan</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[サーバー]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.veryposi.info/?p=870</guid>
		<description><![CDATA[今度は、UbuntuにLAMPの環境を構築します。 まず、 1 apt-cache search [正規表現でのパッケージの検索] をつかってインストールするべきパッケージを検索しながら Apache MySQL PHP [...]]]></description>
			<content:encoded><![CDATA[<p>今度は、UbuntuにLAMPの環境を構築します。</p>
<p>まず、</p>
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
</pre>
</td>
<td class="code">
<pre class="php">
apt-cache search <span style="color: rgb(102, 204, 102);">[</span>正規表現でのパッケージの検索<span style="color: rgb(102, 204, 102);">]</span></pre>
</td>
</tr>
</tbody>
</table>
</div>
<p>をつかってインストールするべきパッケージを検索<img src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/eye.gif" alt="" />しながら</p>
<ul>
<li>Apache</li>
<li>MySQL</li>
<li>PHP</li>
</ul>
<p>のインストールをしていきます。</p>
<p>&nbsp;</p>
<h3>コマンドラインPHPのインストール</h3>
<ol>
<li>以下のコマンドを実行しコマンドライン版のPHPをインストールしてみる。
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
</pre>
</td>
<td class="code">
<pre class="bash"><span style="color: rgb(194, 12, 185); font-weight: bold;">sudo</span> apt-get <span style="color: rgb(194, 12, 185); font-weight: bold;">install</span> php5-cli</pre>
</td>
</tr>
</tbody>
</table></div>
</li>
<li>インストールが始まり自動的にインストール完了します。</li>
</ol>
<p>ためしにプログラムを作成して動かしてみましょう<img alt="" src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/up.gif" /></p>
<p>単純なプログラムを作ります。</p>
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
2
3
</pre>
</td>
<td class="code">
<pre class="php"><span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?php</span>
    <a href="http://www.php.net/echo"><span style="color: rgb(0, 0, 102);">echo</span></a> <span style="color: rgb(255, 0, 0);">&quot;test<span style="color: rgb(0, 0, 153); font-weight: bold;">\n</span>&quot;</span>;
<span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span></pre>
</td>
</tr>
</tbody>
</table>
</div>
<p>動かしてみました。</p>
<p><a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu-lamp-02.png" rel="lightbox[870]"><img height="42" width="300" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu-lamp-02-300x42.png" alt="ubuntu-lamp-02" title="ubuntu-lamp-02" class="aligncenter size-medium wp-image-874" /></a></p>
<p>ちゃんと動きました。これでコマンドライン版のPHPはインストール完了です。</p>
<h3>&nbsp;MySQLをインストールしよう！！</h3>
<p>今度は、MySQLのインストールです。</p>
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
</pre>
</td>
<td class="code">
<pre class="bash"><span style="color: rgb(194, 12, 185); font-weight: bold;">sudo</span> apt-get <span style="color: rgb(194, 12, 185); font-weight: bold;">install</span> mysql-server<span style="color: rgb(0, 0, 0);">-5.0</span></pre>
</td>
</tr>
</tbody>
</table>
</div>
<p>このコマンドを実行するとMySQLのサーバーがインストールが始まります。</p>
<p>依存関係でMySQLのクライアントのパッケージも同時にインストールされるようです。</p>
<p><a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu-lamp-03.png" rel="lightbox[870]"><img height="87" width="300" class="aligncenter size-medium wp-image-878" title="ubuntu-lamp-03" alt="ubuntu-lamp-03" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu-lamp-03-300x87.png" /></a></p>
<p>&nbsp;インストールが終わったので試しにmysqlに接続してみました<img alt="" src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/eye.gif" />見事接続成功<img alt="" src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/happy01.gif" /><img alt="" src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/scissors.gif" /></p>
<p><a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu-lamp-04.png" rel="lightbox[870]"><img height="72" width="300" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu-lamp-04-300x72.png" alt="ubuntu-lamp-04" title="ubuntu-lamp-04" class="aligncenter size-medium wp-image-884" /></a></p>
<p>これで、MySQLもインストール完了です<img alt="" src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/ok.gif" /></p>
<h3>Apacheのインストール</h3>
<p>次はapacheのインストールです。</p>
<ol>
<li>以下のコマンドを実行してApacheをインストールします。
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
</pre>
</td>
<td class="code">
<pre class="bash"><span style="color: rgb(194, 12, 185); font-weight: bold;">sudo</span> apt-get <span style="color: rgb(194, 12, 185); font-weight: bold;">install</span> apache2</pre>
</td>
</tr>
</tbody>
</table></div>
</li>
</ol>
<p>&nbsp;Apacheのインストールが完了します<img src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/end.gif" alt="" /></p>
<p>試しにApacheが起動しているかWebブラウザでアクセスしてみます。</p>
<p><a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu-lamp-05.png" rel="lightbox[870]"><img height="87" width="300" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu-lamp-05-300x87.png" alt="ubuntu-lamp-05" title="ubuntu-lamp-05" class="aligncenter size-medium wp-image-885" /></a></p>
<p>見事成功<img alt="" src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/sign03.gif" /></p>
<p>これでApacheのインストールは成功です。</p>
<h3>&nbsp;ApacheにPHPのモジュールをインストール</h3>
<ol>
<li>
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
</pre>
</td>
<td class="code">
<pre class="bash"><span style="color: rgb(194, 12, 185); font-weight: bold;">sudo</span> apt-get <span style="color: rgb(194, 12, 185); font-weight: bold;">install</span> libapache2-mod-php5</pre>
</td>
</tr>
</tbody>
</table></div>
<p>PHPのapacheモジュールのインストールを行います。</p>
</li>
</ol>
<p>しばらくするとインストールが完了、さぁインストールは成功か<img src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/sign02.gif" alt="" />試してみたいと思います。</p>
<p>&nbsp;</p>
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
2
3
</pre>
</td>
<td class="code">
<pre class="php"><span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?php</span>
<a href="http://www.php.net/phpinfo"><span style="color: rgb(0, 0, 102);">phpinfo</span></a><span style="color: rgb(102, 204, 102);">(</span><span style="color: rgb(102, 204, 102);">)</span>;
<span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span></pre>
</td>
</tr>
</tbody>
</table>
</div>
<p>このファイルを「/var/www/」にinfo.phpという名前で置いてみる。そしてブラウザでアクセス・・・。</p>
<p>info.phpのダウンロードが始まった<img alt="" src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/sweat01.gif" />う～ん、ぁあ～apacheを再起動してなかった。</p>
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
</pre>
</td>
<td class="code">
<pre class="bash"><span style="color: rgb(194, 12, 185); font-weight: bold;">sudo</span> /etc/init.d/apache2 restart</pre>
</td>
</tr>
</tbody>
</table>
</div>
<p>ということで再起動してみる。</p>
<p><a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu-lamp-06.png" rel="lightbox[870]"><img height="300" width="265" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu-lamp-06-265x300.png" alt="ubuntu-lamp-06" title="ubuntu-lamp-06" class="aligncenter size-medium wp-image-888" /></a></p>
<p>でアクセスすると見事ページが開いた<img alt="" src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/happy01.gif" /><img alt="" src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/scissors.gif" /><img alt="" src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/up.gif" /></p>
<h3>PHPからDBへのアクセスのテスト</h3>
<p>最後に、PHPからDBへのアクセスをテストしてみます。</p>
<p>と思って、phpinfoの内容をみてみるとモジュールがかなり足りていない<img src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/down.gif" alt="" /><img src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/sweat02.gif" alt="" /></p>
<p>とりあえず入れていきたいと思います。</p>
<p>PHPへのMySQLへの接続モジュールのインストールです。</p>
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
</pre>
</td>
<td class="code">
<pre class="bash"><span style="color: rgb(194, 12, 185); font-weight: bold;">sudo</span> apt-get <span style="color: rgb(194, 12, 185); font-weight: bold;">install</span> php5-mysql</pre>
</td>
</tr>
</tbody>
</table>
</div>
<p>インストール完了してからapacheを再起動し、phpinfoの情報を見てみると</p>
<p>&nbsp;</p>
<p><a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu-lamp-07.png" rel="lightbox[870]"><img height="300" width="228" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu-lamp-07-228x300.png" alt="ubuntu-lamp-07" title="ubuntu-lamp-07" class="aligncenter size-medium wp-image-891" /></a></p>
<p>mysqlの情報があるこれで<img alt="" src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/ok.gif" /></p>
<p>よし、MySQLとの接続モジュールを作成してテストしてみよう<img alt="" src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/sign03.gif" /></p>
<p><a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu-lamp-08.png" rel="lightbox[870]"><img height="226" width="300" class="aligncenter size-medium wp-image-906" title="ubuntu-lamp-08" alt="ubuntu-lamp-08" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu-lamp-08-300x226.png" /></a></p>
<p>&nbsp;</p>
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
</pre>
</td>
<td class="code">
<pre class="php"><span style="color: rgb(0, 0, 0); font-weight: bold;">&lt;?php</span>
<span style="color: rgb(0, 0, 255);">$dsn</span> = <span style="color: rgb(255, 0, 0);">'mysql:dbname=veryposi;host=127.0.0.1'</span>;
<span style="color: rgb(0, 0, 255);">$user</span> = <span style="color: rgb(255, 0, 0);">'testuser'</span>;
<span style="color: rgb(0, 0, 255);">$password</span> = <span style="color: rgb(255, 0, 0);">'password'</span>;
&nbsp;
try <span style="color: rgb(102, 204, 102);">{</span>
    <span style="color: rgb(0, 0, 255);">$dbh</span> = <span style="color: rgb(0, 0, 0); font-weight: bold;">new</span> PDO<span style="color: rgb(102, 204, 102);">(</span><span style="color: rgb(0, 0, 255);">$dsn</span>, <span style="color: rgb(0, 0, 255);">$user</span>, <span style="color: rgb(0, 0, 255);">$password</span><span style="color: rgb(102, 204, 102);">)</span>;
<span style="color: rgb(102, 204, 102);">}</span> catch <span style="color: rgb(102, 204, 102);">(</span>PDOException <span style="color: rgb(0, 0, 255);">$e</span><span style="color: rgb(102, 204, 102);">)</span> <span style="color: rgb(102, 204, 102);">{</span>
    <a href="http://www.php.net/echo"><span style="color: rgb(0, 0, 102);">echo</span></a> <span style="color: rgb(255, 0, 0);">'Connection failed: '</span> . <span style="color: rgb(0, 0, 255);">$e</span>-&gt;<span style="color: rgb(0, 102, 0);">getMessage</span><span style="color: rgb(102, 204, 102);">(</span><span style="color: rgb(102, 204, 102);">)</span>;
<span style="color: rgb(102, 204, 102);">}</span>
<span style="color: rgb(0, 0, 255);">$sth</span> = <span style="color: rgb(0, 0, 255);">$dbh</span>-&gt;<span style="color: rgb(0, 102, 0);">prepare</span><span style="color: rgb(102, 204, 102);">(</span><span style="color: rgb(255, 0, 0);">'SELECT * FROM test'</span><span style="color: rgb(102, 204, 102);">)</span>;
<span style="color: rgb(0, 0, 255);">$sth</span>-&gt;<span style="color: rgb(0, 102, 0);">execute</span><span style="color: rgb(102, 204, 102);">(</span><span style="color: rgb(102, 204, 102);">)</span>;
<span style="color: rgb(0, 0, 255);">$result</span> = <span style="color: rgb(0, 0, 255);">$sth</span>-&gt;<span style="color: rgb(0, 102, 0);">fetchAll</span><span style="color: rgb(102, 204, 102);">(</span><span style="color: rgb(102, 204, 102);">)</span>;
<a href="http://www.php.net/print_r"><span style="color: rgb(0, 0, 102);">print_r</span></a><span style="color: rgb(102, 204, 102);">(</span><span style="color: rgb(0, 0, 255);">$result</span><span style="color: rgb(102, 204, 102);">)</span>;
<span style="color: rgb(0, 0, 0); font-weight: bold;">?&gt;</span></pre>
</td>
</tr>
</tbody>
</table>
</div>
<p>このプログラムをブラウザで実行してみる、と</p>
<p><a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu-lamp-09.png" rel="lightbox[870]"><img height="50" width="300" class="aligncenter size-medium wp-image-908" title="ubuntu-lamp-09" alt="ubuntu-lamp-09" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu-lamp-09-300x50.png" /></a></p>
<p>ちゃんと起動しました。</p>
<p>これで一通りのLAMP環境がUbuntuに設定できました<img src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/up.gif" alt="" /><img src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/up.gif" alt="" /><img src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/scissors.gif" alt="" /></p>
<p>たりないモジュールはその都度追加していきます。</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.veryposi.info/programing/php/ubuntu-apache-mysql-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>UbuntuへのSSHサーバの設定</title>
		<link>http://blog.veryposi.info/server/ubuntu-openssh-server/</link>
		<comments>http://blog.veryposi.info/server/ubuntu-openssh-server/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 07:37:02 +0000</pubDate>
		<dc:creator>gensan</dc:creator>
				<category><![CDATA[サーバー]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.veryposi.info/?p=867</guid>
		<description><![CDATA[Ubuntuにまずは、SSHサーバーをインストールしてみます。 1 sudo apt-get install openssh-server &#160;このコマンド実行するとSSHサーバーがインストールされます。 &#038;nb [...]]]></description>
			<content:encoded><![CDATA[<p>Ubuntuにまずは、SSHサーバーをインストールしてみます。</p>
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
</pre>
</td>
<td class="code">
<pre class="bash"><span style="color: rgb(194, 12, 185); font-weight: bold;">sudo</span> apt-get <span style="color: rgb(194, 12, 185); font-weight: bold;">install</span> openssh-server</pre>
</td>
</tr>
</tbody>
</table>
</div>
<p>&nbsp;このコマンド実行するとSSHサーバーがインストールされます。</p>
<p>&nbsp;これでしばらく待つ<img src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/soon.gif" alt="" />するとSSHサーバーのインストールが始まって終了<img src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/sign01.gif" alt="" /></p>
<p>これでインストール完了、</p>
<p>試しに、Ubuntu上で</p>
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
</pre>
</td>
<td class="code">
<pre class="bash"><span style="color: rgb(194, 12, 185); font-weight: bold;">ssh</span> localhost</pre>
</td>
</tr>
</tbody>
</table>
</div>
<p>とコマンドを実行してみると、見事SSH成功<img src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/scissors.gif" alt="" /></p>
<p>今度は、WindowsからPuTTYを使用してSSH接続を試みてみる<img src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/catface.gif" alt="" />と、つながった<img src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/scissors.gif" alt="" /></p>
<p>これで、Windows上からUbuntuを操作できる環境ができました<img src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/note.gif" alt="" />デフォルト設定なのでセキュリティもくそもないですが・・・。</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.veryposi.info/server/ubuntu-openssh-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VmwareへのUbuntuのインストール方法</title>
		<link>http://blog.veryposi.info/server/vmware-ubuntu-install/</link>
		<comments>http://blog.veryposi.info/server/vmware-ubuntu-install/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 06:59:03 +0000</pubDate>
		<dc:creator>gensan</dc:creator>
				<category><![CDATA[サーバー]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://blog.veryposi.info/?p=815</guid>
		<description><![CDATA[VmwareにUbuntuをインストールする時の手順をまとめておきます。 Ubuntuをインストールします！！ Ubuntuをダウンロードしてくる。 ダウンロード先はこちらのサイトです。 ダウンロードページよりISOイメ [...]]]></description>
			<content:encoded><![CDATA[<p>VmwareにUbuntuをインストールする時の手順をまとめておきます。</p>
<h3>Ubuntuをインストールします！！</h3>
<ol>
<li>Ubuntuをダウンロードしてくる。<br />
    ダウンロード先は<a href="http://www.ubuntulinux.jp/">こちら</a>のサイトです。<br />
    <a href="http://www.ubuntulinux.jp/products/JA-Localized/download">ダウンロードページ</a>よりISOイメージのダウンロードしてきてください。<br />
    ・ubuntu-ja-8.10-desktop-i386.iso<br />
    がダウンロード対象ファイルになります。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_17.png" rel="lightbox[815]"><img height="232" width="300" class="aligncenter size-medium wp-image-846" title="ubuntu_00" alt="ubuntu_00" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_17-300x232.png" /></a></li>
<li>Vmwareを起動し、「ファイル」&rArr;「新規」&rArr;「仮想マシン」を選択します。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_01.png" rel="lightbox[815]"><img height="170" width="300" class="aligncenter size-medium wp-image-822" title="ubuntu_01" alt="ubuntu_01" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_01-300x170.png" /></a></li>
<li>新規仮想マシーンウィザードが起動します。<br />
    標準を選択したまま、「次へ」ボタンを押下します。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_02.png" rel="lightbox[815]"><img height="221" width="300" class="aligncenter size-medium wp-image-823" title="ubuntu_02" alt="ubuntu_02" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_02-300x221.png" /></a></li>
<li>インストール元に、「インストーラディスクイメージファイル」を選択し参照ボタンを押下して1.でダウンロードしたisoファイルを選択します。<br />
    選択したら次へボタンを押下します。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_03.png" rel="lightbox[815]"><img height="300" width="292" class="aligncenter size-medium wp-image-825" title="ubuntu_03" alt="ubuntu_03" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_03-292x300.png" /></a></li>
<li>仮想マシンの格納場所を選択してから次へボタンを押下します。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_04.png" rel="lightbox[815]"><img height="217" width="300" class="aligncenter size-medium wp-image-826" title="ubuntu_04" alt="ubuntu_04" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_04-300x217.png" /></a></li>
<li>ディスク容量の指定をして次へボタンを押下します。<br />
    デフォルトの8GBのままで十分です。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_05.png" rel="lightbox[815]"><img height="219" width="300" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_05-300x219.png" alt="ubuntu_05" title="ubuntu_05" class="aligncenter size-medium wp-image-828" /></a></li>
<li>今までの仮想マシンの構成が表示されますので確認してOKなら完了ボタンを押下します。 <br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_06.png" rel="lightbox[815]"><img height="218" width="300" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_06-300x218.png" alt="ubuntu_06" title="ubuntu_06" class="aligncenter size-medium wp-image-829" /></a></li>
<li>Vmwareで作成した仮想マシンが起動します。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_07.png" rel="lightbox[815]"><img height="234" width="300" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_07-300x234.png" alt="ubuntu_07" title="ubuntu_07" class="aligncenter size-medium wp-image-830" /></a></li>
<li>&nbsp;下キーを押下して「Ubuntuをインストール」選択します。<br />
    （白色に反転している項目が選択されています）<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_08.png" rel="lightbox[815]"><img height="238" width="300" class="aligncenter size-medium wp-image-832" title="ubuntu_08" alt="ubuntu_08" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_08-300x238.png" /></a></li>
<li>Ubuntuが起動しますのでしばらくお待ちください。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_09.png" rel="lightbox[815]"><img height="236" width="300" class="aligncenter size-medium wp-image-833" title="ubuntu_09" alt="ubuntu_09" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_09-300x236.png" /></a></li>
<li>以下の画面が表示されますのでインストールする言語を選択して進むボタンを押下して下さい。<br />
    日本語を選択したままでOKです。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_10.png" rel="lightbox[815]"><img height="234" width="300" class="aligncenter size-medium wp-image-834" title="ubuntu_10" alt="ubuntu_10" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_10-300x234.png" /></a></li>
<li>時刻を選択します、「Tokyo」を選択し、進むを押下します。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_11.png" rel="lightbox[815]"><img height="235" width="300" class="aligncenter size-medium wp-image-835" title="ubuntu_11" alt="ubuntu_11" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_11-300x235.png" /></a></li>
<li>キーボードレイアウトを選択します。<br />
    Japanを選択します。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_12.png" rel="lightbox[815]"><img height="235" width="300" class="aligncenter size-medium wp-image-836" title="ubuntu_12" alt="ubuntu_12" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_12-300x235.png" /></a></li>
<li>ディスクを全体を使うを選択したまま次へを押下します。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_13.png" rel="lightbox[815]"><img height="235" width="300" class="aligncenter size-medium wp-image-838" title="ubuntu_13" alt="ubuntu_13" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_13-300x235.png" /></a></li>
<li>ログインユーザーを作成します。<br />
    ログインユーザー名とパスワード、コンピューター名を設定します。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_14.png" rel="lightbox[815]"><img height="235" width="300" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_14-300x235.png" alt="ubuntu_14" title="ubuntu_14" class="aligncenter size-medium wp-image-840" /></a></li>
<li>以下の画面が表示されますので、インストールボタンを押下します。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_15.png" rel="lightbox[815]"><img height="235" width="300" class="aligncenter size-medium wp-image-842" title="ubuntu_15" alt="ubuntu_15" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_15-300x235.png" /></a></li>
<li>インストールが始まりますので完了するまでしばらくお待ちください。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_16.png" rel="lightbox[815]"><img height="235" width="300" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_16-300x235.png" alt="ubuntu_16" title="ubuntu_16" class="aligncenter size-medium wp-image-844" /></a></li>
<li>&nbsp;インストールが完了したら以下の画面になりますので、画面の指示にしたがい、すぐに再起動するボタンを押下してください。<br />
    これでインストールは、完了です。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_18.png" rel="lightbox[815]"><img height="235" width="300" class="aligncenter size-medium wp-image-849" title="ubuntu_18" alt="ubuntu_18" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_18-300x235.png" /></a></li>
<li>ログイン画面が表示されますので、15.にて設定したユーザー名、パスワードを使用してubuntuにログインしてください。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_19.png" rel="lightbox[815]"><img height="235" width="300" class="aligncenter size-medium wp-image-850" title="ubuntu_19" alt="ubuntu_19" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_19-300x235.png" /></a></li>
<li>ubuntuが起動します。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_20.png" rel="lightbox[815]"><img height="235" width="300" class="aligncenter size-medium wp-image-851" title="ubuntu_20" alt="ubuntu_20" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_20-300x235.png" /></a></li>
</ol>
<h3>続いてVmware Toolsのインストールを行いましょう！！</h3>
<ol>
<li>&nbsp;Vmwareのメニューから「VM」&rArr;「VMware Toolsのインストール」を実行します。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_21.png" rel="lightbox[815]"><img height="217" width="300" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_21-300x217.png" alt="ubuntu_21" title="ubuntu_21" class="aligncenter size-medium wp-image-853" /></a></li>
<li>ファイル・ブラウザが開くので「VMwareTools-7.8.4-126130.tar.gz」をダブルクリックします。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_22.png" rel="lightbox[815]"><img height="235" width="300" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_22-300x235.png" alt="ubuntu_22" title="ubuntu_22" class="aligncenter size-medium wp-image-854" /></a></li>
<li>圧縮ファイルが開きますので、その中の「vmware-tools-distrib」をデスクトップに展開します。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_25.png" rel="lightbox[815]"><img height="235" width="300" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_25-300x235.png" alt="ubuntu_25" title="ubuntu_25" class="aligncenter size-medium wp-image-855" /></a></li>
<li>圧縮ファイルがデスクトップに展開されますので、<br />
    ubuntuのメニューから「アプリケーション」&rArr;「アクセサリ」&rArr;「端末」を選択して端末を起動します。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_30.png" rel="lightbox[815]"><img height="235" width="300" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_30-300x235.png" alt="ubuntu_30" title="ubuntu_30" class="aligncenter size-medium wp-image-856" /></a></li>
<li>端末が開いたら、以下のコマンドを実行して展開した圧縮ファイルのフォルダまで移動します。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_31.png" rel="lightbox[815]"><img height="235" width="300" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_31-300x235.png" alt="ubuntu_31" title="ubuntu_31" class="aligncenter size-medium wp-image-857" /></a></p>
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
2
</pre>
</td>
<td class="code">
<pre class="bash"><span style="color: rgb(122, 8, 116); font-weight: bold;">cd</span> デスクトップ
<span style="color: rgb(122, 8, 116); font-weight: bold;">cd</span> vmware-tools-distrib</pre>
</td>
</tr>
</tbody>
</table></div>
</li>
<li>次に、vmware-install.plを実行します。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_33.png" rel="lightbox[815]"><img height="235" width="300" class="aligncenter size-medium wp-image-863" title="ubuntu_33" alt="ubuntu_33" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_33-300x235.png" /></a></p>
<div class="syntax">
<table>
<tbody>
<tr>
<td class="line_numbers">
<pre>
1
</pre>
</td>
<td class="code">
<pre class="bash"><span style="color: rgb(194, 12, 185); font-weight: bold;">sudo</span> ./vmware-<span style="color: rgb(194, 12, 185); font-weight: bold;">install</span>.pl</pre>
</td>
</tr>
</tbody>
</table></div>
<p>
    パスワードの入力を要求されますので、ログイン時のパスワードを入力してください。</li>
<li>vmware-toolsのインストールが始まりますのでインストール中に複数回の入力を求められますのでEnterキーを押下してください。<br />
    （かなりの数の入力を求められると思います）<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_34.png" rel="lightbox[815]"><img height="235" width="300" class="aligncenter size-medium wp-image-864" title="ubuntu_34" alt="ubuntu_34" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_34-300x235.png" /></a></li>
<li>以下の内容のようになったらインストール完了です。<br />
    <a href="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_35.png" rel="lightbox[815]"><img height="217" width="300" class="aligncenter size-medium wp-image-865" title="ubuntu_35" alt="ubuntu_35" src="http://blog.veryposi.info/wp-content/uploads/2009/03/ubuntu_35-300x217.png" /></a><br />
    &nbsp;</li>
</ol>
<p>&nbsp;これでVMware上へのUbuntuのインストールと、VMware Toolsのインストール作業が完了です。</p>
<p>Ubuntuで色々と試してみてください<img src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/happy01.gif" alt="" /><img src="http://blog.veryposi.info/wp-content/plugins/fckeditor-for-wordpress-plugin/smiles/typepad/scissors.gif" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.veryposi.info/server/vmware-ubuntu-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: blog.veryposi.info @ 2026-04-09 21:38:32 -->