更新软件及内核 yum y update 安装rsync yum y install rsync 安装git yum y install git 其他常用 安装rz和sz命令 yum install y lrzsz 安装telnet yum install telnet 安装vim命令 yum y ...
分类:
系统相关 时间:
2019-09-01 01:15:52
阅读次数:
181
参考: https://blog.csdn.net/testcs_dn/article/details/48781553 也可以在对应的虚拟机centos上查看 所安装的crontab安装信息,然后选中rpm包进行安装,命令:rpm -qa |grep cron 如: ...
分类:
其他好文 时间:
2019-08-20 16:44:40
阅读次数:
158
no crontab for root - using an empty one 888 ...
分类:
其他好文 时间:
2019-07-24 09:40:01
阅读次数:
76
1.什么是Clelery Celery是一个简单、灵活且可靠的,处理大量消息的分布式系统 专注于实时处理的异步任务队列 同时也支持任务调度 Celery架构 Celery的架构由三部分组成,消息中间件(message broker),任务执行单元(worker)和任务执行结果存储(task resu ...
分类:
其他好文 时间:
2019-07-20 00:00:08
阅读次数:
137
for条件循环语句 新建列表 vim user.txt andy barry carl duke eric george vim hehe.sh #!/bin/bash#this is user forread -p "Enter:" PASSWDfor UNAME in `cat user.txt ...
分类:
系统相关 时间:
2019-07-08 21:01:20
阅读次数:
136
unison 双向镜像同步 需要 ocaml 依赖工具(3.0.7) 而且需要机器ssh双向互信 ssh 开启互信 # vi in.sh 直接执行 in.sh 就可以了 然后拷贝 .ssh/authorized_keys 中秘钥到各自的 .ssh/authorized_keys 文件中。 这样都可以 ...
分类:
其他好文 时间:
2019-07-06 10:33:46
阅读次数:
107
Crontab是一个很方便的在unix/linux系统上定时(循环)执行某个任务的程序。 用 service crond status 查看 crond服务状态,如果没有启动则 systemctl start crond.service启动它。 直接编辑crontab文件,vi /etc/cront ...
分类:
其他好文 时间:
2019-07-06 00:48:59
阅读次数:
224
linux系统中如何查看日志 (常用命令) cat tail -f 日 志 文 件 说 明 /var/log/message 系统启动后的信息和错误日志,是Red Hat Linux中最常用的日志之一 /var/log/secure 与安全相关的日志信息 /var/log/maillog 与邮件相关 ...
分类:
系统相关 时间:
2019-07-03 19:48:57
阅读次数:
105
一、时区 显示时区 date --help 获取帮助 date -R date +%z 上面两个命令都可 date -R; date +%z 主要就是后面的+0800,东八区 修改时区 cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 时区的信息 ...
分类:
其他好文 时间:
2019-06-28 23:08:09
阅读次数:
140