2021-10-20 01:12 AM
I can't install crontab with apt-get install
apt-get install cron
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package cron
What do you suggest?
Solved! Go to Solution.
2021-10-20 01:21 AM
Hi @Lmoio.1
The package to download is cronie:
root@stm32mp1:~# apt-get update
root@stm32mp1:~# apt-get install cronie
root@stm32mp1:~# which crontab
/usr/bin/crontab
Best regards,
--JM
2021-10-20 01:21 AM
Hi @Lmoio.1
The package to download is cronie:
root@stm32mp1:~# apt-get update
root@stm32mp1:~# apt-get install cronie
root@stm32mp1:~# which crontab
/usr/bin/crontab
Best regards,
--JM
2021-10-20 02:19 AM
Hi Jean-Marc,
thanks it worked!