Risposte:
man systemctl dice:
daemon-reload
Reload systemd manager configuration. This will rerun all generators (see systemd.generator(7)), reload
all unit files, and recreate the entire dependency tree. While the daemon is being reloaded, all sockets
systemd listens on behalf of user configuration will stay accessible.
This command should not be confused with the reload command.
Quindi, si tratta di una ricarica "soft", essenzialmente; prendere le configurazioni modificate dal filesystem e rigenerare gli alberi delle dipendenze .
Di conseguenza, systemd.generator
afferma:
I generatori sono piccoli binari che vivono in / usr / lib / systemd / user-generators / e altre directory sopra elencate. systemd (1) eseguirà quei file binari molto presto all'avvio e al momento del ricaricamento della configurazione, prima che vengano caricati i file di unità. I generatori possono generare dinamicamente file di unità o creare collegamenti simbolici a file di unità per aggiungere dipendenze aggiuntive, estendendo o sovrascrivendo le definizioni esistenti. Il loro scopo principale è convertire i file di configurazione che non sono file di unità nativi in modo dinamico in file di unità nativi.
Generators are loaded from a set of paths determined during compilation, listed above. System and user
generators are loaded from directories with names ending in system-generators/ and user-generators/,
respectively. Generators found in directories listed earlier override the ones with the same name in
directories lower in the list. A symlink to /dev/null or an empty file can be used to mask a generator,
thereby preventing it from running. Please note that the order of the two directories with the highest
priority is reversed with respect to the unit load path and generators in /run overwrite those in /etc.
After installing new generators or updating the configuration, systemctl daemon-reload may be executed. This
will delete the previous configuration created by generators, re-run all generators, and cause systemd to
reload units from disk. See systemctl(1) for more information.