[KAGOYA CLOUD] セットアップ用コマンド(モジュール)のインストール

セットアップ等に必要なコマンド/モジュール類をインストールします。

1. which

# yum install which

2. gcc関連

# yum install gcc*

※「kernel-headers」の依存関係が原因で「gcc」をインストールできない場合には「/etc/yum.conf」を以下のように変更します。

# vi /etc/yum.conf

【変更前】
exclude=kernel* centos*

【変更後】
#exclude=kernel* centos*
exclude=centos*

3. mail

# yum install mailx

4. zlib

# yum install zlib
# yum install zlib-devel

5. bzip2

# yum install bzip2
# yum install bzip2-devel

6. dig

# yum install bind-utils

7. openssl

# yum install openssl
# yum install openssl-devel

8. crontab

# yum install crontabs
※インストールコマンドは「crontabs」であって「crontab」ではないので注意。
サービスを起動します。
# systemctl start crond.service
# systemctl enable crond.service


最終更新:2019年08月29日 13:27