1.atd和crond两个任务管理程序的区别
atd服务:单一执行的例行性工作,仅处理执行一次就结束了
命令格式: at [参数] [时间]
crond服务:循环执行的例行性工作,每隔一定的周期就需要执行一次
2.指定在2022/08/26 09:00将时间写入testmail.txt文件中
3.指定在每天凌晨4:00将该时间点之前的系统日志信息备份到个目录下(/var/log/messages ),备份后日志文件名显示格式logfileYY-MM-DD HH-MM
4.在当前主机添加两块网卡,将两块网卡绑定实现网卡冗余操作。
插入虚拟网卡team0
nmcli connection add type team ifname team0 con-name team0 config '{"runner":{"name": "activebackup"}}'
在team0中添加设备
nmcli connection add type team-slave ifname ens192 con-name team0-port1 master team0
nmcli connection add type team-slave ifname ens160 con-name team0-port2 master team0
先激活俩卡,在激活0
nmcli connection up team0-port1
nmcli connection up team0-port2
nmcli connection up team0
查看 team0 的工作状态
teamdctl team0 stat