From b29706e85e5cdcf02447b4a1ccf607ea0299c2e9 Mon Sep 17 00:00:00 2001 From: Bhavya Tyagi <55448429+bhavyatyagi@users.noreply.github.com> Date: Tue, 2 Nov 2021 14:56:28 +0530 Subject: [PATCH] Fixed Issue #127 : Redirection issue and a typo in monitoring script (#128) * fix redirection issue by adding https:// * add missing '#' in monitoring script --- .../containerization_and_orchestration/intro_to_containers.md | 2 +- courses/level102/linux_intermediate/bashscripting.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/courses/level102/containerization_and_orchestration/intro_to_containers.md b/courses/level102/containerization_and_orchestration/intro_to_containers.md index abe08e1..f6bd007 100644 --- a/courses/level102/containerization_and_orchestration/intro_to_containers.md +++ b/courses/level102/containerization_and_orchestration/intro_to_containers.md @@ -177,7 +177,7 @@ This limit is too low and hence most of the processes attached to mem_group shou The process is OOM killed as expected. You can confirm the same with dmesg logs (mm_fault_error). -If you want to try out a more in-depth exercise on cgroups, check out [this tutorial from Geeks for Geeks](geeksforgeeks.org/linux-virtualization-resource-throttling-using-cgroups/). +If you want to try out a more in-depth exercise on cgroups, check out [this tutorial from Geeks for Geeks](https://geeksforgeeks.org/linux-virtualization-resource-throttling-using-cgroups/). Let’s come back to containers again. Containers share the same kernel as the underlying host operating system and provide an isolated environment of the application within. Cgroups help in managing resources used by processes within a container and namespaces help isolate network stack, pids, users, group ids and mount points in a container from another container running on the same host. diff --git a/courses/level102/linux_intermediate/bashscripting.md b/courses/level102/linux_intermediate/bashscripting.md index b08a376..ab996cb 100644 --- a/courses/level102/linux_intermediate/bashscripting.md +++ b/courses/level102/linux_intermediate/bashscripting.md @@ -158,7 +158,7 @@ We usually come up with tasks that are mostly repetitive, looping helps us to co | until | until \[ expression \] 

do 

    \[ until\_block\_to_execute \]

done | ``` -!/bin/bash +#!/bin/bash #Script to monitor the server hosts=`cat host_list`