centos 6 minimal 安装

Centos 6.0 minimal 安装可以减少很多没有必要开的服务,但是有些工具缺省没有安装;

所以使用yum 快速安装

# yum install setuptool system-config-network-tui system-config-firewall-tui vim wget

setuptool //图形化设置工具

system-config-network-tui //图形化网络设置工具

system-config-firewall-tui //图形化设置防火墙

vim //编辑工具

wget //网络下载工具

# service postfix stop

# chkconfig postfix off

不使用服务器做邮件服务器就关闭 postfix 服务

这样系统后只有 sshd 服务 22 端口

# netstat -tnl
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
tcp 0 0 :::22 :::* LISTEN

猜你喜欢

转载自paulfzm.iteye.com/blog/1240661