<?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>Knives &#187; VMware</title>
	<atom:link href="http://knives.feelmy.net/tag/vmware/feed/" rel="self" type="application/rss+xml" />
	<link>http://knives.feelmy.net</link>
	<description>パソコンとご飯とゲームのblog</description>
	<lastBuildDate>Tue, 02 Nov 2010 21:37:55 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>VMware Workstation 6.5にUbuntu 8.10を入れてみる</title>
		<link>http://knives.feelmy.net/2009022177/</link>
		<comments>http://knives.feelmy.net/2009022177/#comments</comments>
		<pubDate>Sat, 21 Feb 2009 07:25:26 +0000</pubDate>
		<dc:creator>ebith</dc:creator>
				<category><![CDATA[未分類]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://knives.feelmy.net/?p=77</guid>
		<description><![CDATA[メインPCであるWindows XP上でLinuxを動かす手段としてcoLinuxを使って来たんだけど
こまごまと気にくわない事もあるしこれを機会にVMwareを試してみることにした。
VMware Workstatio &#8230; <a href="http://knives.feelmy.net/2009022177/">続きを読む <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>メインPCであるWindows XP上でLinuxを動かす手段としてcoLinuxを使って来たんだけど<br />
こまごまと気にくわない事もあるしこれを機会にVMwareを試してみることにした。<br />
VMware Workstationは30日しか無料で使えないけどもっとも扱いやすいみたいだしとりあえずソレで。</p>

<p>Workstationを使うなら仮想マシンの作成は容易だし、<br />
入れるOSもUbuntuでインストールが簡単なのでインストール終了までは端折っとく。 
<br /></p>

<h4>とりあえずアップデート</h4>

<pre><code>sudo apt-get update
sudo apt-get dist-upgrade
</code></pre>

<p><br /></p>

<h4>VMware Toolsのインストール</h4>

<p><a href="http://cccarey.wordpress.com/howtos/howto-install-vmware-tools-on-ubuntu-810-intrepid/" title="HowTo: Install VMWare Tools on Ubuntu 8.10 (Intrepid) « In Search of Equilibrium">HowTo: Install VMWare Tools on Ubuntu 8.10 (Intrepid)</a><br />
VMware Toolsが古くてそのままじゃインストールできないので<br />
Open Virtual Machine Toolsで下準備をしてからインストールしてあげるって感じみたい。<br />
VMware内でページを開いてひたすらコピペしていけば終わるので楽ちん。<br />
コピー＆ペーストのためには&#8221;vmware-users&#8221;を起動しておく必要があるので適当な自動起動手段で処理。<br />
今回はGNOMEじゃなくOpenBoxを使う事にしたので~/.config/openbox/autostart.shに追記することになった。<br />
<br /></p>

<h4>LXDE入れてみる</h4>

<p>今回の用途に限れば重たいGNOMEは遠慮したいので<br />
Ubuntu 8.10からapt-get installできるようになったらしいLXDEとやらを試す。
GUIでWindowの見た目を設定できるobconfもついでに。</p>

<pre><code>sudo apt-get install lxde
sudo apt-get install obconf
</code></pre>

<p />

<p>しかしOpenBoxだけで十分という結論に達したのでLXDEさようなら。<br />
設定ファイルは/etc/xdg/openbox/のを ~/.config/openbox/にコピーして適当に書き換える。<br />
<br /></p>

<h4>フォント追加(M+ bitmap)</h4>

<p>小さめな画面で使うので全部bitmapフォントで行きたい。<br />
xfonts-mplusのインストールだけではOpenBox部分に使えないのでURLを参考にさらに弄っておく。<br />
<a href="http://petit-noise.net/node/70" title="gnome-terminal で M+ ビットマップフォントを使う | ぷちのいず">gnome-terminal で M+ ビットマップフォントを使う</a></p>

<pre><code>sudo apt-get install xfonts-mplus
</code></pre>

<p><br /></p>

<h4>ディレクトリ類を英語に変更</h4>

<pre><code>LANG=C xdg-user-dirs-gtk-update
</code></pre>

<p><br /></p>

<h4>GitHubのためにGitも</h4>

<p><a href="http://git-scm.com/" title="Git - Fast Version Control System">Git &#8211; Fast Version Control System</a></p>

<pre><code>wget http://kernel.org/pub/software/scm/git/git-1.6.1.3.tar.gz
tar xvfz git-1.6.1.3.tar.gz
cd git-1.6.1.3
./configure
make
sudo make install
</code></pre>

<p />

<p>自分のdotfilesリポジトリから設定ファイルを持って来たい<br />
<a href="http://github.com/guides/providing-your-ssh-key" title="Providing your SSH Key - Guides - GitHub">Providing your SSH Key &#8211; Guides &#8211; GitHub</a></p>

<pre><code>git clone git@github.com:ebith/dotfiles.git
ln -s /home/ebith/dotfiles/.zshrc /home/ebith/.zshrc
ln -s (略
</code></pre>

<p><br /></p>

<h4>mlterm(フォント設定はURLを参考にさせてもらった、boldは見にくかったのでそこだけ変更。)</h4>

<p><a href="http://choklog.jp/viz3/2010/" title="ubuntu 上の mlterm で mplus を使う設定 - viz3">ubuntu 上の mlterm で mplus を使う設定 &#8211; viz3</a></p>

<pre><code>sudo apt-get install mlterm
</code></pre>

<p><br /></p>

<h4>zsh入れる</h4>

<pre><code>sudo apt-get install zsh
chsh -s /usr/bin/zsh
</code></pre>

<p><br /></p>

<h4>vim入れる</h4>

<pre><code>sudo apt-get install vim
</code></pre>

<p><br /></p>

<h4>|が出ないのでキーボードレイアウトを変更</h4>

<p>Happy Hacking Keyboard->USA->USAって選んだ気がする。</p>

<pre><code>sudo dpkg-reconfigure console-setup
</code></pre>

<p><br /></p>

<h4>不要なデーモン消しとく</h4>

<p>微妙にrcconの表示が崩れるのはなんでだろう</p>

<pre><code>sudo apt-get install rcconf
</code></pre>

<p><br /></p>
]]></content:encoded>
			<wfw:commentRss>http://knives.feelmy.net/2009022177/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/

Minified using disk
Page Caching using disk (enhanced)
Database Caching using disk
Object Caching 97/194 objects using disk

Served from: knives.feelmy.net @ 2012-02-05 20:41:54 -->
