- HDMIケーブル
- http://goo.gl/5xlKW
- microUSB
- http://goo.gl/ba4T6
Username : pi
Password : raspberry
Username : pi
Password : raspberry
Raspberry Piが起動できたらraspi-config
で下記の設定をする
日本語化
echo "export LANG=ja_JP.UTF-8" >>~/.profile
固定IPを設定してHDMIケーブルとはおさらばする
$ sudo vi /etc/network/interfaces
してiface eth0 inet dhcpの行を
iface eth0 inet static
address <割り当てるIPアドレス>
netmask <サブネットマスク>
gateway <デフォルトルータのIPアドレス>
終わったら
$ sudo vi /etc/resolv.conf
で
nameserver <DNSサーバのIPアドレス>
を変更してから
sudo /etc/init.d/networking reload
再起動して固定IPになっていることを確認する
http://www.limemo.net/blog/2012/09/raspberry-pi-use-static-ip-address.html
http://ttanimu.wordpress.com/2012/09/05/raspberry-pi-raspbian-wheezy-%E3%81%A7%E5%9B%BA%E5%AE%9Aip/
Raspberry Pi 最初の起動時に表示された簡易セットアップツールは
sudo raspi-config
で起動できる
change_timezone を選択してタイムゾーンを ASIA / Tokyo にセット
sudo apt-get install emacs
sudo apt-get install zsh
# groupadd <グループ名>
# useradd -m -s /bin/zsh -g <グループ名> <ユーザ名>
# passwd <ユーザ名>
# sudo visudo
http://qiita.com/inouet/items/478f4228dbbcd442bfe8
http://blog.pedrocarrico.net/post/29478085586/compiling-and-installing-ruby-on-the-raspberry-pi-using
TMP_SIZE=256m
sudo raspi-configでoverclockしてみた
無線LANクライアントのアダプタ買えば無線LANもつかえるぽい
http://d.hatena.ne.jp/pasela/20121224/raspi_wlan
http://goo.gl/0HN5f
sudo apt-get install git
sudo gem update --system
sudo gem update
sudo gem install bundler
sudo apt-get install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison ruby1.9.1-dev
%cat Gemfile
source 'https://rubygems.org'
gem 'rake', '0.9.2'
gem 'activesupport'
# scraping
gem 'nokogiri'
gem 'mechanize'
# database
gem 'sqlite3'
gem 'activerecord'
# debug
gem 'pry'
sudo apt-get install tmux
wget https://raw.github.com/bluerabbit/dotfiles/master/dot.tmux.conf
mv dot.tmux.conf .tmux.conf
vi .tmux.conf
wget https://raw.github.com/bluerabbit/dotfiles/master/dot.gitconfig
mv dot.gitconfig .gitconfig
vi .gitconfig
接続した図はこんな感じ
http://www.mztn.org/rpi/rpi01.html