/etc/network/interfacesでコメントになっている以下を有効にし、既に設定されているものをコメントにする。
auto eth0 iface eth0 inet dhcp
/sbin/reboot
ユーザーズガイドのとおり/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
$ sudo apt-get install zip
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
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
$ sudo apt-get install zlib1g-dev
ダウンロード
/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