From 944e497c7c419c6af179e05292a94805ebf26a87 Mon Sep 17 00:00:00 2001 From: George Tony Date: Sun, 25 Sep 2022 19:20:20 +0530 Subject: [PATCH] Reorder the linux file system information to reflect the same order (#142) * Reorder the linux file system information to reflect the same order in the image. * Pin jinja2<3.1.0 to prevent mkdocs from being broken Co-authored-by: George Tony --- .../linux_basics/command_line_basics.md | 24 ++++++++++--------- courses/level101/linux_basics/intro.md | 2 +- requirements.txt | 1 + 3 files changed, 15 insertions(+), 12 deletions(-) diff --git a/courses/level101/linux_basics/command_line_basics.md b/courses/level101/linux_basics/command_line_basics.md index a5cc757..3e6d11a 100644 --- a/courses/level101/linux_basics/command_line_basics.md +++ b/courses/level101/linux_basics/command_line_basics.md @@ -35,21 +35,23 @@ files or user related files. ![](images/linux/commands/image17.png) - bin | The executable program of most commonly used commands reside in bin directory - - sbin | This directory contains programs used for system administration. - - home | This directory contains user related files and directories. - - lib | This directory contains all the library files - + bin | The executable program of most commonly used commands reside in bin directory + + dev | This directory contains files related to devices on the system + etc | This directory contains all the system configuration files - + + home | This directory contains user related files and directories. + + lib | This directory contains all the library files + + mnt | This directory contains files related to mounted devices on the system + proc | This directory contains files related to the running processes on the system - dev | This directory contains files related to devices on the system + root | This directory contains root user related files and directories. - mnt | This directory contains files related to mounted devices on the system + sbin | This directory contains programs used for system administration. tmp | This directory is used to store temporary files on the system diff --git a/courses/level101/linux_basics/intro.md b/courses/level101/linux_basics/intro.md index 716a090..1060d01 100644 --- a/courses/level101/linux_basics/intro.md +++ b/courses/level101/linux_basics/intro.md @@ -79,7 +79,7 @@ and system utilities. The Linux kernel was independently developed and released by Linus Torvalds. The Linux kernel is free and open-source - [https://github.com/torvalds/linux](https://github.com/torvalds/linux) -Linux is a kernel and and not a complete operating system. Linux kernel is combined with GNU system to make a complete operating system. Therefore, linux based operating systems are also called as GNU/Linux systems. GNU is an extensive collection of free softwares like compiler, debugger, C library etc. +Linux is a kernel and not a complete operating system. Linux kernel is combined with GNU system to make a complete operating system. Therefore, linux based operating systems are also called as GNU/Linux systems. GNU is an extensive collection of free softwares like compiler, debugger, C library etc. [Linux and the GNU System](https://www.gnu.org/gnu/linux-and-gnu.en.html) History of Linux - diff --git a/requirements.txt b/requirements.txt index 6959239..36b2ff1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ mkdocs==1.1.2 mkdocs-material==6.2.8 +jinja2<3.1.0