2013-05-01から1ヶ月間の記事一覧

KVM上にDebianをインストールする

Ubuntu 12.04 LTS(x86_64) のKVMでDebian wheezy i386を動かしてみる インストール ネットインストール用のCDイメージをダウンロード。 $ wget http://cdimage.debian.org/cdimage/release/current/i386/iso-cd/debian-7.0.0-i386-netinst.iso 空のディスク…

QEMU 1.5.0-rc3をソースからビルドする

ソースを持ってくる 以下のところから、tarアーカイブを持ってきて展開するか、git cloneする。 http://wiki.qemu.org/Download $ git clone git://git.qemu-project.org/qemu.git qemu.git $ cd qemu.git $ git checkout -b work.v1.5.0 v1.5.0-rc3 pixman…

Ruby 2.0をソースからビルドする

Linux上でのネイティブビルド 環境は Ubuntu 12.04LTS (x86_64) $ wget ftp://ftp.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p195.tar.bz2 $ tar xf ruby-2.0.0-p195.tar.bz2 $ mkdir obj $ cd obj $ ../ruby-2.0.0-p195/configure $ make -j8 $ make test $ s…