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