16
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

tmuxをインストールする

Last updated at Posted at 2014-08-12

##tmuxとは
tmuxを使うと一つのターミナルで複数のウィンドウを表示することができる。
ソースコードの編集とサーバーの起動を同時にできるので便利です。

似たようなアプリケーションにscreenがありますが、
先輩社員にscreenはオワコンって言われたのでこちらを導入しました。

##RPMforgeリポジトリをインストールする
RPMforgeリポジトリ:標準のyumコマンドではインストールできないパッケージを追加する。

ここから使用しているLinuxに合ったものをダウンロードする。
(CentOS6の64bitなら”rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm”)

wgetコマンドを使ってダウンロード

$ wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm

rpmコマンドを使ってインストール

###rpmコマンド
rpmパッケージをインストールする。
"-i"はインストールのオプション,"-v"と"-h"は情報表示のオプション。

$ sudo rpm -ivh rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm

”/etc/yum.repos.d/”ディレクトリにはyumのリポジトリファイルが入っている。
インストールが正常に完了していれば”rpmforge.repo”ファイルが確認できる。

##tmuxをインストールする

yumコマンドを使ってインストール

$ sudo yum -y install tmux

きっとtmuxコマンドでtmuxが立ち上がるはず・・・

##参考URL
http://centossrv.com/rpmforge.shtml

16
16
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
16
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?