<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/howtoode/">
    <title>HOW TO ODE @ ウィキ</title>
    <link>http://w.atwiki.jp/howtoode/</link>
    <atom:link href="https://w.atwiki.jp/howtoode/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>HOW TO ODE @ ウィキ</description>

    <dc:language>ja</dc:language>
    <dc:date>2008-09-18T09:04:39+09:00</dc:date>
    <utime>1221696279</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/howtoode/pages/12.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/howtoode/pages/11.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/howtoode/pages/14.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/howtoode/pages/1.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/howtoode/pages/2.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/howtoode/pages/12.html">
    <title>VMware Playerを用いたUNIX系OSのエミュレーション</title>
    <link>https://w.atwiki.jp/howtoode/pages/12.html</link>
    <description>
      以下ではWindows上にUNIX系OSをエミュレートする方法をご説明します。

&amp;bold(){(1)OSのイメージファイルのダウンロード}
ここでは、例として Vine Linux をダウンロードすることにします(その他のOS
についても手順は同じです)。Vine Linux のホームページから、
イメージファイル(i386 isoファイル)をダウンロードします。

-[[Vine Linux Home Page&gt;http://www.vinelinux.org]]

&amp;bold(){(2)VMware Player のダウンロード}
下記ダウンロードサイトから最新versionのVMWare Playerをダウンロードします。

-[[VMware Playerのダウンロード&gt;&gt;http://www.vmware.com/jp/download/player/]]

(downloadの際にはメールアドレスなどの情報入力が必要になります)

&amp;bold(){(3)VMware Player のインストール}

ダウンロードしたインストーラを実行してインストールします。インストール後に
OSの再起動が必要です。

&amp;bold(){(4)仮想ディスクファイルの作成}
QEMU(Windows用)下記サイトからをダウンロードします。最新versionは
qemu-0.9.0-windows-2.zipです。(2008年9月現在)

-[[http://www.h7.dion.ne.jp/~qemu-win/index-ja.html]]

解凍したディレクトリをどこかの場所に置きます(説明ではC:\ に置いてあるとします)。
コマンドプロンプトを開いてディレクトリ内に移動します。

&gt; cd C:\qemu-0.9.0-windows

以下のコマンドで仮想ディスクファイルを作成できます。

(例)
&gt; qemu-img.exe create -f vmdk C:\Unix_OS\Unix_OS.vmdk 10G

Unix_OS.vmdkという仮想ディスクファイルがC:\Unix_OSディレクトリ内に
作成されます。(ディレクトリはあらかじめ好きな名前で作成しておきます。)
10Gというのは仮想ディスクのサイズを意味します。

&amp;bold(){(5)VMware Player用設定ファイルの作成}
以下の行をコピーしてファイルに保存してください。
(ここではファイル名をUnix_OS.vmxとしC:\Unix_OSディレクトリに置いたとします。)
仮想ディスクファイルと設定ファイルは同じディレクトリに置いてください。

mensizeにはメモリのサイズが、idel:0.fileName には(0)でダウンロードした
isoファイルの名前が入ります。


&gt;config.version = &quot;8&quot;
&gt;virtualHW.version = &quot;4&quot;
&gt;scsi0.present = &quot;TRUE&quot;
&gt;scsi0.virtualDev = &quot;lsilogic&quot;
&gt;memsize = &quot;512&quot;
&gt;ide0:0.present = &quot;TRUE&quot;
&gt;ide0:0.fileName = &quot;Unix_OS.vmdk&quot;
&gt;ide0:0.writeThrough = &quot;TRUE&quot;
&gt;ide1:0.present = &quot;TRUE&quot;
&gt;ide1:0.fileName = &quot;isoのファイル名(フルパス)&quot;
&gt;ide1:0.deviceType = &quot;cdrom-image&quot;
&gt;floppy0.startConnected = &quot;FALSE&quot;
&gt;floppy0.fileName = &quot;Auto detect&quot;
&gt;Ethernet0.present = &quot;TRUE&quot;
&gt;displayName = &quot;Vine Linux&quot;
&gt;guestOS = &quot;other26xlinux&quot;
&gt;priority.grabbed = &quot;normal&quot;
&gt;priority.ungrabbed = &quot;normal&quot;
&gt;powerType.powerOff = &quot;hard&quot;
&gt;powerType.powerOn = &quot;hard&quot;
&gt;powerType.suspend = &quot;hard&quot;
&gt;powerType.reset = &quot;hard&quot;
&gt;
&gt;ide1:0.autodetect = &quot;TRUE&quot;
&gt;floppy0.autodetect = &quot;TRUE&quot;
&gt;usb.present = &quot;TRUE&quot;
&gt;usb.generic.autoconnect = &quot;FALSE&quot;
&gt;sound.present = &quot;TRUE&quot;
&gt;sound.fileName = &quot;-1&quot;
&gt;sound.autodetect = &quot;TRUE&quot;
&gt;
&gt;extendedConfigFile = &quot;Unix_OS.vmxf&quot;
&gt;virtualHW.productCompatibility = &quot;hosted&quot;
&gt;tools.upgrade.policy = &quot;manual&quot;
&gt;
&gt;ethernet0.addressType = &quot;generated&quot;
&gt;uuid.location = &quot;56 4d 6a 40 2c 9d d1 5a-65 70 4a 22 e1 e0 4e 8a&quot;
&gt;uuid.bios = &quot;56 4d 6a 40 2c 9d d1 5a-65 70 4a 22 e1 e0 4e 8a&quot;
&gt;ide0:0.redo = &quot;&quot;
&gt;ethernet0.generatedAddress = &quot;00:0c:29:e0:4e:8a&quot;
&gt;ethernet0.generatedAddressOffset = &quot;0&quot;
&gt;tools.remindInstall = &quot;TRUE&quot;
&gt;
&gt;usb.autoConnect.device0 = &quot;&quot;



&amp;bold(){(6)Daemon Tools(デーモンツール)のダウンロードとインストール}

Daemon Tools(デーモンツール)は、CDのイメージファイルを仮想ドライブで疑似的
に実行できるフリーソフトです。ダウンロードとインストールは下記サイトで詳しく
説明されています。

-[[http://daemontools.gusoku.net/]]

&amp;bold(){(7)isoイメージをデーモンツールでマウント}

ダウンロードしたOSイメージファイルをマウントします。

&amp;bold(){(8)Vmware Player の起動}

以上ですべての準備が終わりました。Vmware Player を起動し、「開く」を
クリックして作成したvmxファイルを選択してください。以下のようなOSのインストール画面
が表示されれば成功です。あとはインストーラに従ってインストールを実行して下さい。

&amp;ref(WS000000.JPG)    </description>
    <dc:date>2008-09-18T09:04:39+09:00</dc:date>
    <utime>1221696279</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/howtoode/pages/11.html">
    <title>環境構築</title>
    <link>https://w.atwiki.jp/howtoode/pages/11.html</link>
    <description>
      必要となるアプリケーションはOctave、OpenGL、ODEの三つです。OSはUNIX系を前提としておりますが、Windows上でもCygwinを使うか、またはVMware Playerを用いてUNIX系OSをエミュレートする方法があります。Cygwinのダウンロード、インストールについてはすでに数多くのサイトでわかりやすく説明されていますのでそちらを参考にしてインストールして下さい。VMware Playerを使う方法については次のページをご覧ください。

-[[VMware Playerを用いたUNIX系OSのエミュレーション]]

----

Octave、OpenGL、ODEのダウンロードとインストールについては以下の書籍で解説されています。
(Octaveについてはソースからコンパイルしてインストールして下さい。)

-[[「強くなるロボティック・ゲームプレイヤーの作り方 ~実践で学ぶ強化学習~」(毎日コミュニケーションズ出版)&gt;http://book.mycom.co.jp/book/978-4-8399-2741-7/978-4-8399-2741-7.shtml]]
-[[この書籍についてのサポートページはこちら&gt;http://book.mycom.co.jp/support/e1/RL_support/]]


-[[トップページに戻る&gt;トップページ]]    </description>
    <dc:date>2008-09-18T09:00:40+09:00</dc:date>
    <utime>1221696040</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/howtoode/pages/14.html">
    <title>サンプルプログラム</title>
    <link>https://w.atwiki.jp/howtoode/pages/14.html</link>
    <description>
      現在このページは編集中です。










-[[トップページに戻る&gt;トップページ]]    </description>
    <dc:date>2008-09-17T19:51:36+09:00</dc:date>
    <utime>1221648696</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/howtoode/pages/1.html">
    <title>トップページ</title>
    <link>https://w.atwiki.jp/howtoode/pages/1.html</link>
    <description>
      **About

フリーで公開されている物理計算エンジンODE(Open Dynamics Engine)
と数値演算言語Octaveを用いてロボット制御や学習プログラムの解説するWikiです。


**メニュー
-[[環境構築]]
-[[サンプルプログラム]]    </description>
    <dc:date>2008-09-16T19:59:17+09:00</dc:date>
    <utime>1221562757</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/howtoode/pages/2.html">
    <title>メニュー</title>
    <link>https://w.atwiki.jp/howtoode/pages/2.html</link>
    <description>
      現在の時刻
&amp;fclock()

**メニュー
-[[トップページ]]
-[[環境構築]]
-[[サンプルプログラム]]

----

**外部リンク
-[[ODE公式サイト&gt;&gt;http://www.ode.org/]]
-[[Octave公式サイト&gt;&gt;http://www.gnu.org/software/octave]]
-[[demura.net:RoboCup・ODE・夢考房&gt;&gt;http://demura.net/index.php]]

// リンクを張るには &quot;[&quot; 2つで文字列を括ります。
// &quot;&gt;&quot; の左側に文字、右側にURLを記述するとリンクになります

----

**更新履歴
#recent(20)

&amp;link_editmenu(text=ここを編集)    </description>
    <dc:date>2008-09-16T15:41:13+09:00</dc:date>
    <utime>1221547273</utime>
  </item>
  </rdf:RDF>
