Think before you speak, read before you think.

CentOS6.2初始化操作

CentOS安装gcc g++等编译环境(使用yum)

yum groupinstall 'Development Tools'

CentOS安装中文包

yum groupinstall chinese-support

CentOS 配置 ssh

安装SSH

yum install ssh

启动SSH

service sshd start

设置开机运行

chkconfig sshd on

在hosts.deny文件尾添加sshd:ALL 意思是拒绝所有访问请求

在hosts.allow文件尾添加sshd:192.168.0. 意思是允许192.168.0.1 到254的主机

重启ssh

/etc/rc.d/init.d/sshd restart

安装locate

yum install mlocate

mlocate是GNU locate的一个变种。相比原始的locate,它具有一个很好优点: 每次更新数据库时并不需要重新读取全部目录的内容。mlocate 在数据库中保存了时间戳信息,无需重新读取,就能判断目录内容是否改变。所以更新的速度更快,对硬盘的占用也更少。这是 mlocate 特有的功能。安装好后就可以用locate和updatedb来快速查找文件了。


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *