1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/run0.md
Lena cbc9d663cf
run0: add page (#13263)
* run0: add page

* run0: add backticks around systemd

Co-authored-by: spageektti <git@spageektti.cc>

---------

Co-authored-by: spageektti <git@spageektti.cc>
2024-07-15 19:07:46 +02:00

13 lines
450 B
Markdown

# run0
> Elevate privileges interactively.
> Similar to `sudo`, but it's not a SUID binary, authentication takes place via polkit, and commands are invoked from a `systemd` service.
> More information: <https://www.freedesktop.org/software/systemd/man/latest/run0.html>.
- Run a command as root:
`run0 {{command}}`
- Run a command as another user and/or group:
`run0 {{-u|--user}} {{username|uid}} {{-g|--group}} {{group_name|gid}} {{command}}`