第二个主要是学习如何搭建环境。

1.1 准备您的工具

VmwareWorkStation  16 ——虚拟机软件

RedHatEnterpriseLinux [RHEL] 8 ——红帽操作系统

1.2 安装配置VM虚拟机

按图示安装就好,问题不大。

1.3 安装您的Linux系统

按图示一一步一步设置就可以了。看到you're ready to go !就装完了。

1.4 安装软件的方法

单个安装用rpm,以前的安装方法,现在yum v4 ,就是dnf;不过用yum效果也一样。

1.5 系统初始化进程

表1-4                                   服务的启动、重启、停止、重载、查看状态等常用命令

老系统命令

新系统命令

作用

service foo start

systemctl start httpd

启动服务

service foo restart

systemctl restart httpd

重启服务

service foo stop

systemctl stop httpd

停止服务

service foo reload

systemctl reload httpd

重新加载配置文件(不终止服务)

service foo status

systemctl status httpd

查看服务状态

表1-5                                   服务开机启动、不启动、查看各级别下服务启动状态等常用命令

老系统命令

新系统命令

作用

chkconfig foo on

systemctl enable httpd

开机自动启动

chkconfig foo off

systemctl disable httpd

开机不自动启动

chkconfig foo

systemctl is-enabled httpd

查看特定服务是否为开机自启动

chkconfig --list

systemctl list-unit-files --type=httpd

查看各个级别下服务的启动与禁用情况

 

1.6 重置root密码

第1步:重启Linux系统主机并出现引导界面时,按下键盘上的“e”键进入内核编辑界面

第2步:在linux参数这行的最后面追加“rd.break”参数,然后按下“Ctrl + x”组合键来运行修改过的内核程序,如图1-49所示。

第3步:大约30秒过后,进入到系统的紧急求援模式,如图1-50所示。

第4步:依次输入以下命令,再连续按下两次“Ctrl + d”组合键来退出并重启,等待系统再次重启完毕后便可以使用新密码来登录Linux系统了。命令执行效果如图1-51所示。

mount -o remount,rw /sysroot
chroot /sysroot
passwd
touch /.autorelabel