<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.iex3.info/~d/styles/itemcontent.css"?><rss 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" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Untitled Documents.</title>
	
	<link>http://www.iex3.info</link>
	<description>とあるひきこもりプログラマの備忘目録。</description>
	<lastBuildDate>Tue, 31 Aug 2010 05:11:25 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.iex3.info/feed" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.iex3.info/UntitledDocuments" /><feedburner:info uri="untitleddocuments" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>【さくらのVPS】初期設定をしてみた</title>
		<link>http://feeds.iex3.info/~r/UntitledDocuments/~3/G_-CiR5GTFU/1008</link>
		<comments>http://www.iex3.info/archives/1008#comments</comments>
		<pubDate>Sun, 29 Aug 2010 01:55:23 +0000</pubDate>
		<dc:creator>kimikato</dc:creator>
				<category><![CDATA[さくらインターネット]]></category>
		<category><![CDATA[さくらのVPS]]></category>

		<guid isPermaLink="false">http://www.iex3.info/?p=1008</guid>
		<description><![CDATA[
	この記事の所要時間： 約 16分26秒

「さくらのVPS」のアカウントを受け取った状態は、CentOS 5.5をインストールした直後と同じ状態なので、ある程度設定する必要があります。
ここでは、rootのパスワード [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/PSGDdu_-iajgJxajMl22X8MM83M/0/da"><img src="http://feedads.g.doubleclick.net/~a/PSGDdu_-iajgJxajMl22X8MM83M/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/PSGDdu_-iajgJxajMl22X8MM83M/1/da"><img src="http://feedads.g.doubleclick.net/~a/PSGDdu_-iajgJxajMl22X8MM83M/1/di" border="0" ismap="true"></img></a></p><div class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Fwww.iex3.info%2Farchives%2F1008&amp;text=%E3%80%90%E3%81%95%E3%81%8F%E3%82%89%E3%81%AEVPS%E3%80%91%E5%88%9D%E6%9C%9F%E8%A8%AD%E5%AE%9A%E3%82%92%E3%81%97%E3%81%A6%E3%81%BF%E3%81%9F&amp;lang=ja&amp;count=horizontal"  class="twitter-share-button">Tweet</a></div><div style="border-top:2px dotted #ccc;border-bottom:2px dotted #ccc;padding:0.2em 0;text-align:right;font-size:small;color:#444; margin: 10px 0;">
	この記事の所要時間： <span style="font-weight:bold">約 <span style="color:#f00">16</span>分<span style="color:#f00">26</span>秒</span>
</div>
<p>「さくらのVPS」のアカウントを受け取った状態は、CentOS 5.5をインストールした直後と同じ状態なので、ある程度設定する必要があります。</p>
<p>ここでは、rootのパスワードの変更、SSHdのログイン用ユーザの作成、SSHｄの設定変更、パッケージのアップデートを行ないます。</p>
<p><span id="more-1008"></span></p>
<h3>root （管理者権限）のパスワードの変更</h3>
<p>SSHで接続せずに、<a href="http://www.iex3.info/archives/997" target="_blank">VPSコントロールパネル内のリモートコンソール</a>で接続し、パスワードを変更します。</p>
<pre class="command">
[root@ ~]# passwd
Changing password for user root.
New UNIX password:　　　　　　　← 新しいパスワードを入力します。
Retype new UNIX password:　　　← 再度、新しいパスワードを入力します。
passwd: all authentication tokens updated successfully.
[root@ ~]#
</pre>
<p>以上です。<br />
引き続き、SSHでログインするためのユーザを作成します。</p>
<h3>新たにユーザを作成する</h3>
<p>SSHではrootでのログインを禁止するために、ユーザを作成します。<br />
ここでは、「hogehoge」としておきます。</p>
<pre class="command">
[root@ ~]# useradd hogehoge
[root@ ~]# passwd hogehoge
Changing password for user hogehoge
New UNIX password:
Retype new UNIX password:
passwd: all authentication tokens updated successfully.
</pre>
<p>ユーザが追加されましたが、rootになれるユーザは管理者グループに所属するユーザのみにしたいので、管理者グループに追加します。</p>
<pre class="command">
[root@ ~]# usermod -G wheel kimikato
</pre>
<h3>rootになれるユーザを管理者グループのみとする</h3>
<pre class="command">
[root@ ~]# vi /etc/pam.d/su
#auth	required	pam_wheel.so use_uid
　　↓　行頭の "#" を消す
auth	required	pam_wheel.so use_uid
</pre>
<h3>sshの公開鍵を設置し、rootログインができないようにする</h3>
<p>ssh-keygenを行い、rootでのパスワードログインを禁止します。</p>
<pre class="command">
[root@ ~]# ssh-keygen
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
77:00:6c:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx root@xxxxxxx.sakura.ne.jp
[root@ ~]# vi /etc/ssh/sshd_config

変更前
PermitRootLogin yes

変更後
PermitRootLogin without-password
</pre>
<p>SSHdを再起動します。</p>
<pre class="command">
[root@ ~]# service sshd restart
Stopping sshd: [  OK  ]
Starting sshd: [  OK  ]
</pre>
<h3>パッケージ管理システムの設定</h3>
<p>当初は yum-updatesd が稼働していますが、ボクは好きではないので yum-cron を使います。<br />
まず、yum-updatesd を停止・削除します。<br />
その後、update して、 yum-cron をインストールします。</p>
<pre class="command">
[root@ ~]# /etc/rc.d/init.d/yum-updatesd stop
Stopping yum-updatesd:                                     [  OK  ]
[root@ ~]# yum -y remove yum-updatesd
Loaded plugins: fastestmirror
Setting up Remove Process
Resolving Dependencies
--> Running transaction check
---> Package yum-updatesd.noarch 1:0.9-2.el5 set to be erased
--> Finished Dependency Resolution

Dependencies Resolved

==========================================================================================
 Package                Arch             Version                Repository           Size
==========================================================================================
Removing:
 yum-updatesd           noarch           1:0.9-2.el5            installed            55 k

Transaction Summary
==========================================================================================
Remove        1 Package(s)
Reinstall     0 Package(s)
Downgrade     0 Package(s)

Downloading Packages:
Running rpm_check_debug
Running Transaction Test
Finished Transaction Test
Transaction Test Succeeded
Running Transaction
  Erasing        : yum-updatesd                                                       1/1

Removed:
  yum-updatesd.noarch 1:0.9-2.el5

Complete!
</pre>
<p>yum の update します。</p>
<pre class="command">
[root@ ~]# yum -y update
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * addons: ftp.iij.ad.jp
 * base: ftp.iij.ad.jp
 * extras: ftp.iij.ad.jp
 * updates: ftp.iij.ad.jp
Setting up Update Process
Resolving Dependencies
--> Running transaction check

（中略）

Updated:
  avahi.x86_64 0:0.6.16-9.el5_5
  avahi-compat-libdns_sd.x86_64 0:0.6.16-9.el5_5
  avahi-glib.x86_64 0:0.6.16-9.el5_5
  crash.x86_64 0:4.1.2-4.el5.centos.1
  db4.i386 0:4.3.29-10.el5_5.2
  db4.x86_64 0:4.3.29-10.el5_5.2
  device-mapper-multipath.x86_64 0:0.4.7-34.el5_5.4
  freetype.i386 0:2.2.1-26.el5_5
  freetype.x86_64 0:2.2.1-26.el5_5
  gdb.x86_64 0:7.0.1-23.el5_5.2
  glibc.i686 0:2.5-49.el5_5.4
  glibc.x86_64 0:2.5-49.el5_5.4
  glibc-common.x86_64 0:2.5-49.el5_5.4
  glibc-devel.x86_64 0:2.5-49.el5_5.4
  glibc-headers.x86_64 0:2.5-49.el5_5.4
  gnupg.x86_64 0:1.4.5-14.el5_5.1
  kpartx.x86_64 0:0.4.7-34.el5_5.4
  krb5-libs.i386 0:1.6.1-36.el5_5.5
  krb5-libs.x86_64 0:1.6.1-36.el5_5.5
  krb5-workstation.x86_64 0:1.6.1-36.el5_5.5
  lftp.x86_64 0:3.7.11-4.el5_5.3
  libpng.i386 2:1.2.10-7.1.el5_5.3
  libpng.x86_64 2:1.2.10-7.1.el5_5.3
  libtiff.i386 0:3.8.2-7.el5_5.5
  libtiff.x86_64 0:3.8.2-7.el5_5.5
  libvolume_id.i386 0:095-14.21.el5_5.1
  libvolume_id.x86_64 0:095-14.21.el5_5.1
  lvm2.x86_64 0:2.02.56-8.el5_5.6
  mkinitrd.i386 0:5.1.19.6-61.el5_5.2
  mkinitrd.x86_64 0:5.1.19.6-61.el5_5.2
  nash.x86_64 0:5.1.19.6-61.el5_5.2
  nfs-utils.x86_64 1:1.0.9-47.el5_5
  nscd.x86_64 0:2.5-49.el5_5.4
  nss.i386 0:3.12.6-2.el5.centos
  nss.x86_64 0:3.12.6-2.el5.centos
  nss-tools.x86_64 0:3.12.6-2.el5.centos
  openldap.i386 0:2.3.43-12.el5_5.1
  openldap.x86_64 0:2.3.43-12.el5_5.1
  pcsc-lite.x86_64 0:1.4.4-4.el5_5
  pcsc-lite-libs.x86_64 0:1.4.4-4.el5_5
  selinux-policy.noarch 0:2.4.6-279.el5_5.1
  selinux-policy-targeted.noarch 0:2.4.6-279.el5_5.1
  systemtap.x86_64 0:1.1-3.el5_5.2
  systemtap-runtime.x86_64 0:1.1-3.el5_5.2
  udev.x86_64 0:095-14.21.el5_5.1

Complete!
</pre>
<p>yum-cron をインストールします。</p>
<pre class="command">
[root@ ~]# yum -y install yum-cron
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * addons: ftp.iij.ad.jp
 * base: ftp.iij.ad.jp
 * extras: ftp.iij.ad.jp
 * updates: ftp.iij.ad.jp
addons                                                             |  951 B     00:00
base                                                               | 2.1 kB     00:00
extras                                                             | 2.1 kB     00:00
updates                                                            | 1.9 kB     00:00
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package yum-cron.noarch 0:0.6-1.el5.centos set to be updated
--> Processing Dependency: yum-downloadonly for package: yum-cron
--> Running transaction check
---> Package yum-downloadonly.noarch 0:1.1.16-14.el5.centos.1 set to be updated
--> Finished Dependency Resolution

Dependencies Resolved

==========================================================================================
 Package                 Arch          Version                        Repository     Size
==========================================================================================
Installing:
 yum-cron                noarch        0.6-1.el5.centos               extras         15 k
Installing for dependencies:
 yum-downloadonly        noarch        1.1.16-14.el5.centos.1         base           11 k

Transaction Summary
==========================================================================================
Install       2 Package(s)
Upgrade       0 Package(s)

Total download size: 26 k
Downloading Packages:
(1/2): yum-downloadonly-1.1.16-14.el5.centos.1.noarch.rpm          |  11 kB     00:00
(2/2): yum-cron-0.6-1.el5.centos.noarch.rpm                        |  15 kB     00:00
------------------------------------------------------------------------------------------
Total                                                      74 kB/s |  26 kB     00:00
Running rpm_check_debug
Running Transaction Test
Finished Transaction Test
Transaction Test Succeeded
Running Transaction
  Installing     : yum-downloadonly                                                   1/2
  Installing     : yum-cron                                                           2/2

Installed:
  yum-cron.noarch 0:0.6-1.el5.centos

Dependency Installed:
  yum-downloadonly.noarch 0:1.1.16-14.el5.centos.1

Complete!
</pre>
<p>yum-cron を起動し、自動起動の設定をします。</p>
<pre class="command">
[root@ ~]# /etc/rc.d/init.d/yum-cron start
Enabling nightly yum update:                               [  OK  ]
[root@ ~]# chkconfig yum-cron on
</pre>
<h3>root宛メールの宛先を転送する</h3>
<p>root宛のメールを普段使用しているメールアドレスへ転送します。</p>
<pre class="command">
[root@ ~]# sed -i '/^root:/d' /etc/aliases
[root@ ~]# echo "root: hogehoge@iex3.info" >> /etc/aliases
[root@ ~]# newaliases
/etc/aliases: 77 aliases, longest 16 bytes, 785 bytes total
</pre>
<p>設定したメールアドレスへ転送されるかテストします。</p>
<pre class="command">
[root@ ~]# echo test | mail root
</pre>
<p>以上で、初期設定になります。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iex3.info/archives/1008/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.iex3.info/archives/1008" />
	<feedburner:origLink>http://www.iex3.info/archives/1008</feedburner:origLink></item>
		<item>
		<title>岡崎市中央図書館 館長「了解求めないアクセスが問題」</title>
		<link>http://feeds.iex3.info/~r/UntitledDocuments/~3/tzDwwdmSIn4/1011</link>
		<comments>http://www.iex3.info/archives/1011#comments</comments>
		<pubDate>Sun, 22 Aug 2010 11:47:02 +0000</pubDate>
		<dc:creator>kimikato</dc:creator>
				<category><![CDATA[ニュース]]></category>
		<category><![CDATA[librahack]]></category>
		<category><![CDATA[岡崎市立中央図書館事件]]></category>

		<guid isPermaLink="false">http://www.iex3.info/?p=1011</guid>
		<description><![CDATA[
	この記事の所要時間： 約 1分19秒


　愛知県岡崎市立図書館にサイバー攻撃をしかけたとして図書館が被害届を出し、男性（３９）が逮捕され、不起訴になった問題で、大羽良・同館長は２１日、同市役所で報道陣に対し、「（男 [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/zg4CX9gnxcPj25yjMzPFWl-1LLc/0/da"><img src="http://feedads.g.doubleclick.net/~a/zg4CX9gnxcPj25yjMzPFWl-1LLc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/zg4CX9gnxcPj25yjMzPFWl-1LLc/1/da"><img src="http://feedads.g.doubleclick.net/~a/zg4CX9gnxcPj25yjMzPFWl-1LLc/1/di" border="0" ismap="true"></img></a></p><div class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Fwww.iex3.info%2Farchives%2F1011&amp;text=%E5%B2%A1%E5%B4%8E%E5%B8%82%E4%B8%AD%E5%A4%AE%E5%9B%B3%E6%9B%B8%E9%A4%A8+%E9%A4%A8%E9%95%B7%E3%80%8C%E4%BA%86%E8%A7%A3%E6%B1%82%E3%82%81%E3%81%AA%E3%81%84%E3%82%A2%E3%82%AF%E3%82%BB%E3%82%B9%E3%81%8C%E5%95%8F%E9%A1%8C%E3%80%8D&amp;lang=ja&amp;count=horizontal"  class="twitter-share-button">Tweet</a></div><div style="border-top:2px dotted #ccc;border-bottom:2px dotted #ccc;padding:0.2em 0;text-align:right;font-size:small;color:#444; margin: 10px 0;">
	この記事の所要時間： <span style="font-weight:bold">約 <span style="color:#f00">1</span>分<span style="color:#f00">19</span>秒</span>
</div>
<blockquote cite="http://www.asahi.com/national/update/0821/NGY201008210009.html"><p>
　愛知県岡崎市立図書館にサイバー攻撃をしかけたとして図書館が被害届を出し、男性（３９）が逮捕され、不起訴になった問題で、大羽良・同館長は２１日、同市役所で報道陣に対し、「（男性の自作プログラムに）違法性がないことは知っていたが、図書館に了解を求めることなく、繰り返しアクセスしたことが問題だ」と説明した。<br />
<cite>via : <a href="http://www.asahi.com/national/update/0821/NGY201008210009.html" target="_blank">asahi.com（朝日新聞社）：図書館長「了解求めないアクセスが問題」　ＨＰ閲覧不能 &#8211; 社会</a></cite>
</p></blockquote>
<p>愛知県岡崎市立図書館館長によると、図書館に了解を求めることなく、繰り返しアクセスしたことに問題があるそうで、図書館のホームページにアクセスするのに了解を得る必要がありそうです。<br />
最悪、今回逮捕された男性と同じように逮捕ということになりうる可能性があるので注意が必要です。</p>
<p><span id="more-1011"></span></p>
<p>親切な人が申請書を作成したようなので、紹介します。<br />
<a href="http://www26.atwiki.jp/libhack" target="_blank">岡崎市立中央図書館 使い方まとめ &#8211; トップページ</a>より<br />
<a href='http://www.iex3.info/wp-content/uploads/2010/08/22b43ad5e089de577d5cbba471eb3e9d.pdf'>岡崎市立中央図書館ホームページ閲覧許可申請書</a>（PDF）</p>
<p>上記の用紙に必要事項を記入し、図書館に提出してアクセス許可を得ることにより、逮捕される危険性から回避することができるかもしれません。</p>
<p>☆連絡先☆<br />
〒444-0059　愛知県岡崎市康生通西4丁目71番地　岡崎市立中央図書館　（<a href="http://maps.google.co.jp/maps?oe=UTF-8&#038;q=%E6%84%9B%E7%9F%A5%E7%9C%8C%E5%B2%A1%E5%B4%8E%E5%B8%82%E5%BA%B7%E7%94%9F%E9%80%9A%E8%A5%BF4%E4%B8%81%E7%9B%AE71%E7%95%AA%E5%9C%B0&#038;ie=UTF8&#038;hq=&#038;hnear=%E6%84%9B%E7%9F%A5%E7%9C%8C%E5%B2%A1%E5%B4%8E%E5%B8%82%E5%BA%B7%E7%94%9F%E9%80%9A%E8%A5%BF%EF%BC%94%E4%B8%81%E7%9B%AE%EF%BC%97%EF%BC%91&#038;gl=jp&#038;ei=QQ1xTJ-EOYW-uAOkucCIAg&#038;ved=0CBkQ8gEwAA&#038;z=16&#038;brcurrent=3,0x6004bd338306ac87:0x43bee5d2f5db9a1,1" target="_blank">地図</a>）<br />
TEL：0564-23-3100（代表）<br />
FAX：0564-23-3165<br />
休館日：毎週水曜日</p>
<p><div class="amazonlink-box">
	<div class="amazonlink-image">
		<a href="http://www.amazon.co.jp/%E8%90%8C%E3%81%88%E3%82%8B%E3%82%B7%E3%83%AA%E3%83%BC%E3%82%BA-%E8%90%8C%E3%81%88%E3%82%8B%E6%B3%95%E5%BE%8B%E8%AA%AD%E6%9C%AC-%E3%83%87%E3%82%A3%E3%82%B8%E3%82%BF%E3%83%AB%E6%99%82%E4%BB%A3%E3%81%AE%E6%B3%95%E5%BE%8B%E7%AF%87-%E3%83%97%E3%83%AD%E3%82%B8%E3%82%A7%E3%82%AF%E3%83%88%E3%82%BF%E3%82%A4%E3%83%A0%E3%83%9E%E3%82%B7%E3%83%B3/dp/4839915555%3FSubscriptionId%3DAKIAJ6YR6CXFBTZYQINA%26tag%3Duntitled-documents-22%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D4839915555" name="amazonlink" target="_blank">
		<img src="http://ecx.images-amazon.com/images/I/510B0NDEAWL._SL160_.jpg" alt="萌えるシリーズ 萌える法律読本 ディジタル時代の法律篇" />
		</a>
	</div>
	<div class="amazonlink-info">
		<div class="amazonlink-name">
			<a href="http://www.amazon.co.jp/%E8%90%8C%E3%81%88%E3%82%8B%E3%82%B7%E3%83%AA%E3%83%BC%E3%82%BA-%E8%90%8C%E3%81%88%E3%82%8B%E6%B3%95%E5%BE%8B%E8%AA%AD%E6%9C%AC-%E3%83%87%E3%82%A3%E3%82%B8%E3%82%BF%E3%83%AB%E6%99%82%E4%BB%A3%E3%81%AE%E6%B3%95%E5%BE%8B%E7%AF%87-%E3%83%97%E3%83%AD%E3%82%B8%E3%82%A7%E3%82%AF%E3%83%88%E3%82%BF%E3%82%A4%E3%83%A0%E3%83%9E%E3%82%B7%E3%83%B3/dp/4839915555%3FSubscriptionId%3DAKIAJ6YR6CXFBTZYQINA%26tag%3Duntitled-documents-22%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D4839915555" name="amazonlink" target="_blank">萌えるシリーズ 萌える法律読本 ディジタル時代の法律篇</a>
		</div>
		<div class="amazonlink-detail">プロジェクトタイムマシン <br />毎日コミュニケーションズ <br />売り上げランキング: 381,275
		</div>
		<div class="amazonlink-link">
		<a href="http://www.amazon.co.jp/%E8%90%8C%E3%81%88%E3%82%8B%E3%82%B7%E3%83%AA%E3%83%BC%E3%82%BA-%E8%90%8C%E3%81%88%E3%82%8B%E6%B3%95%E5%BE%8B%E8%AA%AD%E6%9C%AC-%E3%83%87%E3%82%A3%E3%82%B8%E3%82%BF%E3%83%AB%E6%99%82%E4%BB%A3%E3%81%AE%E6%B3%95%E5%BE%8B%E7%AF%87-%E3%83%97%E3%83%AD%E3%82%B8%E3%82%A7%E3%82%AF%E3%83%88%E3%82%BF%E3%82%A4%E3%83%A0%E3%83%9E%E3%82%B7%E3%83%B3/dp/4839915555%3FSubscriptionId%3DAKIAJ6YR6CXFBTZYQINA%26tag%3Duntitled-documents-22%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D4839915555" name="amazonlink" target="_blank">Amazon.co.jp で詳細を見る</a>
		</div>
	</div>
	<div class="amazonlink-footer" style="clear: both;">
		<div class="amazonlink-powered-date">
		Powerd by <a href="http://blog.yoshitomo.org/amazonlink">AmazonLink</a> 2.0.0 beta3.
		</div>
	</div>
</div>
<br /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iex3.info/archives/1011/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.iex3.info/archives/1011" />
	<feedburner:origLink>http://www.iex3.info/archives/1011</feedburner:origLink></item>
		<item>
		<title>【さくらのVPS】正式版サービスの受付開始</title>
		<link>http://feeds.iex3.info/~r/UntitledDocuments/~3/tEdS-duVZ1Y/1009</link>
		<comments>http://www.iex3.info/archives/1009#comments</comments>
		<pubDate>Mon, 16 Aug 2010 16:01:31 +0000</pubDate>
		<dc:creator>kimikato</dc:creator>
				<category><![CDATA[さくらインターネット]]></category>
		<category><![CDATA[さくらのVPS]]></category>
		<category><![CDATA[正式版]]></category>
		<category><![CDATA[発表]]></category>

		<guid isPermaLink="false">http://www.iex3.info/?p=1009</guid>
		<description><![CDATA[
	この記事の所要時間： 約 0分52秒

本日（16日）、ベータ版ユーザ宛にさくらのVPSの正式版サービスの受付が開始されました。


現在、ベータ版ですが、今月末（8月30日）で終了し、翌9月1日より正式版が提供され [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/nc-eu_Yzlw6jMU8zyTxe27JIy5w/0/da"><img src="http://feedads.g.doubleclick.net/~a/nc-eu_Yzlw6jMU8zyTxe27JIy5w/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/nc-eu_Yzlw6jMU8zyTxe27JIy5w/1/da"><img src="http://feedads.g.doubleclick.net/~a/nc-eu_Yzlw6jMU8zyTxe27JIy5w/1/di" border="0" ismap="true"></img></a></p><div class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Fwww.iex3.info%2Farchives%2F1009&amp;text=%E3%80%90%E3%81%95%E3%81%8F%E3%82%89%E3%81%AEVPS%E3%80%91%E6%AD%A3%E5%BC%8F%E7%89%88%E3%82%B5%E3%83%BC%E3%83%93%E3%82%B9%E3%81%AE%E5%8F%97%E4%BB%98%E9%96%8B%E5%A7%8B&amp;lang=ja&amp;count=horizontal"  class="twitter-share-button">Tweet</a></div><div style="border-top:2px dotted #ccc;border-bottom:2px dotted #ccc;padding:0.2em 0;text-align:right;font-size:small;color:#444; margin: 10px 0;">
	この記事の所要時間： <span style="font-weight:bold">約 <span style="color:#f00">0</span>分<span style="color:#f00">52</span>秒</span>
</div>
<p>本日（16日）、ベータ版ユーザ宛にさくらのVPSの正式版サービスの受付が開始されました。</p>
<p><a href="http://www.iex3.info/wp-content/uploads/2010/08/kunihirotanaka_tweets_sakura_vps.png" title="田中邦裕社長のツイート"><img src="http://www.iex3.info/wp-content/uploads/2010/08/kunihirotanaka_tweets_sakura_vps-400x318.png" alt="田中邦裕社長のツイート" title="田中邦裕社長のツイート" width="400" height="318" class="aligncenter size-medium wp-image-1010" /></a></p>
<p><span id="more-1009"></span></p>
<p>現在、ベータ版ですが、今月末（8月30日）で終了し、翌9月1日より正式版が提供されます。<br />
VPSのスペックは現在と同じとなっています。</p>
<table border="0">
<tr>
<th colspan="2">さくらのVPS</th>
</tr>
<tr>
<th>初期費用</th>
<td>0円（ベータテストユーザのみ）</td>
</tr>
<tr>
<th>月額</th>
<td>980円</td>
</tr>
<tr>
<th>HDD</th>
<td>20GB</td>
</tr>
<tr>
<th>メモリ</th>
<td>512MB</td>
</tr>
<tr>
<th>回線</th>
<td>100Mbps</td>
</tr>
<tr>
<th>OS</th>
<td>CentOS 5 x86_64</td>
</tr>
</table>
<p>また、料金の方は、月払いの場合、980円（年間一括払いの場合は10,780円）とかなり安いかと思います。</p>
<table border="0">
<tr>
<th rowspan="2">ご利用料金（税込）</th>
<th>月払い</th>
<td style="text-align: center;">980円</td>
</tr>
<tr>
<th>年間一括</th>
<td style="text-align: center;">10,780円</td>
</tr>
<tr>
<th colspan="2">初期費用</th>
<td style="text-align: center;">0円</td>
</tr>
<tr>
<th colspan="2">無料お試し期間</th>
<td style="text-align: center;">2週間</td>
</tr>
<tr>
<th colspan="2">お支払い方法</th>
<td style="text-align: center;">クレジットカード、請求書払い、銀行振込、自動口座吹替</td>
</tr>
</table>
<p>現在、ベータテストを行っていないユーザー向けにはまだ発表がないようなので発表が待ちどうしいです。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iex3.info/archives/1009/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.iex3.info/archives/1009" />
	<feedburner:origLink>http://www.iex3.info/archives/1009</feedburner:origLink></item>
		<item>
		<title>「iPhone 4 ケースプログラム」で申し込んだケースが届いた</title>
		<link>http://feeds.iex3.info/~r/UntitledDocuments/~3/8eP4hqAFEXk/1006</link>
		<comments>http://www.iex3.info/archives/1006#comments</comments>
		<pubDate>Tue, 10 Aug 2010 14:29:45 +0000</pubDate>
		<dc:creator>kimikato</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Incase Case Snap]]></category>
		<category><![CDATA[iPhone4]]></category>

		<guid isPermaLink="false">http://www.iex3.info/?p=1006</guid>
		<description><![CDATA[
	この記事の所要時間： 約 0分44秒

先日、「iPhone 4 ケースプログラム」で申し込んだ「Incase Snap Case for iPhone4 – （クリア）」が届きました。
7月26日に申し込んだので、 [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/S0XHLn_j782UMh0_Tfc-Lm0_R-E/0/da"><img src="http://feedads.g.doubleclick.net/~a/S0XHLn_j782UMh0_Tfc-Lm0_R-E/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/S0XHLn_j782UMh0_Tfc-Lm0_R-E/1/da"><img src="http://feedads.g.doubleclick.net/~a/S0XHLn_j782UMh0_Tfc-Lm0_R-E/1/di" border="0" ismap="true"></img></a></p><div class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Fwww.iex3.info%2Farchives%2F1006&amp;text=%E3%80%8CiPhone+4+%E3%82%B1%E3%83%BC%E3%82%B9%E3%83%97%E3%83%AD%E3%82%B0%E3%83%A9%E3%83%A0%E3%80%8D%E3%81%A7%E7%94%B3%E3%81%97%E8%BE%BC%E3%82%93%E3%81%A0%E3%82%B1%E3%83%BC%E3%82%B9%E3%81%8C%E5%B1%8A%E3%81%84%E3%81%9F&amp;lang=ja&amp;count=horizontal"  class="twitter-share-button">Tweet</a></div><div style="border-top:2px dotted #ccc;border-bottom:2px dotted #ccc;padding:0.2em 0;text-align:right;font-size:small;color:#444; margin: 10px 0;">
	この記事の所要時間： <span style="font-weight:bold">約 <span style="color:#f00">0</span>分<span style="color:#f00">44</span>秒</span>
</div>
<p>先日、<a href="http://www.iex3.info/archives/960" target="_blank">「iPhone 4 ケースプログラム」で申し込んだ</a>「<a href="http://jp.goincase.com/products/detail/cl59630/" target="_blank">Incase Snap Case for iPhone4 – （クリア）</a>」が届きました。<br />
7月26日に申し込んだので、約2週間で届いたことになります。</p>
<div id="attachment_1007" class="wp-caption aligncenter" style="width: 250px"><a href="http://www.iex3.info/wp-content/uploads/2010/08/incase_snap_case.png" title="Incase Snap Case for iPhone 4"><img src="http://www.iex3.info/wp-content/uploads/2010/08/incase_snap_case.png" alt="Incase Snap Case for iPhone 4" title="Incase Snap Case for iPhone 4" width="240" height="321" class="size-full wp-image-1007" /></a><p class="wp-caption-text">Incase Snap Case for iPhone 4</p></div>
<p>さっそくiPhone4に装着してみましたが、ケース自体はかなり薄く、以前使っていたケースと比べるとかなりいいケースかと思いました。<br />
ただし、背面を触ると指紋が目立っちゃいますけどｗ</p>
<p>iPhone4をご利用で、まだケースを申し込んでない方はぜひこの機に申し込んではどうでしょうか？</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iex3.info/archives/1006/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.iex3.info/archives/1006" />
	<feedburner:origLink>http://www.iex3.info/archives/1006</feedburner:origLink></item>
		<item>
		<title>【さくらのVPS】 VPSコントロールパネルでサーバ状況を確認する</title>
		<link>http://feeds.iex3.info/~r/UntitledDocuments/~3/UsiBc23RIwY/997</link>
		<comments>http://www.iex3.info/archives/997#comments</comments>
		<pubDate>Sun, 08 Aug 2010 16:55:10 +0000</pubDate>
		<dc:creator>kimikato</dc:creator>
				<category><![CDATA[さくらインターネット]]></category>
		<category><![CDATA[さくらのVPS]]></category>
		<category><![CDATA[コントロールパネル]]></category>
		<category><![CDATA[ベータ版]]></category>

		<guid isPermaLink="false">http://www.iex3.info/?p=997</guid>
		<description><![CDATA[
	この記事の所要時間： 約 2分56秒

さくらインターネットの「さくらのVPS」のサーバの状態は「VPSコントロールパネル」というWebページから確認することができます。
この「VPSコントロールパネル」では、サーバ [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/_ve4oHNrMFtiLhZ3FheQF3YGz4s/0/da"><img src="http://feedads.g.doubleclick.net/~a/_ve4oHNrMFtiLhZ3FheQF3YGz4s/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/_ve4oHNrMFtiLhZ3FheQF3YGz4s/1/da"><img src="http://feedads.g.doubleclick.net/~a/_ve4oHNrMFtiLhZ3FheQF3YGz4s/1/di" border="0" ismap="true"></img></a></p><div class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Fwww.iex3.info%2Farchives%2F997&amp;text=%E3%80%90%E3%81%95%E3%81%8F%E3%82%89%E3%81%AEVPS%E3%80%91+VPS%E3%82%B3%E3%83%B3%E3%83%88%E3%83%AD%E3%83%BC%E3%83%AB%E3%83%91%E3%83%8D%E3%83%AB%E3%81%A7%E3%82%B5%E3%83%BC%E3%83%90%E7%8A%B6%E6%B3%81%E3%82%92%E7%A2%BA%E8%AA%8D%E3%81%99%E3%82%8B&amp;lang=ja&amp;count=horizontal"  class="twitter-share-button">Tweet</a></div><div style="border-top:2px dotted #ccc;border-bottom:2px dotted #ccc;padding:0.2em 0;text-align:right;font-size:small;color:#444; margin: 10px 0;">
	この記事の所要時間： <span style="font-weight:bold">約 <span style="color:#f00">2</span>分<span style="color:#f00">56</span>秒</span>
</div>
<p>さくらインターネットの「さくらのVPS」のサーバの状態は「VPSコントロールパネル」というWebページから確認することができます。</p>
<p>この「VPSコントロールパネル」では、サーバのIPアドレス、メモリ、HDDの容量の他、現在のサーバのステータス、リソース（CPU、トラフィック、ディスクI/O）の状態を視覚的に見ることができます。（リソース情報はMRTGっぽい出力です）また、OSの再インストールも行うことができます。</p>
<p><span id="more-997"></span></p>
<ol>
<li>「VPSコントロールパネル」のページに行くには、会員ページにログインします。</li>
<div id="attachment_998" class="wp-caption aligncenter" style="width: 410px"><a href="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_controllpanel_01.png" title="会員メニュー　ログイン"><img src="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_controllpanel_01-400x398.png" alt="会員メニュー　ログイン" title="会員メニュー　ログイン" width="400" height="398" class="size-medium wp-image-998" /></a><p class="wp-caption-text">会員メニュー　ログイン</p></div>
<li>ログイン後、【契約情報】を開きます。</li>
<div id="attachment_999" class="wp-caption aligncenter" style="width: 410px"><a href="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_controllpanel_02.png" title="会員メニュー　トップ"><img src="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_controllpanel_02-400x392.png" alt="会員メニュー　トップ" title="会員メニュー　トップ" width="400" height="392" class="size-medium wp-image-999" /></a><p class="wp-caption-text">会員メニュー　トップ</p></div>
<li>【契約情報】のページの【無料サービスの確認】を開きます。</li>
<div id="attachment_1000" class="wp-caption aligncenter" style="width: 410px"><a href="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_controllpanel_03.png" title="会員メニューの契約情報"><img src="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_controllpanel_03-400x312.png" alt="会員メニューの契約情報" title="会員メニューの契約情報" width="400" height="312" class="size-medium wp-image-1000" /></a><p class="wp-caption-text">会員メニューの契約情報</p></div>
<li>【無料サービス一覧-表示】に「さくらのVPS 980」とあります。<br />ここに、サービスコード、摘要にサーバのIPアドレスが表示されています。<br />手続きの欄の「サーバ設定」ボタンをクリックすると、VPSコントロールパネルが表示されます。</li>
<div id="attachment_1001" class="wp-caption aligncenter" style="width: 410px"><a href="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_controllpanel_04.png" title="無料サービス一覧 － 一覧"><img src="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_controllpanel_04-400x290.png" alt="無料サービス一覧 － 一覧" title="無料サービス一覧 － 一覧" width="400" height="290" class="size-medium wp-image-1001" /></a><p class="wp-caption-text">無料サービス一覧 － 一覧</p></div>
<li>「VPSコントロールパネル」のトップページ（VPSホーム）です。<br />サーバ情報（IPアドレス、メモリ、HDD、サーバステータス）、リソース情報（CPU、トラフィック、ディスクI/O）が表示されています。</li>
<div id="attachment_1002" class="wp-caption aligncenter" style="width: 267px"><a href="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_controllpanel_05.png" title="VPSコントロールパネル ホーム"><img src="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_controllpanel_05-257x400.png" alt="VPSコントロールパネル ホーム" title="VPSコントロールパネル ホーム" width="257" height="400" class="size-medium wp-image-1002" /></a><p class="wp-caption-text">VPSコントロールパネル ホーム</p></div>
<li>「VPSコントロールパネル」のリモートコンソールです。<br />SSHクライアントを利用しなくても、VPSサーバへリモート接続することができます。（シリアルポートを介した操作と同等の機能になります。）</li>
<div id="attachment_1003" class="wp-caption aligncenter" style="width: 319px"><a href="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_controllpanel_06.png" title="VPSコントロールパネル リモートコンソール"><img src="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_controllpanel_06-309x400.png" alt="VPSコントロールパネル リモートコンソール" title="VPSコントロールパネル リモートコンソール" width="309" height="400" class="size-medium wp-image-1003" /></a><p class="wp-caption-text">VPSコントロールパネル リモートコンソール</p></div>
<li>OSの再インストールもここから行うことができます。</li>
<p><div id="attachment_1004" class="wp-caption aligncenter" style="width: 399px"><a href="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_controllpanel_07.png" title="VPSコントロールパネル OS再インストール"><img src="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_controllpanel_07-389x400.png" alt="VPSコントロールパネル OS再インストール" title="VPSコントロールパネル OS再インストール" width="389" height="400" class="size-medium wp-image-1004" /></a><p class="wp-caption-text">VPSコントロールパネル OS再インストール</p></div>
</ol>
<p>以上がサーバの状態をWebから確認することができるコントロールパネルになります。<br />
今回のサイトはベータ版よりスクリーンショットを取りました。実際のサービスが始まった場合、コントロールパネルの機能等の変更が生じる可能性があります。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iex3.info/archives/997/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.iex3.info/archives/997" />
	<feedburner:origLink>http://www.iex3.info/archives/997</feedburner:origLink></item>
		<item>
		<title>【さくらのVPS】 「さくらのVPS」の無料クローズドベータ版を申し込んでみた</title>
		<link>http://feeds.iex3.info/~r/UntitledDocuments/~3/ykxVzpBySeg/991</link>
		<comments>http://www.iex3.info/archives/991#comments</comments>
		<pubDate>Sat, 07 Aug 2010 03:22:43 +0000</pubDate>
		<dc:creator>kimikato</dc:creator>
				<category><![CDATA[さくらインターネット]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[さくらのVPS]]></category>
		<category><![CDATA[ベータ版]]></category>

		<guid isPermaLink="false">http://www.iex3.info/?p=991</guid>
		<description><![CDATA[
	この記事の所要時間： 約 3分14秒

先月、7月16日に申し込みが始まり、予想以上の申し込みで受付停止になったさくらインターネットの「さくらのVPS」（ベータ版）の会員向け無料トライアルが昨日、8月5日より先着30 [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/s_tyxmDk9maJcuxUdgSEUrvhKjE/0/da"><img src="http://feedads.g.doubleclick.net/~a/s_tyxmDk9maJcuxUdgSEUrvhKjE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/s_tyxmDk9maJcuxUdgSEUrvhKjE/1/da"><img src="http://feedads.g.doubleclick.net/~a/s_tyxmDk9maJcuxUdgSEUrvhKjE/1/di" border="0" ismap="true"></img></a></p><div class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Fwww.iex3.info%2Farchives%2F991&amp;text=+%E3%80%90%E3%81%95%E3%81%8F%E3%82%89%E3%81%AEVPS%E3%80%91+%E3%80%8C%E3%81%95%E3%81%8F%E3%82%89%E3%81%AEVPS%E3%80%8D%E3%81%AE%E7%84%A1%E6%96%99%E3%82%AF%E3%83%AD%E3%83%BC%E3%82%BA%E3%83%89%E3%83%99%E3%83%BC%E3%82%BF%E7%89%88%E3%82%92%E7%94%B3%E3%81%97%E8%BE%BC%E3%82%93%E3%81%A7%E3%81%BF%E3%81%9F&amp;lang=ja&amp;count=horizontal"  class="twitter-share-button">Tweet</a></div><div style="border-top:2px dotted #ccc;border-bottom:2px dotted #ccc;padding:0.2em 0;text-align:right;font-size:small;color:#444; margin: 10px 0;">
	この記事の所要時間： <span style="font-weight:bold">約 <span style="color:#f00">3</span>分<span style="color:#f00">14</span>秒</span>
</div>
<p>先月、7月16日に申し込みが始まり、予想以上の申し込みで受付停止になったさくらインターネットの「さくらのVPS」（ベータ版）の会員向け無料トライアルが昨日、8月5日より先着300名限定で再開しました。</p>
<p>現在、さくらのレンタルサーバを借りてるボクとしては、そのうちVPSサービスに移行したいなぁと前々から思っていたので、試しということで申し込みをしてみました。</p>
<p><span id="more-991"></span></p>
<h3>手順</h3>
<ol>
<li>申し込み用URLにアクセスし、会員IDとパスワードを入力します。</li>
<div id="attachment_992" class="wp-caption aligncenter" style="width: 410px"><a href="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_01.png" title="会員IDとパスワードを入力"><img src="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_01-400x236.png" alt="会員IDとパスワードを入力" title="会員IDとパスワードを入力" width="400" height="236" class="size-medium wp-image-992" /></a><p class="wp-caption-text">会員IDとパスワードを入力</p></div>
<li>さくらのVPS（ベータ版）サービス利用約款の同意をします。</li>
<div id="attachment_993" class="wp-caption aligncenter" style="width: 364px"><a href="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_02.png" title="約款の同意"><img src="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_02-354x400.png" alt="約款の同意" title="約款の同意" width="354" height="400" class="size-medium wp-image-993" /></a><p class="wp-caption-text">約款の同意</p></div>
<li>契約の確認をします。問題がなければ、【お申込を行う】をクリックします。</li>
<div id="attachment_994" class="wp-caption aligncenter" style="width: 410px"><a href="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_03.png" title="最終のご確認"><img src="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_03-400x376.png" alt="最終のご確認" title="最終のご確認" width="400" height="376" class="size-medium wp-image-994" /></a><p class="wp-caption-text">最終のご確認</p></div>
<li>申し込み受付の完了です。</li>
<p><div id="attachment_995" class="wp-caption aligncenter" style="width: 410px"><a href="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_04.png" title="申し込みの受付完了"><img src="http://www.iex3.info/wp-content/uploads/2010/08/sakura_vps_04-400x258.png" alt="申し込みの受付完了" title="申し込みの受付完了" width="400" height="258" class="size-medium wp-image-995" /></a><p class="wp-caption-text">申し込みの受付完了</p></div>
</ol>
<p>しばらくすると、さくらインターネットより「<strong>お申込受付完了のお知らせ [********]</strong>」というメールがきます。（********は会員ID）<br />
この段階では、まだ受付完了のお知らせで、VPSサーバは利用できません。</p>
<p>次に、「<strong>[さくらのVPS 無料クローズドベータ版] 仮登録完了のお知らせ</strong>」というメールが届きます。（ボクは上のメールが来てから30分後にきました）<br />
このメールの中に、サーバの情報、IPアドレス、初期パスワード等が記載されています。これでVPSサーバを利用できるようになりました。</p>
<h3>「さくらのVPS」（ベータ版） サービス仕様</h3>
<p>■ 仮想サーバ仕様</p>
<table border="0">
<tr>
<th colspan="2">仮想サーバ仕様</th>
</tr>
<tr>
<th>メモリ</th>
<td>512MB</td>
</tr>
<tr>
<th>HDD</th>
<td>20GB</td>
</tr>
<tr>
<th>回線</th>
<td>100Mbps</td>
</tr>
<tr>
<th>グローバルIPアドレス</th>
<td>IPv4アドレス x 1個</td>
</tr>
<tr>
<th>データ転送量</th>
<td>無制限</td>
</tr>
<tr>
<th>管理者権限</th>
<td>root 権限付与</td>
</tr>
</table>
<p>■ コントロールパネル機能一覧</p>
<table border="0">
<tr>
<th>項目</th>
<th>機能の説明</th>
</tr>
<tr>
<th>ハードウェアリセット</th>
<td>仮想サーバの強制停止→再起動を行ないます</td>
</tr>
<tr>
<th>リモートコンソール<br />（シリアルコンソール）</th>
<td>仮想サーバのシリアルポートを介したサーバの操作が可能です</td>
</tr>
<tr>
<th>仮想サーバのステータス一覧</th>
<td>仮想サーバがどういう状態かを「正常」「停止」という２つのステータスで分かりやすく表示します。</td>
</tr>
<tr>
<th>CPU使用状況の確認</th>
<td>CPUの負荷状況をグラフで確認できます。</td>
</tr>
<tr>
<th>トラフィックグラフ</th>
<td>回線の混雑状況をリアルタイムで確認することが可能です。</td>
</tr>
<tr>
<th>ディスクI/O状況の確認</th>
<td>ハードディスクの読み書き動作の状況をグラフで確認できます。</td>
</tr>
<tr>
<th>OS再インストール</th>
<td>コントロールパネルよりOSの再インストールが可能です。</td>
</tr>
</table>
<p>■ OSインストール構成</p>
<table border="0">
<tr>
<th colspan="2">OS インストール構成</th>
</tr>
<tr>
<th>OS</th>
<td>CentOS 5 x86_64</td>
</tr>
<tr>
<th>ウェブサーバ</th>
<td>※</td>
</tr>
<tr>
<th>SMTPサーバ</th>
<td>sendmail</td>
</tr>
<tr>
<th>POP3サーバ</th>
<td>※</td>
</tr>
<tr>
<th>DNSサーバ</th>
<td>※</td>
</tr>
<tr>
<th>DBサーバ</th>
<td>※</td>
</tr>
<tr>
<th>言語</th>
<td>※</td>
</tr>
<tr>
<th>リモートログイン</th>
<td>SSH</td>
</tr>
</table>
<p>※標準のOSインストール構成ではインストールされていません。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iex3.info/archives/991/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.iex3.info/archives/991" />
	<feedburner:origLink>http://www.iex3.info/archives/991</feedburner:origLink></item>
		<item>
		<title>.fukui vol.1 -JavaScriptの巻- に行ってきました</title>
		<link>http://feeds.iex3.info/~r/UntitledDocuments/~3/P6q2j5j-y2A/990</link>
		<comments>http://www.iex3.info/archives/990#comments</comments>
		<pubDate>Wed, 04 Aug 2010 16:57:26 +0000</pubDate>
		<dc:creator>kimikato</dc:creator>
				<category><![CDATA[勉強会]]></category>

		<guid isPermaLink="false">http://www.iex3.info/?p=990</guid>
		<description><![CDATA[
	この記事の所要時間： 約 2分32秒

隣の石川県での勉強会は参加表明すると必ず出席するのに、県内での勉強会を高い確率でドタキャンすることで一部では有名なボクですが、「.fukui vol.1 -JavaScript [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/olXM-EBEMp1JXw2rJbm_VBiBg_w/0/da"><img src="http://feedads.g.doubleclick.net/~a/olXM-EBEMp1JXw2rJbm_VBiBg_w/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/olXM-EBEMp1JXw2rJbm_VBiBg_w/1/da"><img src="http://feedads.g.doubleclick.net/~a/olXM-EBEMp1JXw2rJbm_VBiBg_w/1/di" border="0" ismap="true"></img></a></p><div class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Fwww.iex3.info%2Farchives%2F990&amp;text=.fukui+vol.1+-JavaScript%E3%81%AE%E5%B7%BB-+%E3%81%AB%E8%A1%8C%E3%81%A3%E3%81%A6%E3%81%8D%E3%81%BE%E3%81%97%E3%81%9F&amp;lang=ja&amp;count=horizontal"  class="twitter-share-button">Tweet</a></div><div style="border-top:2px dotted #ccc;border-bottom:2px dotted #ccc;padding:0.2em 0;text-align:right;font-size:small;color:#444; margin: 10px 0;">
	この記事の所要時間： <span style="font-weight:bold">約 <span style="color:#f00">2</span>分<span style="color:#f00">32</span>秒</span>
</div>
<p>隣の石川県での勉強会は参加表明すると必ず出席するのに、県内での勉強会を高い確率でドタキャンすることで一部では有名なボクですが、「<a href="http://atnd.org/events/6652" target="_blank">.fukui vol.1 -JavaScriptの巻-</a> 」という勉強会に行ってきました。</p>
<p>「.fukui」（ドットフクイ）というのは、福井クラスタが集まってHTML5やjQuery、JavaScriptなど様々なことを、好きなスタイルで勉強する。<br />
また、誰かがスピーカーとして話すタイプではなく、手を動かす（何かを作る）タイプの勉強会で、ゆるいけど、切磋琢磨する。そんな感じな勉強会です。</p>
<p><span id="more-990"></span></p>
<p>さて、第1回目の今回のテーマはJavaScript。<br />
ボクは、<a href="http://www.sencha.com/products/touch/" target="_blank">Sencha Touch</a>を使って、TwitPicに投稿した画像をRSSで取得してきて、ウンガーとしようかなと思ったのですが・・・Sencha Touchの使い方がわからない・・・</p>
<p>デモを見ながら、ちょこっと触ったところでタイムアウトｗ<br />
次回は、<a href="http://atnd.org/events/6981" target="_blank">2週間後の8月18日</a>にあり、次回もJavaScriptがテーマのようなので次、頑張ろうかと思いますｗ</p>
<p>福井の方で、興味を持った方はぜひ参加してみてください。<br />
楽しいですよ。</p>
<blockquote cite="http://atnd.org/events/6652"><p>
毎日のように新しい技術と情報が飛び込んでくるWeb業界。<br />
・勉強しないとまずいなーとおもいつつ、なかなか時間がつくれない。<br />
・1人で勉強してると、いろんな誘惑に負けてイマイチ技術習得に身が入らない。<br />
・同じことを勉強している人と情報交換して、スキルを高めたい。</p>
<p>そんなふうにお考えの方。<br />
みんなで同じ場所に集まってプチ合宿形式で技術を身に付けませんか。</p>
<p>基本的には毎回勉強するテーマを決めて開催しようと思いますが、何を勉強するのかはお任せします。<br />
例えばHTML5がテーマだけど、ちょっとjQueryのことも調べてみよう、というのもOKです。<br />
今回のテーマは「JavaScript」です。</p>
<p>誰かがスピーカーとして話すタイプではなく、手を動かす（何かを作る）タイプの勉強会です。<br />
ゆるいけど、切磋琢磨する。そんな感じで勉強会をしていければいいかなと思います。<br />
よろしくお願いします。</p>
<p>基本的に隔週のペースで開催して行こうと思いますが、急遽中止になる場合もありますので、ご参加いただける方はtwitterのアカウントか、メールアドレスを教えてください。中止の時の連絡方法に使わせていただきます。<br />
ご連絡は@shirokuro331[ twitter ]まで（フォローいただいている方は、ご連絡いただかなくても結構です。）</p>
<p>.fukui（ドットフクイ）とは・・・<br />
福井クラスタが集まって勉強する会です。<br />
クラスタとcssのclass(.)をかけてます（わかりにくい？<br />
プロパティはHTML5やjQuery、JavaScriptなど様々です。好きなスタイルで勉強しましょう。<br />
<cite><a href="http://atnd.org/events/6652" target="_blank">.fukui vol.1 -JavaScriptの巻- : ATND</a></cite>
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.iex3.info/archives/990/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.iex3.info/archives/990" />
	<feedburner:origLink>http://www.iex3.info/archives/990</feedburner:origLink></item>
		<item>
		<title>ちょｗ ポカリスエットが超格安で販売中（追記あり）</title>
		<link>http://feeds.iex3.info/~r/UntitledDocuments/~3/JxhCOhySBQ4/985</link>
		<comments>http://www.iex3.info/archives/985#comments</comments>
		<pubDate>Thu, 29 Jul 2010 16:33:17 +0000</pubDate>
		<dc:creator>kimikato</dc:creator>
				<category><![CDATA[ネット]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[ポカリスエット]]></category>

		<guid isPermaLink="false">http://www.iex3.info/?p=985</guid>
		<description><![CDATA[
	この記事の所要時間： 約 0分54秒

Amazonさんでポカリスエットが超格安特価で販売している模様。
30日午前9時30分現在、通常価格に修正されていました
暑い日はやっぱりスポーツドリンクですよ。
ということで [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/V0PvTN27Lh2ouREQCIEc56pYiUk/0/da"><img src="http://feedads.g.doubleclick.net/~a/V0PvTN27Lh2ouREQCIEc56pYiUk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/V0PvTN27Lh2ouREQCIEc56pYiUk/1/da"><img src="http://feedads.g.doubleclick.net/~a/V0PvTN27Lh2ouREQCIEc56pYiUk/1/di" border="0" ismap="true"></img></a></p><div class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Fwww.iex3.info%2Farchives%2F985&amp;text=%E3%81%A1%E3%82%87%EF%BD%97+%E3%83%9D%E3%82%AB%E3%83%AA%E3%82%B9%E3%82%A8%E3%83%83%E3%83%88%E3%81%8C%E8%B6%85%E6%A0%BC%E5%AE%89%E3%81%A7%E8%B2%A9%E5%A3%B2%E4%B8%AD%EF%BC%88%E8%BF%BD%E8%A8%98%E3%81%82%E3%82%8A%EF%BC%89&amp;lang=ja&amp;count=horizontal"  class="twitter-share-button">Tweet</a></div><div style="border-top:2px dotted #ccc;border-bottom:2px dotted #ccc;padding:0.2em 0;text-align:right;font-size:small;color:#444; margin: 10px 0;">
	この記事の所要時間： <span style="font-weight:bold">約 <span style="color:#f00">0</span>分<span style="color:#f00">54</span>秒</span>
</div>
<p>Amazonさんでポカリスエットが<del datetime="2010-07-30T00:43:56+00:00">超格安特価で販売している</del>模様。<br />
<span style="color: red;">30日午前9時30分現在、通常価格に修正されていました</span></p>
<div id="attachment_986" class="wp-caption aligncenter" style="width: 410px"><a href="http://www.iex3.info/wp-content/uploads/2010/07/pocarisweat_245.png" title="POCARI SWEAT 245mlｘ30缶"><img src="http://www.iex3.info/wp-content/uploads/2010/07/pocarisweat_245-400x233.png" alt="POCARI SWEAT 245mlｘ30缶" title="POCARI SWEAT 245mlｘ30缶" width="400" height="233" class="size-medium wp-image-986" /></a><p class="wp-caption-text">POCARI SWEAT 245mlｘ30缶</p></div><br />
<div id="attachment_987" class="wp-caption aligncenter" style="width: 410px"><a href="http://www.iex3.info/wp-content/uploads/2010/07/pocarisweat_900.png" title="POCARI SWEAT 900x12本"><img src="http://www.iex3.info/wp-content/uploads/2010/07/pocarisweat_900-400x233.png" alt="POCARI SWEAT 900x12本" title="POCARI SWEAT 900x12本" width="400" height="233" class="size-medium wp-image-987" /></a><p class="wp-caption-text">POCARI SWEAT 900x12本</p></div><br />
<div id="attachment_988" class="wp-caption aligncenter" style="width: 410px"><a href="http://www.iex3.info/wp-content/uploads/2010/07/pocarisweat_1500.png" title="POCARI SWEAT 1.5l x 8本"><img src="http://www.iex3.info/wp-content/uploads/2010/07/pocarisweat_1500-400x233.png" alt="POCARI SWEAT 1.5l x 8本" title="POCARI SWEAT 1.5l x 8本" width="400" height="233" class="size-medium wp-image-988" /></a><p class="wp-caption-text">POCARI SWEAT 1.5l x 8本</p></div>
<p>暑い日はやっぱりスポーツドリンクですよ。<br />
ということで、おすすめです。<br />
<div class="amazonlink-box">
	<div class="amazonlink-image">
		<a href="http://www.amazon.co.jp/%E3%81%8A%E5%BE%B3%E7%94%A8%E3%83%9C%E3%83%83%E3%82%AF%E3%82%B9-%E3%83%9D%E3%82%AB%E3%83%AA%E3%82%B9%E3%82%A8%E3%83%83%E3%83%88-1500ml-%C3%978%E6%9C%AC/dp/B000JTWOWY%3FSubscriptionId%3DAKIAJ6YR6CXFBTZYQINA%26tag%3Duntitled-documents-22%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB000JTWOWY" name="amazonlink" target="_blank">
		<img src="http://ecx.images-amazon.com/images/I/31UoGGsf3fL._SL160_.jpg" alt="(お徳用ボックス) ポカリスエット 1500ml ×8本" />
		</a>
	</div>
	<div class="amazonlink-info">
		<div class="amazonlink-name">
			<a href="http://www.amazon.co.jp/%E3%81%8A%E5%BE%B3%E7%94%A8%E3%83%9C%E3%83%83%E3%82%AF%E3%82%B9-%E3%83%9D%E3%82%AB%E3%83%AA%E3%82%B9%E3%82%A8%E3%83%83%E3%83%88-1500ml-%C3%978%E6%9C%AC/dp/B000JTWOWY%3FSubscriptionId%3DAKIAJ6YR6CXFBTZYQINA%26tag%3Duntitled-documents-22%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB000JTWOWY" name="amazonlink" target="_blank">(お徳用ボックス) ポカリスエット 1500ml ×8本</a>
		</div>
		<div class="amazonlink-detail"> <br />大塚製薬 <br />売り上げランキング: 55
		</div>
		<div class="amazonlink-link">
		<a href="http://www.amazon.co.jp/%E3%81%8A%E5%BE%B3%E7%94%A8%E3%83%9C%E3%83%83%E3%82%AF%E3%82%B9-%E3%83%9D%E3%82%AB%E3%83%AA%E3%82%B9%E3%82%A8%E3%83%83%E3%83%88-1500ml-%C3%978%E6%9C%AC/dp/B000JTWOWY%3FSubscriptionId%3DAKIAJ6YR6CXFBTZYQINA%26tag%3Duntitled-documents-22%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB000JTWOWY" name="amazonlink" target="_blank">Amazon.co.jp で詳細を見る</a>
		</div>
	</div>
	<div class="amazonlink-footer" style="clear: both;">
		<div class="amazonlink-powered-date">
		Powerd by <a href="http://blog.yoshitomo.org/amazonlink">AmazonLink</a> 2.0.0 beta3.
		</div>
	</div>
</div>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iex3.info/archives/985/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.iex3.info/archives/985" />
	<feedburner:origLink>http://www.iex3.info/archives/985</feedburner:origLink></item>
		<item>
		<title>麻美ゆまさん、twitter開設</title>
		<link>http://feeds.iex3.info/~r/UntitledDocuments/~3/mscD2rXH2eI/984</link>
		<comments>http://www.iex3.info/archives/984#comments</comments>
		<pubDate>Wed, 28 Jul 2010 17:34:40 +0000</pubDate>
		<dc:creator>kimikato</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[AV女優]]></category>
		<category><![CDATA[麻美ゆま]]></category>

		<guid isPermaLink="false">http://www.iex3.info/?p=984</guid>
		<description><![CDATA[
	この記事の所要時間： 約 1分55秒

スピードネーター : 麻美ゆまtwitter開設記念　「ＡＶ女優のtwitterまとめ」より。
ＨカップＡＶ女優・麻美ゆまさんがtwitterを開始したそうで、
蒼井そらさん（ [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/oFfSoGHxtvlyGqfim0LquhZIYEs/0/da"><img src="http://feedads.g.doubleclick.net/~a/oFfSoGHxtvlyGqfim0LquhZIYEs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/oFfSoGHxtvlyGqfim0LquhZIYEs/1/da"><img src="http://feedads.g.doubleclick.net/~a/oFfSoGHxtvlyGqfim0LquhZIYEs/1/di" border="0" ismap="true"></img></a></p><div class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Fwww.iex3.info%2Farchives%2F984&amp;text=%E9%BA%BB%E7%BE%8E%E3%82%86%E3%81%BE%E3%81%95%E3%82%93%E3%80%81twitter%E9%96%8B%E8%A8%AD&amp;lang=ja&amp;count=horizontal"  class="twitter-share-button">Tweet</a></div><div style="border-top:2px dotted #ccc;border-bottom:2px dotted #ccc;padding:0.2em 0;text-align:right;font-size:small;color:#444; margin: 10px 0;">
	この記事の所要時間： <span style="font-weight:bold">約 <span style="color:#f00">1</span>分<span style="color:#f00">55</span>秒</span>
</div>
<p><a href="http://www.ne-ta.com/archives/1430035.html" target="_blank">スピードネーター : 麻美ゆまtwitter開設記念　「ＡＶ女優のtwitterまとめ」</a>より。</p>
<p>ＨカップＡＶ女優・麻美ゆまさんがtwitterを開始したそうで、<br />
蒼井そらさん（<a href="http://twitter.com/aoi_sola" target=_blank>@aoi_sola</a>）から勧められたのがきっかけとのこと。</p>
<p><span id="more-984"></span></p>
<p>さっそくフォローしましたが、何か？</p>
<p>ちなみにボクは佐山愛さんが好きです。</p>
<h3>ＡＶ女優のtwitterまとめ</h3>
<p>※順不同<br />
・<a href="http://twitter.com/asami_yuma" target=_blank>麻美ゆまオフィシャルツイッター</a><br />
・<a href="http://twitter.com/aoi_sola" target=_blank>蒼井そらオフィシャルtwitter</a><br />
・<a href="http://twitter.com/akkiycute" target=_blank>吉沢明歩オフィシャルtwitter</a><br />
・<a href="http://twitter.com/showtaro3" target=_blank>西野翔オフィシャルtwitter</a><br />
・<a href="http://twitter.com/akiraelly" target=_blank>晶エリー(大沢佑香)オフィシャルtwitter</a><br />
・<a href="http://twitter.com/AiSayama" target=_blank>佐山愛オフィシャルtwitter</a><br />
・<a href="http://twitter.com/kosakameguruda3" target=_blank>小坂めぐるオフィシャルtwitter</a><br />
・<a href="http://twitter.com/natsume_nana" target=_blank>夏目ナナオフィシャルtwitter</a><br />
・<a href="http://twitter.com/arisawa_misa" target=_blank>有沢実紗オフィシャルtwitter</a><br />
・<a href="http://twitter.com/cotorich_ter" target=_blank>古都ひかるオフィシャルtwitter</a><br />
・<a href="http://twitter.com/runa0114" target=_blank>葉山瑠菜オフィシャルtwitter</a><br />
・<a href="http://twitter.com/bjgyuuki" target=_blank>結城リナオフィシャルtwitter</a><br />
・<a href="http://twitter.com/andu072" target=_blank>杏あづさオフィシャルtwitter</a><br />
・<a href="http://twitter.com/saki_otuka" target=_blank>大塚咲オフィシャルtwitter</a><br />
・<a href="http://twitter.com/RuiSaotome" target=_blank>早乙女ルイオフィシャルtwitter</a><br />
・<a href="http://twitter.com/yukinashirai" target=_blank>白井ゆきなオフィシャルtwitter</a><br />
・<a href="http://twitter.com/fujimegu0504" target=_blank>藤浦めぐ(フジメグ)オフィシャルtwitter</a><br />
・<a href="http://twitter.com/kuririn0416" target=_blank>栗林里莉オフィシャルtwitter</a><br />
・<a href="http://twitter.com/showtaro3" target=_blank>西野翔オフィシャルtwitter</a><br />
・<a href="http://twitter.com/Asamin_Ogawa" target=_blank>小川あさ美オフィシャルtwitter</a><br />
・<a href="http://twitter.com/mihiro0519" target=_blank>みひろオフィシャルtwitter</a><br />
・<a href="http://twitter.com/risa_kasumi" target=_blank>かすみりさオフィシャルtwitter</a><br />
・<a href="http://twitter.com/minenayuka" target=_blank>峰なゆかオフィシャルtwitter</a><br />
・<a href="http://twitter.com/akanehotaru1025" target=_blank>紅音ほたるオフィシャルtwitter</a><br />
・<a href="http://twitter.com/aica_jasmine" target=_blank>藍花オフィシャルtwitter</a><br />
・<a href="http://twitter.com/aoyamakyoko" target=_blank>青山恭子オフィシャルtwitter</a><br />
・<a href="http://twitter.com/AVkumiko" target=_blank>愛内久美子オフィシャルtwitter</a><br />
・<a href="http://twitter.com/yokoyamamiyuki" target=_blank>横山美雪オフィシャルtwitter</a><br />
・<a href="http://twitter.com/AsagiAgeha" target=_blank>浅葱アゲハオフィシャルtwitter</a><br />
・<a href="http://twitter.com/coconoayuzu" target=_blank>松下ゆうか(愛乃彩音)オフィシャルtwitter</a></p>
<h3>オマケリンク</h3>
<p>・<a href="http://dekiru.impress.co.jp/contents/222/22201c.htm" target=_blank>Twitter 有名人（タレント、スポーツ選手など）アカウント一覧</a><br />
・<a href="http://journal.mycom.co.jp/articles/2009/07/08/twitter/index.html" target=_blank>海外有名人のtwitterアカウントまとめ101</a></p>
<p><div class="amazonlink-box">
	<div class="amazonlink-image">
		<a href="http://www.amazon.co.jp/Resolution-DVD%E4%BB%98-%E9%BA%BB%E7%BE%8E%E3%82%86%E3%81%BE/dp/B0010B8DQG%3FSubscriptionId%3DAKIAJ6YR6CXFBTZYQINA%26tag%3Duntitled-documents-22%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB0010B8DQG" name="amazonlink" target="_blank">
		<img src="http://ecx.images-amazon.com/images/I/41PAXoBgC2L._SL160_.jpg" alt="Resolution(DVD付)" />
		</a>
	</div>
	<div class="amazonlink-info">
		<div class="amazonlink-name">
			<a href="http://www.amazon.co.jp/Resolution-DVD%E4%BB%98-%E9%BA%BB%E7%BE%8E%E3%82%86%E3%81%BE/dp/B0010B8DQG%3FSubscriptionId%3DAKIAJ6YR6CXFBTZYQINA%26tag%3Duntitled-documents-22%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB0010B8DQG" name="amazonlink" target="_blank">Resolution(DVD付)</a>
		</div>
		<div class="amazonlink-detail"> <br />フォーサイド・ドット・コム <br />売り上げランキング: 176,781
		</div>
		<div class="amazonlink-link">
		<a href="http://www.amazon.co.jp/Resolution-DVD%E4%BB%98-%E9%BA%BB%E7%BE%8E%E3%82%86%E3%81%BE/dp/B0010B8DQG%3FSubscriptionId%3DAKIAJ6YR6CXFBTZYQINA%26tag%3Duntitled-documents-22%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB0010B8DQG" name="amazonlink" target="_blank">Amazon.co.jp で詳細を見る</a>
		</div>
	</div>
	<div class="amazonlink-footer" style="clear: both;">
		<div class="amazonlink-powered-date">
		Powerd by <a href="http://blog.yoshitomo.org/amazonlink">AmazonLink</a> 2.0.0 beta3.
		</div>
	</div>
</div>
<br />
<div class="amazonlink-box">
	<div class="amazonlink-image">
		<a href="http://www.amazon.co.jp/%E5%A7%AB%E5%A7%AB%E6%97%85%E8%A1%8C-%E8%92%BC%E4%BA%95%E3%81%9D%E3%82%89%C3%97%E9%BA%BB%E7%BE%8E%E3%82%86%E3%81%BE-%E3%83%91%E3%83%AA%E7%B7%A8-DVD-%E8%92%BC%E4%BA%95%E3%81%9D%E3%82%89/dp/B003V2JPMS%3FSubscriptionId%3DAKIAJ6YR6CXFBTZYQINA%26tag%3Duntitled-documents-22%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB003V2JPMS" name="amazonlink" target="_blank">
		<img src="http://ecx.images-amazon.com/images/I/51gFGepmqHL._SL160_.jpg" alt="姫姫旅行 蒼井そら×麻美ゆま パリ編 [DVD]" />
		</a>
	</div>
	<div class="amazonlink-info">
		<div class="amazonlink-name">
			<a href="http://www.amazon.co.jp/%E5%A7%AB%E5%A7%AB%E6%97%85%E8%A1%8C-%E8%92%BC%E4%BA%95%E3%81%9D%E3%82%89%C3%97%E9%BA%BB%E7%BE%8E%E3%82%86%E3%81%BE-%E3%83%91%E3%83%AA%E7%B7%A8-DVD-%E8%92%BC%E4%BA%95%E3%81%9D%E3%82%89/dp/B003V2JPMS%3FSubscriptionId%3DAKIAJ6YR6CXFBTZYQINA%26tag%3Duntitled-documents-22%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB003V2JPMS" name="amazonlink" target="_blank">姫姫旅行 蒼井そら×麻美ゆま パリ編 [DVD]</a>
		</div>
		<div class="amazonlink-detail"> <br />ポニーキャニオン <br />売り上げランキング: 2,061
		</div>
		<div class="amazonlink-link">
		<a href="http://www.amazon.co.jp/%E5%A7%AB%E5%A7%AB%E6%97%85%E8%A1%8C-%E8%92%BC%E4%BA%95%E3%81%9D%E3%82%89%C3%97%E9%BA%BB%E7%BE%8E%E3%82%86%E3%81%BE-%E3%83%91%E3%83%AA%E7%B7%A8-DVD-%E8%92%BC%E4%BA%95%E3%81%9D%E3%82%89/dp/B003V2JPMS%3FSubscriptionId%3DAKIAJ6YR6CXFBTZYQINA%26tag%3Duntitled-documents-22%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB003V2JPMS" name="amazonlink" target="_blank">Amazon.co.jp で詳細を見る</a>
		</div>
	</div>
	<div class="amazonlink-footer" style="clear: both;">
		<div class="amazonlink-powered-date">
		Powerd by <a href="http://blog.yoshitomo.org/amazonlink">AmazonLink</a> 2.0.0 beta3.
		</div>
	</div>
</div>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iex3.info/archives/984/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.iex3.info/archives/984" />
	<feedburner:origLink>http://www.iex3.info/archives/984</feedburner:origLink></item>
		<item>
		<title>焼きそばパンのパン抜きが大人気・・・だと・・・</title>
		<link>http://feeds.iex3.info/~r/UntitledDocuments/~3/vrOp1itI9EE/982</link>
		<comments>http://www.iex3.info/archives/982#comments</comments>
		<pubDate>Wed, 28 Jul 2010 17:18:39 +0000</pubDate>
		<dc:creator>kimikato</dc:creator>
				<category><![CDATA[ネット]]></category>
		<category><![CDATA[焼きそば]]></category>
		<category><![CDATA[焼きそばパン]]></category>

		<guid isPermaLink="false">http://www.iex3.info/?p=982</guid>
		<description><![CDATA[
	この記事の所要時間： 約 3分33秒

焼きそばパンのパン抜きが大人気！「パンにはさんで食べるのがおすすめ」 &#124; ガハろぐNews　ヽ(･ω･)/ｽﾞｺｰより。

1： SAKO TRG-21(東京都)：2010/0 [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/JD4Dgbtrvdnl6aXDRNBcnhcpP-k/0/da"><img src="http://feedads.g.doubleclick.net/~a/JD4Dgbtrvdnl6aXDRNBcnhcpP-k/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/JD4Dgbtrvdnl6aXDRNBcnhcpP-k/1/da"><img src="http://feedads.g.doubleclick.net/~a/JD4Dgbtrvdnl6aXDRNBcnhcpP-k/1/di" border="0" ismap="true"></img></a></p><div class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Fwww.iex3.info%2Farchives%2F982&amp;text=%E7%84%BC%E3%81%8D%E3%81%9D%E3%81%B0%E3%83%91%E3%83%B3%E3%81%AE%E3%83%91%E3%83%B3%E6%8A%9C%E3%81%8D%E3%81%8C%E5%A4%A7%E4%BA%BA%E6%B0%97%E3%83%BB%E3%83%BB%E3%83%BB%E3%81%A0%E3%81%A8%E3%83%BB%E3%83%BB%E3%83%BB&amp;lang=ja&amp;count=horizontal"  class="twitter-share-button">Tweet</a></div><div style="border-top:2px dotted #ccc;border-bottom:2px dotted #ccc;padding:0.2em 0;text-align:right;font-size:small;color:#444; margin: 10px 0;">
	この記事の所要時間： <span style="font-weight:bold">約 <span style="color:#f00">3</span>分<span style="color:#f00">33</span>秒</span>
</div>
<p><a href="http://blog.livedoor.jp/funs/archives/51876024.html" target="_blank">焼きそばパンのパン抜きが大人気！「パンにはさんで食べるのがおすすめ」 | ガハろぐNews　ヽ(･ω･)/ｽﾞｺｰ</a>より。</p>
<blockquote cite="http://blog.livedoor.jp/funs/archives/51876024.html"><p>
1： SAKO TRG-21(東京都)：2010/07/27(火) 10:25:49.36ID:YKIp7LHz</p>
<p>　袋入りの焼きそばに、がぶりとかじりつく「このまんま焼（やき）そば」を<br />
鹿児島県姶良市のイケダパンが売り出した。希望小売価格は税込み１０５円。 </p>
<p>　ソースとめんは同社の「焼きそばパン」の具そのもの。袋の口を開けて下か<br />
ら押し出して食べる。手軽さと少し辛めの味が受けて１日約５千個を売り上げる人気だ。 </p>
<p>　同社には「野菜や肉といっしょにいためてもおいしい」などファンからの反<br />
応が相次ぐ。中には「やっぱりパンにはさんで食べるのが、おすすめ」という声も。 </p>
<p><a href="http://www.iex3.info/wp-content/uploads/2010/07/ea683ee2.jpg" title="このまんま焼きそば"><img src="http://www.iex3.info/wp-content/uploads/2010/07/ea683ee2-192x250.jpg" alt="このまんま焼きそば" title="このまんま焼きそば" width="192" height="250" class="alignnone size-thumbnail wp-image-983" /></a></p>
<p><a href="http://www.asahi.com/national/update/0726/SEB201007260059.html " target="_blank">http://www.asahi.com/national/update/0726/SEB201007260059.html </a>
</p></blockquote>
<p>そ、それはただの焼きそばというのではないのかい？<br />
「このまんま焼きそば」＋「野菜 or 肉」は普通の焼きそばだし・・・</p>
<div class="aa">
　　 　 　 　 　 　 　 /|:::::::::::::::::::::ヽ.:.:.:.:､:.:.:.:､:.:.:.､.:.､.:.:.:.:.:.::｀゛＞<br />
　　　　　　　　　　 /{::|:＼:::::::＼.:.:.:＼.:.:.ヽ::.::.ヽ:.:.ヽ::::::::::.:.｀゛ｰ- ..,__<br />
：　何　：　　　　／:|::&#8217;,:ﾄ､::::::ヽ､:.＼:.:.:.＼:.:.ヽ:.:.:＼.:.:.:.:.:::.:.:.:.:::.::::_;:-&#8217;´　　 ：　：　：<br />
：　が　：　　　//:/:::|::&#8217;,|::&#8217;､:::::::::＼:.:＼.:.:.ヽ:.:.:＼:.:..＼::::::::::::＼､::::＼　 　 ：　：　：<br />
：　何　：　　/!::|::l::::/|:::l:ヽ:＼::ヽ:.:＼:.:＼.:::ヽ:.:.:ヽ:.:.:.:＼::::::::::::＼￣　　　：　：　：<br />
：　だ　：　　 |/l::|::|::|:ﾄ､:::::::::､､:ヽ､:.:.:.:::::::::::::::ヽ::::.:ヽ:.:.:.:.＼:.:.:.ヽ:::＼.　　 ：　：　：<br />
：　か　：　　 |::|::/l::|::|r‐ヽ:::::ヽ(ヽー,―＼::::::､::::::::::ヽ::.:.::::::.:::::::ヾ.￣　　 ：　：　：<br />
：　　 　：　　 }//l::|:::|{（:::）ヾ､:::ヽ ＼!（:::） ヽ,:::ヽ:::::::::::::::::::::::::::::::::::ヾ、 　 ：　：　：<br />
：　わ　：.　　|/l::|::|:::|ヽ==&#8221;&#8221; ＼:ヽ、ヽ=＝&#8217;&#8221; |:::::::::::::::::::::::::::::::::::ヽ､::::＼<br />
　　か 　 　 /　&#8217;,|::|:::|　　　/　　 ｀゛　　 　 　 |!::::::::::::::::::::::::::::ﾄ､::ﾄ､_｀ ゛`<br />
　　ら　　　　　　l::!::::ﾄ、 　&#8217;､　_　　　　　　 　 ||::::::::::::::::::::::::ﾄ:ヽヾ|　|￣￣￣｀ヽ、<br />
　　な　　 　 r&#8217;&#8221;´||&#8217;,::::&#8217;,　　　　 　 　 　 　 　 　 |:::::/l:::::|＼:::ﾄ､ヾ |　| 　 　 ／　/ ＼<br />
　　い　　　/ 　　ll　&#8217;,::&#8217;, 、 ｰこﾆ=-　　　　 　 /!::/ ヽ:::|　 ヾ､ 　ﾉ ﾉ　　／ 　,ｲ　　　ヽ、<br />
　　　　 　 ,&#8217;　　　 | 　&#8217;､:, ＼　&#8211;　　 　 　 ,. &#8216;´　|;&#8217;　 l ヾ､. 　 ／／　　　　　/ |　　　　l: l<br />
　　　　　　|　　　|!　　ヽ; 　ヽ 　 　 　 ／.:　 　 i! 　/ 　 ゛／／　|l　 　 　 /　|　 　 　 | |
</div>
<p><div class="amazonlink-box">
	<div class="amazonlink-image">
		<a href="http://www.amazon.co.jp/%E5%AF%8C%E5%A3%AB%E5%AE%AE%E3%82%84%E3%81%8D%E3%81%9D%E3%81%B0%EF%BC%91%EF%BC%90%E4%BA%BA%E5%89%8D%E3%82%BB%E3%83%83%E3%83%88/dp/B001BUN6MM%3FSubscriptionId%3DAKIAJ6YR6CXFBTZYQINA%26tag%3Duntitled-documents-22%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB001BUN6MM" name="amazonlink" target="_blank">
		<img src="http://ecx.images-amazon.com/images/I/61dfCYumE8L._SL160_.jpg" alt="富士宮やきそば１０人前セット" />
		</a>
	</div>
	<div class="amazonlink-info">
		<div class="amazonlink-name">
			<a href="http://www.amazon.co.jp/%E5%AF%8C%E5%A3%AB%E5%AE%AE%E3%82%84%E3%81%8D%E3%81%9D%E3%81%B0%EF%BC%91%EF%BC%90%E4%BA%BA%E5%89%8D%E3%82%BB%E3%83%83%E3%83%88/dp/B001BUN6MM%3FSubscriptionId%3DAKIAJ6YR6CXFBTZYQINA%26tag%3Duntitled-documents-22%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB001BUN6MM" name="amazonlink" target="_blank">富士宮やきそば１０人前セット</a>
		</div>
		<div class="amazonlink-detail"> <br />富士宮やきそばのよねやま <br />売り上げランキング: 5,151
		</div>
		<div class="amazonlink-link">
		<a href="http://www.amazon.co.jp/%E5%AF%8C%E5%A3%AB%E5%AE%AE%E3%82%84%E3%81%8D%E3%81%9D%E3%81%B0%EF%BC%91%EF%BC%90%E4%BA%BA%E5%89%8D%E3%82%BB%E3%83%83%E3%83%88/dp/B001BUN6MM%3FSubscriptionId%3DAKIAJ6YR6CXFBTZYQINA%26tag%3Duntitled-documents-22%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB001BUN6MM" name="amazonlink" target="_blank">Amazon.co.jp で詳細を見る</a>
		</div>
	</div>
	<div class="amazonlink-footer" style="clear: both;">
		<div class="amazonlink-powered-date">
		Powerd by <a href="http://blog.yoshitomo.org/amazonlink">AmazonLink</a> 2.0.0 beta3.
		</div>
	</div>
</div>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iex3.info/archives/982/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.iex3.info/archives/982" />
	<feedburner:origLink>http://www.iex3.info/archives/982</feedburner:origLink></item>
	</channel>
</rss>
