Hello,
I have Searched the forum for my issue and found nothing related or helpful
I have checked the Resources category (Resources Index)
I have reviewed the Wiki for relevant information
I have read the the Release Notes and Errata
OpenMandriva Lx version:
OpenMandriva Lx release 25.12 (ROME) Rolling for x86_64
Desktop environment (KDE, LXQT…):
KDE Plasma Slim, but it doesn’t matter
Description of the issue (screenshots if relevant):
First, it appears on a newly-installed ROME/rolling system that crond and atd are not running:
$ sudo systemctl status atd | grep Loaded
Loaded: loaded (/usr/lib/systemd/system/atd.service; disabled; preset: disabled)
I had to manually sudo systemctl enable crond to get it to run on restart, but you can still see that the preset was for it to be disabled.
$ sudo systemctl status crond | grep Loaded
Loaded: loaded (/usr/lib/systemd/system/crond.service; enabled; preset: disabled)
Why is this? It seems strange to have a Linux system running without cron. I have it enabled/running now, so that’s not the problem. What I’m seeing now is that an @reboot entry in my personal crontab is not actually getting executed:
$ crontab -l | grep reboot
@reboot /home/bbeyenhof/bin/start_irssi_cron
The contents of that script:
$ cat /home/bbeyenhof/bin/start_irssi_cron
screen -U -S irssi -dm /usr/bin/irssi
So, if this is executed on reboot, I should have a screen session running irssi in the background as soon as I boot the machine, but after a reboot no screen sessions are running:
$ screen -ls
No Sockets found in /home/bbeyenhof/tmp.
Is the crontab not getting executed? I’m not sure where to look next, because this is just regular Vixiecron functionality I’ve depended on for a couple of decades. How should I go about making sure this script gets executed on reboot?
