LoginSignup
6
6

More than 5 years have passed since last update.

仮想開発環境の構築 其の弐~開発ツールをインストールする

Last updated at Posted at 2014-07-23

ディベロップメントツールをインストールする

インストールには"yum"コマンドを使います。

yum:パッケージのインストール,アップデート,アンインストールなどを行います。

# yum -y groupinstall "Development tools"

ディベロップメントツールには様々な開発ツールが含まれています。
確認するためには以下のコマンドを実行してください。

# yum groupinfo 'Development tools'

vim,git,readlineをインストールする

git:分散型バージョン管理システム
vim:テキストエディタ
readline:行入力支援ライブラリ(行頭移動,行末移動,Tab補間,etc...)

# yum -y install vim-enhanced git readline-devel

アップデートする

とりあえず全てのパッケージをアップデートします。

# yum -y update
6
6
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
6
6