CENT OS インストール1
CENT OSのインストールメモ
・REDHAT LINUX 互換OS といわれている CENT OS 用の自分用のメモ
・基本的にサーバー用途、クライアントでは使わない。
参考
http://rarfaxp.riken.go.jp/comp/tips/centos.html
http://www.a.phys.nagoya-u.ac.jp/%7Etaka/linux/co4note.html
インストール後 手順
GUIでインストールするソフトは入れる
apache
php
mysql
ftp
など
# usermod -G wheel xxx
# vi /etc/pam.d/su
#auth required /lib/security/$ISA/pam_wheel.so use_uid
auth required /lib/security/$ISA/pam_wheel.so use_uid
#vi /etc/login.defs
SU_WHEEL_ONLY yes
yum関連
#rpm --import http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-4
#vi /etc/yum.conf
[base]
name=CentOS-$releasever - Base
baseurl=http://ftp.riken.jp/Linux/centos/$releasever/os/$basearch/
gpgcheck=1
#released updates
[update]
name=CentOS-$releasever - Updates
baseurl=http://ftp.riken.jp/Linux/centos/$releasever/updates/$basearch/
gpgcheck=1
#packages used/produced in the build but not released
[addons]
name=CentOS-$releasever - Addons
baseurl=http://ftp.riken.jp/Linux/caos/centos/$releasever/addons/$basearch/
gpgcheck=1
に修正
#yum check-update
#yum update
#yum -y install ntp
# ntpdate ntp.t.ring.gr.jp
上記NTPサーバーはネットワーク的に近く、stratum 値が小さいところを選ぶ
# vi ntp
#!/bin/bash
/usr/sbin/ntpdate ntp.dnsbalance.ring.gr.jp > /dev/null
#chmod +x ntp
mv ntpdate /etc/cron.daily/
#vi /etc/updatedb.conf
DAILY_UPDATE=yes
必要な場合
NKF
http://sourceforge.jp/projects/nkf/
をインストール
#tar zxvf xxxx
#cd
#make
#cp nkf /usr/bin
トラックバック(0)
このブログ記事を参照しているブログ一覧: CENT OS インストール1
このブログ記事に対するトラックバックURL: http://www.kaiman.net/cgi/mtn/mtn2/mt-tb.cgi/34
コメントする