YUM:yum 是一个方便的"应用商店",你可以通过它轻松地安装、更新和删除软件包,就像从应用商店中下载和安装应用程序一样。(这个得用root身份,普通用户权限不够)
常用命令:
1.安装软件:#yum -y install softName(httpd:httpd 是一个Web服务器)
systemctl:是控制系统中运行的各种服务的命令中心。
常用命令:
1.启动应用:#systemctl start servicename(httpd)(没有消息就是最好的消息。)
验证一下是否启动成功。(我们自己访问自己 localhost)
2.关闭应用:#systemctl stop servicename
3.重启应用:#systemctl restart servicename(当我们修改了配置信息什么的时候,可以重启。)
4.开机自启:#systemctl enable servicename(httpd)
2.卸载软件:#yum remove softName(httpd)