とりあえず

# display
xrandr
xrandr --output VGA1 -- mode 1280x1024 --right-of HDMI2
xrandr --output HDMI2 -- mode 1920x1080

# xfce
apt-get install xfce4
apt-get install xfce4-goodies

# ime
apt-get install ibus-anthy
apt-get install ibus-mozc
ibus-setup

# flash
#             add /etc/apt/sources.list
#             deb ftp://ftp.debian.org/debian stable main contrib non-free
apt-get update
apt-get install flashplugin-nonfree

# git 
apt-get install git
git config --global user.name "bobuhiro11"
git config --global user.email "hogehoge@hoge.com"
ssh-keygen

# vim
#             for python support
apt-get install vim-gnome 

# skype
#             download from http://www.skype.com/en/download-skype/skype-for-linux/
dpkg -i skype-debian_4.2.0.11-1_i386.deb
apt-get -f install

# eclipse
deb http://ftp.de.debian.org/debian wheezy main 
apt-get update
apt-get install eclipse

# latex(utf8)
apt-get install texlive-lang-cjk

# icedove
apt-get install icedove

# gcc
apt-get install gcc

# make
apt-get install make

# mikutter
#             add /etc/apt/sources.list
#             deb http://ftp.de.debian.org/debian sid main
apt-get update
apt-get install mikutter

# ruby
apt-get install rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build
apt-get install zlib1g zlib1g-dev
rbenv install 1.9.3-p448
rbenv global 1.9.3-p448