Skip to content

Instantly share code, notes, and snippets.

@katsuyoshi
Created October 16, 2012 11:07
Show Gist options
  • Save katsuyoshi/3898684 to your computer and use it in GitHub Desktop.
Save katsuyoshi/3898684 to your computer and use it in GitHub Desktop.
AX3

IPアドレス設定

http://www.debian.org/doc/manuals/debian-reference/ch05.ja.html#_the_network_interface_served_by_the_dhcp

/etc/network/interfacesでコメントになっている以下を有効にし、既に設定されているものをコメントにする。

auto eth0 iface eth0 inet dhcp

リブート

/sbin/reboot

sudoの設定

ユーザーズガイドのとおり/etc/sudoers.d/rootを編集したがいかず。

http://d.hatena.ne.jp/pogin/20111008/1318101299

$ visudo

%sudoの下に追加

%sudo ALL=(ALL:ALL) ALL
username ALL=(ALL:ALL) ALL

OK

zipインストール

$ sudo apt-get install zip

LibYamlインストール

railsインストール時にエラーが出たため ダウンロード

$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

zlibインストール

railsインストール時にエラーがでたため

$ wget http://zlib.net/zlib-1.2.7.tar.gz
$ tar zxvf zlib-1.2.7.tar.gz
$ cd zlib-1.2.7
$ ./configure
$ make
$ sudo make install

これでも下の様になるので

$ sudo gem install rails
[sudo] password for kito: 
ERROR:  Loading command: install (LoadError)
    cannot load such file -- zlib
ERROR:  While executing gem ... (NameError)
    uninitialized constant Gem::Commands::InstallCommand

ここにあるのを試す http://stackoverflow.com/questions/9727908/cannot-load-such-file-zlib-even-after-using-rvm-pkg-install-zlib

$ sudo apt-get install zlib1g-dev

rubyインストール

ダウンロード

/home/kito/work
$ cd ruby
$ ls
$ wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p286.zip
--2012-10-17 14:07:12--  ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p286.zip
           => `ruby-1.9.3-p286.zip'
Resolving ftp.ruby-lang.org... 221.186.184.68
Connecting to ftp.ruby-lang.org|221.186.184.68|:21... connected.
Logging in as anonymous ... Logged in!
==> SYST ... done.    ==> PWD ... done.
==> TYPE I ... done.  ==> CWD (1) /pub/ruby/1.9 ... done.
==> SIZE ruby-1.9.3-p286.zip ... 13906047
==> PASV ... done.    ==> RETR ruby-1.9.3-p286.zip ... done.
Length: 13906047 (13M) (unauthoritative)
$ unzip ruby-1.9.3-p286.zip
$ cd ruby-1.9.3-p286
$ ./configure
$ make
$ sudo make install

参照

http://d.hatena.ne.jp/the_yokochi/20111127/1322382198

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment