Changes between Initial Version and Version 1 of epics/install/vmware_centos2


Ignore:
Timestamp:
05/10/13 22:51:47 (11 years ago)
Author:
obina
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • epics/install/vmware_centos2

    v1 v1  
     1= インストール後の設定 = 
     2 
     3== yum リポジトリの設定 == 
     4{{{ 
     5/etc/yum.repos.d/CentOS-Base.repo を編集して 
     6mirror.centos.org -> reflx1.kek.jp に変更します。 
     7}}} 
     8 1. yum update 
     9{{{ 
     10# yum update 
     11}}} 
     12 1. IPV6無効化 
     13 
     14 
     15== セキュリティ関連 == 
     16SELinux設定 : 機器制御目的で使用するので、無効にしておく。後でiptablesも無効にする。 
     17{{{ 
     18/etc/selinux/config を編集 
     19 
     20SELINUX=disabled 
     21}}} 
     22その後、マシン再起動が必要。 
     23 
     24 
     25 
     26== サービスの確認 == 
     27{{{ 
     28# chkconfig --list 
     29}}} 
     30 
     31以下のサービスを停止。 
     32{{{ 
     33# service iptables stop 
     34# service ipv6tables stop 
     35# service lvm2-monitor stop    : LVMを使っていないならば 
     36# service auditd stop          : SELinux使わないので不要 
     37# service mcstrans stop        : SELinux使わないので不要 
     38# service restorecond stop     : SELinux使わないので不要 
     39}}} 
     40 
     41再起動時のため、上のサービスの起動設定をオフに。 
     42{{{ 
     43# chkconfig iptables off 
     44....... 
     45}}} 
     46 
     47おそらく不要なので止めておく。 
     48{{{ 
     49blk-availability  : LVM2のミラーデバイス管理? 
     50iscsi       : iSCSI関連 
     51iscsid      : iSCSI関連 
     52mdmonitor   : ソフトウェアRAID 
     53}}} 
     54 
     55 
     56== 開発に必要なソフトウェアのインストール == 
     57以下のソフトをyumでインストールする。 
     58{{{ 
     59gcc 
     60gcc-c++ 
     61make 
     62wget 
     63ntp 
     64ntpd 
     65bind-utils    : dig, host, nslookup等 
     66 
     67EPICSに必要なので今のうちにいれておく 
     68perl 
     69perl-devel 
     70readline-devel 
     71 
     72個人的趣味 
     73screen   : GNU screen 
     74emacs    : Emacs 
     75lsof     : lsof 
     76tcsh     : 最近はフルインストールでも入っていない..... 
     77telnet   : これも入っていない.... 
     78}}} 
     79 
     80 1. 時刻合わせ 
     81{{{ 
     82# ntpdate ntp01.local.kek.jp 
     83}}} 
     84/etc/ntp.confを編集。 
     85{{{ 
     86server ntp01.local.kek.jp 
     87server ntp02.local.kek.jp 
     88}}} 
     89service ntp restart 
     90chkconfig ntp on