centos和Ubuntu 命令常见区别

命令 CentOS Ubuntu
安装软件包 yum install apt install
更新软件包 yum update apt update && apt upgrade
删除软件包 yum remove apt remove
启动服务 systemctl start service start
停止服务 systemctl stop service stop
重启服务 systemctl restart service restart
查看服务状态 systemctl status service status
查看网络配置 nmcli connection show ip addr show
查看日志 journalctl journalctl
配置网络接口 vi /etc/sysconfig/network-scripts/ifcfg- vi /etc/netplan/.yaml
配置防火墙 firewall-cmd ufw
查看硬件信息 lshw lshw
查看文件系统信息 df -h df -h
查看系统信息 uname -a uname -a

你可能感兴趣的:(开发常识,centos,ubuntu)