01 2021 档案
摘要:通过crontab 命令,我们可以在固定的间隔时间执行指定的系统指令或 shell script脚本。时间间隔的单位可以是分钟、小时、日、月、周及以上的任意组合。这个命令非常适合周期性的日志分析或数据备份等工作。 crond服务 路径 描述 /var/spool/cron/ 由 crontab -e
阅读全文
摘要:官方说明:https://github.com/pirate/wireguard-docs#NAT-to-NAT-Connections 具体请参考: https://anyisalin.github.io/2018/11/21/fast-flexible-nat-to-nat-vpn-wiregu
阅读全文
摘要:docker image prune -a --filter "until=$(date +'%Y-%m-%dT%H:%M:%S' --date='-15 days')"
阅读全文
摘要:0x0001 from multiprocessing import Process from time import sleep def f(time): sleep(time) print(time) def run_with_limited_time(func, args, kwargs, t
阅读全文
摘要:备忘,安装回来浪费了2个多小时~~~ 型号:红米K30 MIUI版本:12.1 稳定版 Android版本:Android 11 2021年01月23日补充: 经过几天的陆续测试,我已经找到上述机型的完美解决方案,如果需要可私信我or邮件至:coorhook@gmail.com,付费付费!!![下方
阅读全文
摘要:备忘 问题描述 VERIFY ERROR: depth=0, error=CRL has expired: CN=xxxxx Sun Jan 10 10:34:21 2021 x.x.x.x:12853 OpenSSL: error:14089086:SSL routines:ssl3_get_cl
阅读全文
摘要:解决: apk add apk add --no-cache tzdata g++ gcc unixodbc-dev freetds-dev 报错: 安装pymssql的时候报错: #include "sqlfront.h" ^ compilation terminated. error: comm
阅读全文
摘要:1.python3.3之前 安装虚拟环境包: pip install virtualenv 创建虚拟环境: $ virtualenv -p /usr/bin/python2.7 –-no-site-packages my_venv ## -p 指定解释器版本 ## --no-site-package
阅读全文