From 7daf1e213b86d4ea10cf4c7c6cdf7469572a6127 Mon Sep 17 00:00:00 2001 From: Jayaram R <140975231+JayaramRangaraj@users.noreply.github.com> Date: Thu, 5 Dec 2024 20:44:37 +0530 Subject: [PATCH] Add resource for Uptime Load in Linux (#7838) * Resource for Uptime Load in Linux Added 2 article link. * Update src/data/roadmaps/linux/content/105-server-review/100-uptime-load.md --------- Co-authored-by: Kamran Ahmed --- .../linux/content/105-server-review/100-uptime-load.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/linux/content/105-server-review/100-uptime-load.md b/src/data/roadmaps/linux/content/105-server-review/100-uptime-load.md index 9340a2de9..f2f8adfcb 100644 --- a/src/data/roadmaps/linux/content/105-server-review/100-uptime-load.md +++ b/src/data/roadmaps/linux/content/105-server-review/100-uptime-load.md @@ -13,4 +13,8 @@ $ uptime 10:58:35 up 2 days, 20 min, 1 user, load average: 0.00, 0.01, 0.05 ``` -In the output above, "2 days, 20 min" tells us how long the system has been up, while "0.00, 0.01, 0.05" shows the system's load average over the last one, five, and fifteen minutes, respectively. \ No newline at end of file +In the output above, "2 days, 20 min" tells us how long the system has been up, while "0.00, 0.01, 0.05" shows the system's load average over the last one, five, and fifteen minutes, respectively. + +Learn more from the following resources: + +- [@article@Linux Load Average: What is Load Average in Linux?](https://www.digitalocean.com/community/tutorials/load-average-in-linux)