linux命令练习3

##服务器端ip##

linux命令练习3_第1张图片

##用户端ip##

linux命令练习3_第2张图片


配置desktop主机和server主机的日服务要求如下:

*)desktop主机中的日志全部定向到/var/log/westos文件中

答:在desktop主机上配置 /etc/rsyslog.conf 如下:

命令:vim  /etc/rsyslog.conf 

linux命令练习3_第3张图片

*)时时同步desktop主机中的所有日志到server中

答:首先在两台主机中都关闭防火墙,命令如下:

          systemctl   stop    firewalld.service 

       在两台主机上配置 /etc/rsyslog.conf 如下:

        命令:vim  /etc/rsyslog.conf 

desktop主机:

linux命令练习3_第4张图片

server主机端:

linux命令练习3_第5张图片

2.在server主机中用timedatectl命令设定系统时区为上海,时间为11:11:11

linux命令练习3_第6张图片

配置server主机的chrony服务,使server主机中时间可以被desktop同步

在两台主机上都配置 /etc/chrony.conf 文件  命令如下:

vim    /etc/chrony.conf   

在server端配置:

linux命令练习3_第7张图片

linux命令练习3_第8张图片

desktop端配置:

linux命令练习3_第9张图片


4.同步server主机中的时间到desktop主机中

接上一题,配置完chrony之后,在desktop端查看是否同步成功:

linux命令练习3_第10张图片

5.配置系统中的systemd-journal程序,使jornal命令可以查看到关机前的日志


<第十一单元练习题>

在系统中创建set-ip-tool命令要求如下:

当在系统中执行set-ip-tool 172.25.254.x后

*)会自动显示ifconfig命令的输出

*)系统ip被设定为:172.25.254.x

*)系统网关被设定为:172.25.254.250

*)系统DNS被设定为:172.25.254.250

#####在/usr/local/bin 目录下编辑 set-ip-tool 文件        再赋予它执行权限:   chmod +x  /usr/local/bin/set-ip-tool       

linux命令练习3_第11张图片linux命令练习3_第12张图片

<第十二单元练习题>

1.在server主机中把/etc目录打包压缩到/mnt中,名字为etc.tar.gz

答:先切换到/mnt下,命令:   cd   /mnt

     linux命令练习3_第13张图片

2.复制server主机中的etc.tar.gz到desktop主机的/mnt中

linux命令练习3_第14张图片

3.同步server主机中的/etc中的所有文件到desktop主机中/mnt中,包含链接文件

server端执行命令:linux命令练习3_第15张图片

desktop端查看:

linux命令练习3_第16张图片


你可能感兴趣的:(脚本习题)