CentOS 6.5 系统检查指南

系统基本信息检查
1 系统版本
[root@centos ~]# cat /etc/redhat-release CentOS release 6.5 (Final)
2 系统架构
[root@centos ~]# uname -m x86_64
3 系统内核版本
[root@centos ~]# uname -r 2.6.32-431.11.1.el6.x86_64
4 系统运行时间
[root@centos ~]# uptime 18:03:35 up 2:23, 1 user, load average: 0.00, 0.01, 0.05
系统软件包信息检查
1 查看已安装软件包列表
[root@centos ~]# yum list installed
2 查看软件包详细信息
[root@centos ~]# yum list detail | grep -i "package_name"
3 查看软件包依赖关系
[root@centos ~]# yum deplist package_name
系统性能检查
1 查看CPU使用情况
[root@centos ~]# top
2 查看内存使用情况
[root@centos ~]# free -m
3 查看磁盘使用情况

[root@centos ~]# df -h
4 查看网络接口状态
[root@centos ~]# ifconfig
系统安全检查
1 查看系统防火墙状态
[root@centos ~]# service iptables status
2 查看SELinux状态
[root@centos ~]# getenforce
3 查看系统日志
[root@centos ~]# tail -f /var/log/messages
系统更新检查
1 检查系统更新
[root@centos ~]# yum check-update
2 安装系统更新
[root@centos ~]# yum update
系统备份与恢复
1 使用tar命令备份系统
[root@centos ~]# tar -czvf /path/to/backup.tar.gz /path/to/backup/directory
2 使用rsync命令备份系统
[root@centos ~]# rsync -avz /path/to/source /path/to/destination
3 恢复系统备份
[root@centos ~]# tar -xzvf /path/to/backup.tar.gz -C /path/to/destination
系统优化

1 优化系统内核参数
[root@centos ~]# vi /etc/sysctl.conf
2 优化系统文件系统
[root@centos ~]# tune2fs -o journal_data_compression=1 /dev/sda1
0 系统维护
1 定期清理日志文件
[root@centos ~]# find /var/log -name "*.log" -mtime +30 -exec rm {} \; 2 定期清理缓存文件
[root@centos ~]# rm -rf /var/cache/yum/*
3 定期检查磁盘空间
[root@centos ~]# df -h
4 定期检查系统软件包
[root@centos ~]# yum check-update
5 定期检查系统日志
[root@centos ~]# tail -f /var/log/messages
FAQs:
Q1:如何查看CentOS 6.5的系统版本? A1:使用命令cat /etc/redhat-release可以查看CentOS 6.5的系统版本。
Q2:如何查看CentOS 6.5的系统架构? A2:使用命令uname -m可以查看CentOS 6.5的系统架构。

