Forrest logo
back to context overview

systemd-analyze

List of commands for systemd-analyze:

  • systemd-analyze:tldr:254c8 systemd-analyze: Show security scores of running units.
    $ systemd-analyze security
    try on your machine
    explain this command
  • systemd-analyze:tldr:40bde systemd-analyze: List all running units, ordered by the time they took to initialize.
    $ systemd-analyze blame
    try on your machine
    explain this command
  • systemd-analyze:tldr:4b33a systemd-analyze: Print a tree of the time-critical chain of units.
    $ systemd-analyze critical-chain
    try on your machine
    explain this command
  • systemd-analyze:tldr:a700e systemd-analyze: Create an SVG file showing when each system service started, highlighting the time that they spent on initialization.
    $ systemd-analyze plot > ${filename-svg}
    try on your machine
    explain this command
  • systemd-analyze:tldr:ccda2 systemd-analyze: Plot a dependency graph and convert it to an SVG file.
    $ systemd-analyze dot | dot -T${svg} > ${filename-svg}
    try on your machine
    explain this command
back to context overview