LoginSignup
4
4

More than 5 years have passed since last update.

MBA構築

Last updated at Posted at 2012-12-26

MBA構築時のメモ

MBA環境を構築した時のメモをとりあえず書いてみようかなと思います。

google japanese inputインストール

日本語入力は慣れてる環境でやりたい

chromeインストール

わからない事があっても素早く調べれないと困るので、safariで調べていい感じにインストールします

iTerm2をインストール

WEBで検索してダウンロードして、インストール(AppStoreにない)

homebrewインストール

/usr/bin/ruby -e "$(/usr/bin/curl -fsSL https://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb)"
  • homebrewが正しくインストールしてあることを確認
brew doctor
  • homebrewでインストールするパッケージ
 brew install ImageMagick
 brew install mysql

SCM使えるようにする

  • sshキー作成
 ssh-keygen
 cat .ssh/id_rsa.pub
  • git-hub, bitbucketへそれぞれ登録する

設定ファイルの配置

  • dotfiles
 git clone git@github.com:fukajun/dotfiles.git

Rubyのインストール

オプションを指定せずに、インストールしてしまうと、irbで文字化けしてしまうので
rvmが用意しているreadlineをインストールして、それを利用してRubyをインストール
する。

  • RVM
curl -L https://get.rvm.io | bash -s stable
rvm requirements
rvm pkg install readline
rvm pkg install zlib --verify-downloads 1
rvm pkg install openssl
rvm install 2.0.0

個人的なソフトウェア

witchをインストール

Tab切り替え動作変更ソフト
http://manytricks.com/witch/
「補助用装置にアクセスできるようにする」を有効にする

Dropboxインストール

Dropboxや

BetterTouchツールのインストール

vim

brew install vim
mkdir -p ~/.vim/bundle
git clone git://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim

ec2ssh

tmux

brew install tmux

OhMyZsh

4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4