You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With EndeavourOS my system seems to have an issue running logid on boot. sudo systemctl status logid returns with 'Active: active (running)', but is non-functional. It seems it relies on another service to be running first and gets loaded at the wrong time. An easy 'temporary' fix for this is to create a timer for the logid service:
/usr/lib/systemd/system/logid.timer
[Unit]
Description=Run logid on boot
[Timer]
OnBootSec=10
[Install]
WantedBy=timers.target
Reboot (possibly need to shut down to confirm timer is set properly for a cold boot)
Now logid.timer will be called and start logid.service 10 seconds later. Note that you might need to edit the timer to suit your own system, for example 1min is much too long of a delay and 5(s) is too quick for my system.
A better fix would be to check that the required services are running before starting logid, but that's above my paygrade.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
With EndeavourOS my system seems to have an issue running logid on boot.
sudo systemctl status logid
returns with 'Active: active (running)', but is non-functional. It seems it relies on another service to be running first and gets loaded at the wrong time. An easy 'temporary' fix for this is to create a timer for the logid service:/usr/lib/systemd/system/logid.timer
sudo systemctl disable logid.service
sudo systemctl disable logid.timer
Now logid.timer will be called and start logid.service 10 seconds later. Note that you might need to edit the timer to suit your own system, for example
1min
is much too long of a delay and5
(s) is too quick for my system.A better fix would be to check that the required services are running before starting logid, but that's above my paygrade.
More info on timers: https://wiki.archlinux.org/title/Systemd/Timers
Beta Was this translation helpful? Give feedback.
All reactions