Centos7 常用命令大全

最后更新:2015-11-26 16:50:34

** 查看系统版本信息 **

获取Centos版本信息

/cat/centos-release

下面两个命令估计是获取内核信息

uname -a
uname -r

** 查看IP信息 **

 ip addr 

** 查看磁盘信息 **


df -h
fdisk -l

** 查看CPU及内存信息 **

 top 

** 服务管理 **

开启服务

systemctl start 名称.service

重启服务

systemctl restart 名称.service

停止服务

systemctl stop 名称.service

开启启动

systemctl enable 名称.service

当前状态

systemctl status 名称.service

** 查找文件或目录 **

参考页面:http://my.oschina.net/hosee/blog/505878

通过环境变量查找

which 名称

找相关文件或目录

whereis 名称

从文件数据库里找

locate 名称

查找文件

find 路径 参数

** 解压和压缩 **

解压文件

tar -xvf 压缩包文件名称

压缩文件

tar -cvf 压缩包文件名称 文件夹名称

你可能感兴趣的:(Centos7 常用命令大全)