Centos minimal 特點:小巧、純淨、安裝快、啟動快、適合安裝服務器作自動部署
下載鏡像:http://www.centos.org/
1、修改主機名
# vi /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=www
GATEWAY=192.168.3.1
注:NETWORKING 表示系統是否使用網絡,一般設置為yes。如果設為no,則不能使用網絡,而且很多系統服務程序將無法啟動
2、修改hosts
# vi /etc/hosts
3、修改網卡
# vi /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE="eth0"
BOOTPROTO="static"
HWADDR=......
ONBOOT="yes"
UUID=......
IPADDR=192.168.1.102
NETMASK=255.255.255.0
GATEWAY=192.168.1.1
DNS1=202.102.192.68
DNS2=8.8.8.8
重啟網卡:
# service network restart
或
# /etc/init.d/network restart
重啟網卡後會自動更新 /etc/resolv.conf
如果ifcfg-eth0沒有配置DNS,需要手動設置DNS
# vi /etc/resolv.conf
nameserver 8.8.8.8
nameserver 8.8.4.4
如果是克隆的虛擬機由於mac地址問題需要解決“Device eth0 does not seem to be present, delaying initialization.”。
# sudo rm -fr /etc/udev/rules.d/70-persistent-net.rules
# sudo reboot
# sudo vi /etc/sysconfig/network-scripts/ifcfg-eth0 修改網卡中的mac地址(注意大小寫與/etc/udev/rules.d/70-persistent-net.rules中mac一致)
# sudo service network restart
4、自動同步時間
查看
# date -R
設置時區
# cp -f /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
設置時間
# date -s "2012-08-01 00:00:00"
同步時間
# sudo ntpdate us.pool.ntp.org
# crontab -e
0-59/10 * * * * /usr/sbin/ntpdate us.pool.ntp.org | logger -t NTP
# sudo service crond restart
5、更新系統
# yum update -y
6、安裝常用軟件和開發庫(根據你的需要哦)
yum install gcc gcc-c++ make automake autoconf213 autoconf bison ncurses cmake libtool bison flex perl git subversion mercurial python-setuptools -y
yum install openssl-devel pcre-devel zlib-devel libjpeg-devel libpng-devel freetype-devel ImageMagick-devel boost-devel libevent-devel libuuid-devel readline-devel bzip2-devel libxml2-devel libxslt-devel openssl-devel kernel-devel pcre-devel boost-devel python-devel libpcap-devel sqlite-devel ncurses-devel libaio -y
yum install wget vim lsof tcpdump screen p7zip unrar unzip sudo redhat-lsb ntpdate traceroute -y
7、添加用戶
# useradd web
# passwd
# visudo -f /etc/sudoers
在下面一行加上新增的用戶,x存!
root ALL=(ALL) ALL
web ALL=(ALL) ALL
測試是否成功,顯示root表示成功
# sudo whoami
8、修改CentoOS GRUB 開機預設等待時間
# sudo vim /boot/grub/menu.lst
timeout=5
修改成
timeout=0
9、修復wget刷屏問題
# yum install gettext -y
# msgunfmt /usr/share/locale/zh_CN/LC_MESSAGES/wget.mo -o - |sed 's/eta(英國中部時間)/ETA/'|msgfmt - -o/tmp/zh_CN.mo
# cp /tmp/zh_CN.mo /usr/share/locale/zh_CN/LC_MESSAGES/wget.mo
10、重啟系統
# reboot
(完)