摘要:
查看主机名:hostname 修改主机名:hostnamectl set-hostname GenHost,修改后重启生效reboot 修改/etc/hosts文件:vim /etc/hosts 阅读全文
摘要:
crond服务 以守护进程方式在无需人工干预的情况下来处理一系列作业和指令的服务 crond服务的启停命令: # 查看状态 systemctl status crond.service # 启动服务 systemctl start crond.service # 重启服务 systemctl res 阅读全文
摘要:
创建shell脚本vim first.sh,注意以.sh后缀结尾 #!/bin/bash # 作者:Gen # 编写时间:2021-2-25 # 功能:打印一句话 echo "this is my first shell !" 执行shell脚本:sh first.sh 阅读全文