2
2

More than 5 years have passed since last update.

Ubuntu 12.04 LTSのインストールと初期設定

Last updated at Posted at 2013-12-23

タッチパッドを無効にする

タッチパッドがうざくてしかたがないので無効にする。

/usr/share/X11/xorg.conf.d/10-evdev.conf
Section "InputClass"
         Identifier "evdev touchpad catchall"
         MatchIsTouchpad "on"
         MatchDevicePath "/dev/input/event*"
+        Option "Ignore" "on"
         Driver "evdev"
 EndSection

必須ソフトのインストール

$ sudo apt-get install git
$ sudo apt-get install vim
$ sudo apt-get install curl
$ sudo apt-get install zsh
$ sudo apt-get install tmux
$ sudo apt-get install ncftp

自分用の環境設定

$ cd ~
$ mkdir -p git && cd git
$ git clone git@github.com:keiji0/dotfiles.git && cd dotfiles
$ 

Terminalの設定

カラースキームはSolarized Colorscheme for Gnome Terminalを使う

$ git clone git://github.com/sigurdga/gnome-terminal-colors-solarized.git
$ cd gnome-terminal-colors-solarized
$ ./solarize

Emacs 24のインストール

package.elが入っているのでv24を入れる

$ sudo add-apt-repository ppa:cassou/emacs
$ sudo apt-get update
$ sudo apt-get install emacs24 emacs24-el

ref. http://gihyo.jp/admin/serial/01/ubuntu-recipe/0235

vmware playerのインストール

Download: https://my.vmware.com/jp/web/vmware/free#desktop_end_user_computing/vmware_player/6_0

$ sudo bash VMware-Player-6.0.1-1379776.x86_64.bundle
# インストーラーの指示に従う

参考

  1. Ubuntu 13.10をインストールした直後に行う設定 & インストールするソフト
2
2
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
2
2