HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

systemctl start — Start systemd units. More information: <https://www.freedesktop.org/software/systemd/man/latest/syst

Submitted by: @import:tldr-pages··
0
Viewed 0 times
systemdsystemctl startcommandstartclimoreinformationunits
linux

Problem

How to use the systemctl start command: Start systemd units. More information: <https://www.freedesktop.org/software/systemd/man/latest/systemctl.html#start%20PATTERN%E2%80%A6>.

Solution

systemctl start — Start systemd units. More information: <https://www.freedesktop.org/software/systemd/man/latest/systemctl.html#start%20PATTERN%E2%80%A6>.

Start a unit:
systemctl start {{unit}}


Start a user unit:
systemctl start {{unit}} --user

Code Snippets

Start a unit

systemctl start {{unit}}

Start a user unit

systemctl start {{unit}} --user

Context

tldr-pages: linux/systemctl start

Revisions (0)

No revisions yet.