$ drutil status Vendor Product Rev TEAC DV-W28S-W L.0A Type: DVD-R Name: /dev/disk2 Sessions: 1 Tracks: 1 Overwritable: 00:00:00 blocks: 0 / 0.00MB / 0.00MiB Space Free: 00:00:00 blocks: 0 / 0.00MB / 0.00MiB Space Used: 22:05:32 blocks: 99407 / 203.59MB / 194.15MiB Writability: Book Type: DVD-R (v5) Media ID: SONY16D1 $ diskutil unmountDisk disk2 Unmount of all volumes on disk2 was successful $ dd if=/dev/disk2 of=file.iso 397628+0 records in 397628+0 records out 203585536 bytes transferred in 49.532596 secs (4110133 bytes/sec) $ diskutil mountDisk disk2 Volume(s) mounted successfully
sweet flag
2012年6月29日金曜日
Mac の CLI から ISO イメージを作成する
Mac の CLI(Terminal.app)から ISO イメージを作成する方法です。思いっきり、[コマンド] マックでCDからISOイメージの作り方を参考にさせて頂きました。
2012年6月21日木曜日
Ubuntu 12.04LTS に Ruby on Rail 3 をインストールする
さくら VPS 上の Ubuntu 12.04LTS 上に Ruby + Rails3 をインストールした際のメモ書きです。
libyaml のインストール
先に書いてしまいますが、libyaml をインストールしないと以下のように yaml 関連のエラーが出てしまう為…It seems your ruby installation is missing psych (for YAML output). To eliminate this warning, please install libyaml and reinstall your ruby.…予め libyaml をインストールしておきます。
$ wget http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz $ tar -zxvf yaml-0.1.4.tar.gz $ cd yaml-0.1.4 $ ./configure $ make $ sudo make install
Ruby のインストール
次に Ruby 本体をインストールします。$ cd $ sudo apt-get -y install libssl-dev zlib1g-dev libreadline6-dev make $ wget ftp://ftp.ruby-lang.org/pub/ruby/ruby-1.9-stable.tar.bz2 $ tar -xjf ruby-1.9-stable.tar.bz2 $ cd ruby-1.9.3-p194 $ ./configure $ make ・ ・ ・ Generating RI format into /home/enbutsu/ruby-1.9.3-p194/.ext/rdoc... Files: 772 Classes: 1355 ( 701 undocumented) Modules: 304 ( 151 undocumented) Constants: 2249 ( 827 undocumented) Attributes: 1010 ( 437 undocumented) Methods: 10283 (3082 undocumented) Total: 15201 (5198 undocumented) 65.80% documented Elapsed: 122.0s $ sudo make install $ ruby -v ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-linux]RubyGems のバージョンを最新にしておきます。
$ sudo gem update --system $ gem -v 1.8.24gem 使用時に ri や rdoc をインストールしないように以下を記述します。
$ vi ~/.gemrc install: --no-ri --no-rdoc update: --no-ri --no-rdoc
Rail3 のインストール
Rails3 をインストールします。特にバージョンは指定せず、最新版をインストールしました。$ sudo gem install rails $ rails -v Rails 3.2.6
SQLite3 のインストール
最後に SQLite3 をインストールします。$ sudo apt-get -y install libsqlite3-dev $ sudo gem install sqlite3
2012年6月19日火曜日
git&bitbucket でファイルのバージョン管理をする
会社の方に教えて頂いたのですが、bitbucket が便利そう。github とは違って、無料プランでもプライベート・リポジトリが作れるそうです。SSH の公開鍵を bitbucket アカウントの管理画面からアップロードしておき、後は git で push します。
$ cd code $ git clone git@bitbucket.org:username/repository.git $ git init $ git add * $ git commit -a -m "My first commit." $ git remote add origin git@bitbucket.org:username/repository.git $ git push origin master
2012年6月17日日曜日
Django 1.4 の syncdb でユーザ作成に関するエラー
ウン十の手習いで Python + Django をはじめてみました。環境は以下の通りです。
- Mac OS X 10.7.4
- Python 2.7.1.
- Django 1.4
- PyCharm 2.5.1
Getting Started with PyCharm as a Django Development を見ながら、ウンウン唸ってます… が、syncdb して superuser を作成しようとした際に以下のエラーが表示されてしまいました。
You just installed Django's auth system, which means you don't have any superusers defined. Would you like to create one now? (yes/no): yes Traceback (most recent call last): File "/Applications/PyCharm.app/helpers/pycharm/django_manage.py", line 20, in -- snip -- line 85, in get_system_username return getpass.getuser().decode(locale.getdefaultlocale()[1]) TypeError: decode() argument 1 must be string, not None Process finished with exit code 1これは Django 1.4 に関する既知の問題だそうです。
確かに、上記サイトに書いてある対処でエラーは出なくなりました!
2012年6月14日木曜日
2012年5月10日木曜日
さくら VPS に FreeBSD 9.0 / Ubuntu 12.0 をインストールした際の参考リンク
さくら VPS に FreeBSD 9.0 と Ubuntu 12.0 をインストールした際、参考にさせて頂いたリンクをメモしておきます。
FreeBSD 関連リンク
Ubuntu 関連リンク
2012年4月21日土曜日
Lion 上で Qemu 0.14.1 を動かす
Mac OS X 10.7.3(Lion)上に Qemu 0.14.1 をインストールした際の自分メモです。こちらを参考にさせて頂きました。
- Qemu/Junos on OSX 10.7.3
- Install GCC-4.2.1 (Apple build 5666.3) with Xcode 4.2
- Mac OS X Lion + Xcode 4.2.1環境にLLVM-GCCではないGCC 4.2.1 (Apple build 5666.3) をインストールする
gcc のインストール
まず、非 LLVM な gcc をインストールします。opensource.apple.com から gcc のソースコードをダウンロードし、コンパイル&インストールします。
$ cd /private/tmp $ curl -kLO http://opensource.apple.com/tarballs/gcc/gcc-5664.tar.gz $ tar zxvf gcc-5664.tar.gz $ cd gcc-5664 $ mkdir -p build/obj build/dst build/sym $ sudo gnumake install RC_OS=macos RC_ARCHS='i386 x86_64' TARGETS='i386 x86_64' SRCROOT=`pwd` OBJROOT=`pwd`/build/obj DSTROOT=`pwd`/build/dst SYMROOT=`pwd`/build/sym $ sudo ditto build/dst /gcc がインストールされたことを確認します。
$ gcc-4.2 --version i686-apple-darwin11-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5664) Copyright (C) 2007 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
gnutls のインストール
gnutls が無いと qemu のコンパイル時にエラーが発生する為、先に gnutls をインストールしておきます。今回は homebrew でインストールしました。$ brew install gnutls
qemu のインストール
最後に qemu をインストールします。patch を当ててから、qemu 本体をコンパイルします。$ curl -kLO http://download.savannah.gnu.org/releases/qemu/qemu-0.14.1.tar.gz $ curl -o qemu-0.14.1-gns3_patches.tgz http://forum.gns3.net/download/file.php?id=859 $ $ tar xjf qemu-0.14.1.tar.gz $ tar xjf qemu-0.14.1-gns3_patches.tgz $ $ mv qemu-0.14.1_* qemu-0.14.1 $ cd qemu-0.14.1 $ $ patch -p1 -i qemu-0.14.1_hw_e1000_c.patch $ patch -p1 -i qemu-0.14.1_block_raw-win32_c.patch $ patch -p1 -i qemu-0.14.1_Makefile_objs.patch $ patch -p1 -i qemu-0.14.1_net_c.patch $ patch -p1 -i qemu-0.14.1_net_h.patch $ patch -p1 -i qemu-0.14.1_net_udp_c.patch $ patch -p1 -i qemu-0.14.1_net_udp_h.patch $ $ cp /opt/local/include/gnutls . $ cp -r /usr/local/Cellar/gnutls . $ $ ./configure --prefix=/usr/local --disable-sdl --enable-cocoa --disable-docs --target-list="i386-softmmu x86_64-softmmu" --cc=/usr/bin/gcc-4.2 --host-cc=/usr/bin/gcc-4.2 $ make $ sudo make install
登録:
投稿 (Atom)