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


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

--

Legend:

Unmodified
Added
Removed
Modified
  • epics/install/vmware_centos

    v1 v1  
     1= VMWareに CentOS 6.4 インストール = 
     2 
     3概要で述べたように、「最少インストール」でスタートする。面倒だと思う方はDVDイメージ 
     4をダウンロードしてデスクトップでもサーバでもお好きなモノをインストールしてください。 
     5 
     6 1. 仮想マシン作成 
     7    * KEK内部からはreflx1を使います。もちろん他のミラーサイト(riken, jaist)などでも可。 
     8    * reflx1.kek.jp から最少インストール用イメージ(約300MB)をダウンロードして、適当なディレクトリに保存。 
     9{{{  
     10http://reflx1.kek.jp/centos/6/isos/i386/CentOS-6.4-i386-minimal.iso 
     11}}} 
     12 1. /etc/sysconfig/network-scripts/ifcfg-eth0 
     13 1. /etc/yum.repos.d/CentOS-Base.repo 
     14{{{ 
     15mirror.centos.org -> reflx1.kek.jp に変更する 
     16}}}  
     17 1. サービスの確認 
     18{{{ 
     19# chkconfig --list 
     20}}} 
     21 1. IPV6無効化 
     22 
     23 1. SELinux設定 
     24{{{ 
     25/etc/selinux/config 
     26 
     27SELINUX=disabled 
     28}}} 
     29 
     30以下のサービスを停止。 
     31{{{ 
     32# service iptables stop 
     33# service ipv6tables stop 
     34# service lvm2-monitor stop    : LVMを使っていないならば 
     35# service auditd stop          : SELinux使わないので不要 
     36# service mcstrans stop        : SELinux使わないので不要 
     37# service restorecond stop     : SELinux使わないので不要 
     38}}} 
     39 
     40再起動時のため、上のサービスの起動設定をオフに。 
     41{{{ 
     42# chkconfig iptables off 
     43....... 
     44}}} 
     45 
     46おそらく不要なので止めて良い? 
     47{{{ 
     48blk-availability  : LVM2のミラーデバイス管理? 
     49iscsi       : iSCSI関連 
     50iscsid      : iSCSI関連 
     51mdmonitor   : ソフトウェアRAID 
     52 
     53}}} 
     54 
     55 
     56 
     57 1. 開発に必要なソフトウェアのインストール 
     58{{{ 
     59gcc 
     60gcc-c++ 
     61make 
     62wget 
     63ntp 
     64ntpd 
     65bind-utils    : dig, host, nslookup等 
     66tcsh 
     67telnet 
     68 
     69EPICSに必要 
     70perl 
     71perl-devel 
     72readline-devel 
     73 
     74個人的趣味 
     75screen   : GNU screen 
     76emacs    : Emacs 
     77lsof     : lsof 
     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}}} 
     89 
     90{{{ 
     91# service ntp restart 
     92# chkconfig ntp on 
     93}}}