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


Ignore:
Timestamp:
05/10/13 22:06:31 (12 years ago)
Author:
Takashi Obina
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • epics/install/vmware_centos

    v1 v2  
    77    * KEK内部からはreflx1を使います。もちろん他のミラーサイト(riken, jaist)などでも可。
    88    * reflx1.kek.jp から最少インストール用イメージ(約300MB)をダウンロードして、適当なディレクトリに保存。
    9 {{{
    10 http://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 {{{
    15 mirror.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 
    27 SELINUX=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 {{{
    48 blk-availability  : LVM2のミラーデバイス管理?
    49 iscsi       : iSCSI関連
    50 iscsid      : iSCSI関連
    51 mdmonitor   : ソフトウェアRAID
    52 
    53 }}}
     9    * [[Image(Linux_install_2.png, 50%)]]
     10    * {{{ http://reflx1.kek.jp/centos/6/isos/i386/CentOS-6.4-i386-minimal.iso }}} を選択
     11 1. VMWare Player で「新規仮想マシンの作成」選択
     12    * [[Image(vmware4.png, 50%)]]
    5413
    5514
    56 
    57  1. 開発に必要なソフトウェアのインストール
    58 {{{
    59 gcc
    60 gcc-c++
    61 make
    62 wget
    63 ntp
    64 ntpd
    65 bind-utils    : dig, host, nslookup等
    66 tcsh
    67 telnet
    68 
    69 EPICSに必要
    70 perl
    71 perl-devel
    72 readline-devel
    73 
    74 個人的趣味
    75 screen   : GNU screen
    76 emacs    : Emacs
    77 lsof     : lsof
    78 }}}
    79 
    80  1. 時刻合わせ
    81 {{{
    82 # ntpdate ntp01.local.kek.jp
    83 }}}
    84 /etc/ntp.confを編集。
    85 {{{
    86 server ntp01.local.kek.jp
    87 server ntp02.local.kek.jp
    88 }}}
    89 
    90 {{{
    91 # service ntp restart
    92 # chkconfig ntp on
    93 }}}