安装没有邮件和 sql 依赖项的 cron
Install cron without mail and sql dependencies
我想在 Raspberry Pi 中安装 crontab 而没有邮件和 sql 依赖项?
我使用apt-get install cron命令安装,安装成功,但同时安装了邮件和sql依赖。按照 How to install cron 获取安装步骤。
我只需要安装 crontab 以满足最低要求,例如在重新启动时使用 NTP(网络时间协议)同步系统时间,这样它就不需要额外的依赖项。
如何在没有邮件和 sql 依赖项的情况下安装 crontab?
直接引用 serverfault,
Simple and easy solution: just specify the unwanted packages with an extra - after each of them.
在你的情况下,你可以,apt-get install cron mail- sql-
将 mail 和 sql 替换为您不想安装的相应依赖项
您也可以使用 -s
选项来格外小心。
来自man-page,
-s, --simulate, --just-print, --dry-run, --recon, --no-act
No action. Perform a simulation of events that would occur but do not actually change the system.
我想在 Raspberry Pi 中安装 crontab 而没有邮件和 sql 依赖项?
我使用apt-get install cron命令安装,安装成功,但同时安装了邮件和sql依赖。按照 How to install cron 获取安装步骤。
我只需要安装 crontab 以满足最低要求,例如在重新启动时使用 NTP(网络时间协议)同步系统时间,这样它就不需要额外的依赖项。
如何在没有邮件和 sql 依赖项的情况下安装 crontab?
直接引用 serverfault,
Simple and easy solution: just specify the unwanted packages with an extra - after each of them.
在你的情况下,你可以,apt-get install cron mail- sql-
将 mail 和 sql 替换为您不想安装的相应依赖项
您也可以使用 -s
选项来格外小心。
来自man-page,
-s, --simulate, --just-print, --dry-run, --recon, --no-act No action. Perform a simulation of events that would occur but do not actually change the system.