Para obter mais informações sobre esse erro para fins de solução de problemas, comece executando o comando:
$ journalctl -ab
Isto irá despejar alguns logs detalhados do diário do sistema.
Além disso, provavelmente houve outro erro diretamente na frente daquele que informou a você qual serviço, especificamente, está tendo um problema. Tente diagnosticar esse serviço também (usando o firewalld como exemplo):
$ systemctl status firewalld.service
Especificamente, essa linha vem do código systemd para ativação de transação:
E especificamente, quanto às transações do systemd (do man systemd):
systemd has a minimal transaction system: if a unit is requested to start up
or shut down it will add it and all its dependencies to a temporary
transaction. Then, it will verify if the transaction is consistent (i.e.
whether the ordering of all units is cycle-free). If it is not, systemd will
try to fix it up, and removes non-essential jobs from the transaction that
might remove the loop. Also, systemd tries to suppress non-essential jobs in
the transaction that would stop a running service. Finally it is checked
whether the jobs of the transaction contradict jobs that have already been
queued, and optionally the transaction is aborted then. If all worked out and
the transaction is consistent and minimized in its impact it is merged with
all already outstanding jobs and added to the run queue. Effectively this
means that before executing a requested operation, systemd will verify that
it makes sense, fixing it if possible, and only failing if it really cannot
work.
Então, combinando tudo isso, acho que há algo mais próximo dessa entrada de log que está tentando inicializar, mas já tem um arquivo de bloqueio (possivelmente obsoleto) que precisa ser limpo. / p>