diff --git a/pages/linux/systemctl-start.md b/pages/linux/systemctl-start.md new file mode 100644 index 0000000000..3346e60b8d --- /dev/null +++ b/pages/linux/systemctl-start.md @@ -0,0 +1,8 @@ +# systemctl start + +> Start systemd units. +> More information: . + +- Start a unit: + +`systemctl start {{unit}}` diff --git a/pages/linux/systemctl-stop.md b/pages/linux/systemctl-stop.md new file mode 100644 index 0000000000..b35fdf207b --- /dev/null +++ b/pages/linux/systemctl-stop.md @@ -0,0 +1,12 @@ +# systemctl stop + +> Stop systemd units. +> More information: . + +- Stop a unit: + +`systemctl stop {{unit}}` + +- Stop a service and suppress warnings: + +`systemctl stop --no-warn {{unit}}`