From dca2ba5facda13b6368d9cb2ff2958c6508eea2c Mon Sep 17 00:00:00 2001 From: Rikuya Osawa <109570170+rikuyaosawa@users.noreply.github.com> Date: Wed, 22 Jan 2025 00:27:19 +0900 Subject: [PATCH] feat: add resource for linux service management (#8053) Added hands-on resource for Linux service management. LabEx is an excellent guide which explores Linux service management through systemd and systemctl. --- .../roadmaps/linux/content/108-service-management/index.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/linux/content/108-service-management/index.md b/src/data/roadmaps/linux/content/108-service-management/index.md index eb2ff48e3..af909f075 100644 --- a/src/data/roadmaps/linux/content/108-service-management/index.md +++ b/src/data/roadmaps/linux/content/108-service-management/index.md @@ -16,4 +16,8 @@ sudo systemctl start sshd sudo systemctl status sshd ``` -Managing services is a key skill in Linux system administration and essential for maintaining a secure and stable system. \ No newline at end of file +Managing services is a key skill in Linux system administration and essential for maintaining a secure and stable system. + +Learn more from the following resources: + +- [@article@How to Master Linux Service Management with Systemctl](https://labex.io/tutorials/linux-how-to-master-linux-service-management-with-systemctl-392864)