centos常用命令大全
时间: 2024-10-22 22:22:59 浏览: 24
centos 命令大全
4星 · 用户满意度95%
CentOS是一个基于Red Hat Enterprise Linux (RHEL) 的免费开源操作系统,下面是一些常用的CentOS命令:
1. **更新系统**:
```
sudo yum update -y
```
2. **安装软件包**:
```
sudo yum install [package_name] -y
```
或者
```
sudo dnf install [package_name] -y
```
(如果已经切换到dnf作为默认包管理器)
3. **启动服务**:
```
systemctl start [service_name]
```
或者
```
service [service_name] start
```
4. **查看服务状态**:
```
systemctl status [service_name]
```
5. **重启服务**:
```
systemctl restart [service_name]
```
6. **检查系统信息**:
```
cat /etc/*release
uname - 查看目录内容:`ls [directory]`
- 删除目录:`rm -r directory_name`(需谨慎使用,会删除所有内容)
8. **登录用户**:
```
login user_name
```
9. **远程连接**:
```
ssh username@hostname
```
阅读全文