2024年11月22日星期五 下午10:14:04

https://wiki.debian.org/systemd-cron

10 个月 前
#25244 引用

https://wiki.debian.org/systemd-cron
0
10 个月 前
#25245 引用
1
0
10 个月 前
#25246 引用
crontab -e

How to Setup a Cron Job in Debian 10
https://vitux.com/how-to-setup-a-cron-job-in-debian-10/

How to Renew Let’s Encrypt SSL Certificate
https://devarticles.in/auto-renew-lets-encrypt-certificates-using-certbot/
0
10 个月 前
#25247 引用
1
0
10 个月 前
#25248 引用
cron.daily

How to automatically renew Let’s Encrypt certbot certs on Ubuntu
https://techoverflow.net/2018/12/16/how-to-automatically-renew-lets-encrypt-certbot-certs-on-ubuntu/#google_vignette


come from:https://techoverflow.net/2018/12/16/how-to-automatically-renew-lets-encrypt-certbot-certs-on-ubuntu/#google_vignette



t@raspberrypi:/var/log# ls -l sys*
-rw-r----- 1 root adm  227778007  1月 2日 01:42 syslog
-rw-r----- 1 root adm 1353894990 12月31日 00:00 syslog.1  1.4G



linux ls 按文件大小排序

root@raspberrypi:/var/log# ls -Sl
总计 1903280
-rw-r----- 1 root        adm  1353894990 12月31日 00:00 syslog.1
-rw-r----- 1 root        adm   356795649  9月27日 02:26 daemon.log
-rw-r----- 1 root        adm   228155383  1月 2日 01:44 syslog
-rw-r----- 1 root        adm     3613015 12月30日 23:59 kern.log.1
-rw-r----- 1 root        adm     1751152  1月 2日 01:44 kern.log
-rw-r----- 1 root        adm     1249847  9月27日 02:25 messages
-rw-r----- 1 root        adm      935995 12月17日 00:01 kern.log.3.gz
-rw-r----- 1 root        adm      844268 12月 9日 23:59 kern.log.4.gz
-rw-r----- 1 root        adm      610686 12月23日 23:59 kern.log.2.gz



# ls -Sl --block-size=m



/etc/cron.daily

new mslycn-cleandisk


#!/bin/sh

cd /var/log

rm syslog.*






chmod a+x /etc/cron.daily/mslycn-cleandisk
0
10 个月 前
#25249 引用


t@raspberrypi:/etc/cron.daily# ls -l
总计 36
-rwxr-xr-x 1 root root 1478 2023年 5月25日 apt-compat
-rwxr-xr-x 1 root root  314 2017年 4月19日 aptitude
-rwxr-xr-x 1 root root  355 2016年10月25日 bsdmainutils.dpkg-remove
-rwxr-xr-x 1 root root  123 2023年 6月 2日 dpkg
-rwxr-xr-x 1 root root 4722 2021年 5月 5日 exim4-base
-rwxr-xr-x 1 root root  377 2021年 3月 1日 logrotate
-rwxr-xr-x 1 root root 1395 2023年 3月13日 man-db
-rw-r--r-- 1 root root   41  1月 2日 01:32 mslycn-cleandisk



root@raspberrypi:/etc/cron.daily# chmod a+x /etc/cron.daily/mslycn-cleandisk


root@raspberrypi:/etc/cron.daily# ls -l
总计 36
-rwxr-xr-x 1 root root 1478 2023年 5月25日 apt-compat
-rwxr-xr-x 1 root root  314 2017年 4月19日 aptitude
-rwxr-xr-x 1 root root  355 2016年10月25日 bsdmainutils.dpkg-remove
-rwxr-xr-x 1 root root  123 2023年 6月 2日 dpkg
-rwxr-xr-x 1 root root 4722 2021年 5月 5日 exim4-base
-rwxr-xr-x 1 root root  377 2021年 3月 1日 logrotate
-rwxr-xr-x 1 root root 1395 2023年 3月13日 man-db
-rwxr-xr-x 1 root root   41  1月 2日 01:32 mslycn-cleandisk



0