# Learning the Unix OS

[![LearningTheUnixOS_5th_Edition.jpg](https://lab-book.01blu3.com/uploads/images/gallery/2024-01/STatpFYxCrrGPBWz-learningtheunixos-5th-edition.jpg)](https://www.oreilly.com/library/view/learning-the-unix/0596002610/ "Learning the Unix OS Buy Page")<span style="text-decoration: underline;">**Learning the Unix OS - 5th Edition  
</span>**Jerry Peek, Grace Todino &amp; John Strang ( O'Reilly, 2002 )**

This book is now over 20 years old, yet it has aged gracefully.  
Roughly 90% of the information inside is still relevant today and the other 10% can be treated as a history lesson.   
The reason can be found in the book's preface.

> **This book teaches basic system utility commands to get you started with Unix... We cover a commands most useful features...**

And it more than lives up to its purpose. While Linux &amp; Unix have changed a lot over the years the command line itself hasn't changed radically. The reason why the commands shown are interchangeable is that many of the core commands are identical in terms of syntax and functionality between Unix &amp; Linux. There are of course some differences, but they are not enough to be a problem at our current level. We won't learn about Modern Filesystems or Containers, but we will learn enough to get even more confident with working through Linux.

##### <span style="text-decoration: underline;">**Book Overview**</span>

Our next step in the systems fundamentals course will be [**Learning The Unix OS by O'Reilly**](https://www.oreilly.com/library/view/learning-the-unix/0596002610/). You may treat this book as a **Practical Guide to Unix**. This book is 157 pages long and will take you 7 days to finish if you dedicate between 2-3 hours every day to work through it.  
  
When you look at the title you will notice the word **Unix,** but don't let the word Unix discourage you. Much of what we will be going over will be regarding the Command Line Interface. Which for our purposes is practically interchangeable with Linux. Don't misunderstand, they are two different operating systems, with the key difference being that **Linux is Open-Source** while **Unix is Proprietary**

The main goal of this book is to serve as a **Practical Starter Guide**, covering the main essentials of the CLI and Unix OS. That is why this book is still remains relevant even today. While we did go through an introductory course already, that being the Linux Upskill Challenge, there are some nuances that that this book goes through that will be very helpful to us.  
We'll explore the various types of commands, Windows Systems, basic File Management, I/O-Redirection and even some interesting pieces of Linux history. When I finished going through this book, I felt confident that I could start working on this roadmap and bring something interesting to the table. Although we still have a long way to go before we can call ourselves true adepts, but steadily, we are making progress.

##### **✨**<span style="text-decoration: underline;">**Personal Note**</span>

**( The following has been added to the overview page. But I am keeping this here as this was when I thought of the idea. )**  
Throughout this journey I will do my best to be as objective as I can. However, I am still in the middle of my learning and I am only human. While technology itself is neutral, the way we use it, how we think about it, what we think is best moving forward and so on, are things that are human viewpoints. There are of course times when things are simply 0 or 1, but as you go through your own journey you will find that you will have to come up with your own definitions and reasons for doing things backed by personal preference or well researched analysis or simply that's the way things are done.   
So, to carry on with that spirit I will place the **sparkling star icon✨** whenever certain notes or topics are things I am speaking my own mind on. I encourage you to come up with your own analysis or thoughts on those topics.


##### <span style="text-decoration: underline;">**Goals of this Book**</span>

- Gain a basic understanding of the various use cases for **Linux** as well as cover its **strengths and weaknesses**
- Learn how to find the **current shell** you're working in: <span style="color: rgb(194, 224, 244);">**ps $$** </span>&amp; **<span style="color: rgb(191, 237, 210);">echo </span>**<span style="color: rgb(194, 224, 244);">**$SHELL**</span>
- Cover the formatting of Unix command arguments
- Go over Jobs and how to: show, restart, stop and kill them: <span style="color: rgb(194, 224, 244);">**jobs** </span>| <span style="color: rgb(194, 224, 244);">**fg** </span>| **<span style="color: rgb(194, 224, 244);">ctrl-z </span>**| **<span style="color: rgb(194, 224, 244);">kill %</span>**
- Cover Window Systems going over virtual consoles, terminal windows vs alphanumeric terminals
- Root vs relative path names
- 3 permission types of files and directories
- Understand group ownership and how to give specific groups access to files and directories
- How to remove files with spaces between them
- Cover the Primary Wildcards **<span style="color: rgb(194, 224, 244);">( \*, ?, \[ \] )</span>**
- Go over the main ways to find files in Unix <span style="color: rgb(194, 224, 244);">**( find | locate )**</span>
- I/O Redirection with: <span style="color: rgb(194, 224, 244);">**( &gt;, &gt;&gt;, &lt;, |, grep, sort )**</span>
- Pager program commands <span style="color: rgb(194, 224, 244);">**( less | more | pg )**</span>
- Examine CLI web browsers and their use case

##### <span style="text-decoration: underline;">**Course Notes**</span>

I quite enjoyed making the notes for this book since it led me to making several web searches on various different topics about Linux both old and new.

- **✨Why should we use Linux?**
    - The FOSS nature of the OS allows groups to have a very powerful tool. Making it a great choice for smaller teams or groups without much money.
    - Linux is also made to be run on practically anything. From the weakest hardware to the most powerful, although Linux's best potential can be extracted on more powerful systems.
    - As another note, Linux supports both windowed and non-windowed systems.
- <span style="text-decoration: underline;">**Chapter 1 - Getting Started**</span>
    - You can find the current shell you are working in with <span style="color: rgb(194, 224, 244);">**ps $$** </span>&amp; **<span style="color: rgb(191, 237, 210);">echo </span>**<span style="color: rgb(194, 224, 244);">**$SHELL**</span>
    - <span style="color: rgb(191, 237, 210);">**whoami** </span>- Will show the username you are logged in as
    - <span style="color: rgb(191, 237, 210);">**who** </span>- Will show a list of users that are logged on
    - There are control characters you can use in Linux. The most common of which is **CTRL+C** &amp; **CTRL+D**
        - **<span style="color: rgb(194, 224, 244);">CTRL+C ( ^C )</span>** : **Cancel the currently running process or command**
        - **<span style="color: rgb(194, 224, 244);">CTRL+D ( ^D )</span> : Marks the End-Of-File. Will have no effect if the program isn't reading input from the terminal. If used in a shell terminal it will exit.**
    - **Unix Command Arguments**
        - **command** option(s) filename(s)
        - Options modify the way a command works
        - Can be letters <span style="color: rgb(194, 224, 244);">**( -ltr )** </span>or words <span style="color: rgb(194, 224, 244);">**( --delete )**</span>
        - At times there will be special exceptions for certain commands
    - **Daemon** - May also be called a background process. It is a Unix or Linux program that executes in the background. The main distinction between a daemon and a job is that a daemon operates autonomously, performing tasks without user intervention.
    - **Job** - Any programs that are started interactively by the user that don't detach in the background, ( ie. becoming a daemon ) are jobs. 
        - **<span style="color: rgb(194, 224, 244);">jobs </span>-** shows running jobs in the current shell
        - **<span style="color: rgb(194, 224, 244);">ps</span>** - lists running processes
        - Jobs in the foreground can be stopped with <span style="color: rgb(191, 237, 210);">**ctrl-z**</span>
        - **<span style="color: rgb(194, 224, 244);">job\_name &amp; </span>-** starts a job and places it as a background process
        - **<span style="color: rgb(194, 224, 244);">fg </span>-** places a background process into the foreground
        - **<span style="color: rgb(194, 224, 244);">kill % job\_num</span>** - sends a signal to kill a job or process
    - **Chapter 1 - Summary:** In this chapter we covered the basics of working in a Unix environment. We learned about **processes**, starting them and stopping them, We also briefly covered **control characters** and some **command syntax**
- <span style="text-decoration: underline;">**Chapter 2 - Using Window Systems**</span>
    - Alphanumeric terminals handle a single session on a single screen
    - Virtual consoles exist as a way to get Fullscreen log-in sessions on the same OS. You may switch between consoles with **<span style="color: rgb(191, 237, 210);">Ctrl-LeftAlt-\[F1…F6\]</span>**
    - Unix Systems have windows managers. One of the most important types being terminal windows 
        - A Unix session inside a shell prompt is a terminal window
    - Terminal windows allow us to interact with Unix from a shell prompt
    - Use **<span style="color: rgb(191, 237, 210);">Ctrl+Alt+F6</span>** to get a non-graphical log-in prompt
    - **Chapter 2 - Summary:** In this chapter we learned about the history of windows terminals. And we also covered various ways to deal with crashing windows
- <span style="text-decoration: underline;">**Chapter 3 - Using your Unix account**</span>
    - A file is the unit of storage in Unix. Files can hold anything from Text to programs, digitally encoded data, etc.
    - Any time we log into a Linux/Unix machine we will start in the home directory which is also our working directory
    - All directories in the Unix system are organized into a tree-like hierarchy structure.
    - **Networked Filesystems** allow us to access a remote computer's files and have them appear in our computer's directory tree.
    - **Absolute** vs **Relative** Paths 
        - <span style="color: rgb(191, 237, 210);">**Root starts with a slash ( / )**</span>
        - **Relative path names<span style="color: rgb(248, 202, 198);"> <span style="color: rgb(224, 62, 45);">never start with a ( / )</span></span>**
        - <span style="color: rgb(194, 224, 244);">Unix/Linux filesystems can also hold things that aren't directories or files.</span>
            - **<span style="color: rgb(194, 224, 244);">Symbolic-links, FIFOs, &amp; sockets</span>**
    - **Sysadmins** are users that have full control over Linux files
    - There are 3 permission types to files and directories 
        - <span style="color: rgb(191, 237, 210);">**Read | Write | Execute**</span>
    - Both files and directories have their own permissions 
        - <span style="color: rgb(251, 238, 184);">**File Access Permissions | Directory Access Permissions**</span>
    - This book goes over **chmod** and **chattr** as well. You can find this information in the **Linux Upskills Challenge** [**Notes**](https://lab-book.01blu3.com/books/systems-programming-fundamentals/page/the-linux-upskills-challenge#bkmrk-course-notes) Section.
    - Protecting and Sharing Files  
        \- Group ownership is the way to give certain groups of users access to files or directories  
        
        - List all groups: <span style="color: rgb(194, 224, 244);">**groups; compgen -u; compgen -g;** </span>
        - Add groups: **<span style="color: rgb(191, 237, 210);">sudo </span><span style="color: rgb(194, 224, 244);">addgroup </span><span style="color: rgb(251, 238, 184);">local\_group</span>**
        - Add users to groups: **<span style="color: rgb(191, 237, 210);">sudo </span><span style="color: rgb(194, 224, 244);">usermod -a -G </span><span style="color: rgb(191, 237, 210);"><span style="color: rgb(251, 238, 184);">local\_group</span> </span><span style="color: rgb(251, 238, 184);">user\_name</span>**
        - Change group owner:<span style="color: rgb(191, 237, 210);"> </span>**<span style="color: rgb(191, 237, 210);">sudo</span> <span style="color: rgb(194, 224, 244);">chgrp <span style="color: rgb(251, 238, 184);">user\_name </span></span><span style="color: rgb(236, 202, 250);">target-file </span>**
        - Change owner: **<span style="color: rgb(191, 237, 210);">sudo </span><span style="color: rgb(194, 224, 244);">chown </span><span style="color: rgb(251, 238, 184);">user\_name </span><span style="color: rgb(194, 224, 244);">dirname</span>**
        - Make Sub-Files and Sub-Directories have same group as parent: <span style="color: rgb(194, 224, 244);">chmod </span>**<span style="color: rgb(191, 237, 210);">g+s dirname</span>**
    - Profile customization can be done through the following:  
        <span style="color: rgb(251, 238, 184);">**( .login, .cshrc, .tcsrhc, .bashrc, .bash\_profile, .bash\_login )**</span>
    - **<span style="color: rgb(191, 237, 210);">PATH=</span>** **&gt;** Tells the shell which directories to search for Unix Programs
    - <span style="color: rgb(194, 224, 244);">**umask**</span> **&gt;** Sets the default file permissions assigned to all files you create
    - **Chapter 3 - Summary:** We have now gone over **file management**, **profile management** and the **PATH** variable. And we are now aware about network file sharing
- <span style="text-decoration: underline;">**Chapter 4 - File Management**</span>
    - In Linux everything can be viewed as a file. Directories themselves are simply a special type of file
    - Removing files with spaces between them 
        - <s><span style="color: rgb(248, 202, 198);">**rm a strange name**</span></s>
        - <span style="color: rgb(191, 237, 210);">**rm "a strange name"**</span>
    - The primary Wildcards 
        - **Asterisk : <span style="color: rgb(191, 237, 210);">\*</span>**
        - **Question Mark : <span style="color: rgb(191, 237, 210);">? </span>**| Covers single characters
        - **Square Brackets : <span style="color: rgb(191, 237, 210);">\[ \]</span>** | Covers a range of single characters
    - The most popular text editors are <span style="color: rgb(194, 224, 244);">**vim**</span>, <span style="color: rgb(194, 224, 244);">**emacs** </span>&amp; <span style="color: rgb(194, 224, 244);">**Pico**</span>
        - Text editors are made to work with plaintext files.
        - Unix makes us of plain-text files in various locations, from the Input and Output of Linux programs to shell setup files &amp; shell scripting
    - Commands to find files in Unix 
        - <span style="color: rgb(191, 237, 210);">**find** </span>-&gt; simple subdirectory search
        - <span style="color: rgb(191, 237, 210);">**locate** </span>-&gt; GNU program that requires setup
    - **Chapter 4 - Summary:** We interacted in various different ways with the Unix file-system, covering popular text-editors, and the powerful use-cases for wildcards
- <span style="text-decoration: underline;">**Chapter 5 - Redirecting I/O**</span>
    - Covered the I/O operations \[ &gt; , &gt;&gt; , &lt; , | , grep \] 
        - <span style="color: rgb(194, 224, 244);">**&gt;**</span> - Output Redirection Operator
        - **<span style="color: rgb(194, 224, 244);">&gt;&gt;</span>** - Append Redirection Operator
        - **<span style="color: rgb(194, 224, 244);">&lt;</span>** - input redirection
        - <span style="color: rgb(194, 224, 244);">**|** </span>- Pipe Operator
        - **<span style="color: rgb(194, 224, 244);">grep </span>- Looks for patterns**  
            □ <span style="color: rgb(191, 237, 210);">**-v** </span>: lines that don't match pattern  
            □ <span style="color: rgb(191, 237, 210);">**-n** </span>: matched line and line #  
            □ **<span style="color: rgb(191, 237, 210);">-l </span>**: names of files with matching lines  
            □ <span style="color: rgb(191, 237, 210);">**-c** </span>: count of matching lines  
            □ <span style="color: rgb(191, 237, 210);">**-i** </span>: match either upper/lower case
        - **<span style="color: rgb(194, 224, 244);">sort </span>- Arranges lines of text numerically or alphabetically**  
            □ <span style="color: rgb(191, 237, 210);">**-n** </span>: sort numerically  
            □ <span style="color: rgb(191, 237, 210);">**-r** </span>: reverse sorting order  
            □ <span style="color: rgb(191, 237, 210);">**-f** </span>: sort upper- and lowercase together  
            □ <span style="color: rgb(191, 237, 210);">**+x** </span>: ignore first x fields when sorting  
             🔹**( <span style="color: rgb(191, 237, 210);">+4n </span>)** <s>**<span style="color: rgb(248, 202, 198);">-rw-rw-r-- 1 user group</span>**</s> **<span style="color: rgb(191, 237, 210);">1605</span>**  
             🔹**<span style="color: rgb(191, 237, 210);">+4n </span>- skips over 4 fields, sep. by blank spaces**
        - "**<span style="color: rgb(194, 224, 244);">&gt;</span><span style="color: rgb(194, 224, 244);"> </span><span style="color: rgb(191, 237, 210);">filename</span>**" - Programs output is diverted from the standard output to the named file. **Overwriting the previous output.**
            - <span style="color: rgb(224, 62, 45);">Careful about **overwriting** target file!</span>
            - <span style="color: rgb(224, 62, 45);">Also known as **clobbered**</span>
        - **"<span style="color: rgb(194, 224, 244);">&gt;&gt;</span> <span style="color: rgb(191, 237, 210);">filename</span>"** - Programs output is diverted from the standard output to the named file. And **appends to the file** as opposed to overwriting it.
    - **Pager programs** - **<span style="color: rgb(194, 224, 244);">less</span>, <span style="color: rgb(194, 224, 244);">more</span>, <span style="color: rgb(194, 224, 244);">pg</span>**
    - **Chapter 5 - Summary:** Covered the various redirection operators and learned about the power of **piping** &amp; **filtering**. Pager programs and Filter operators like **grep** and **sort** are a powerful tool that allow us to organize and access information more effectively
- **<span style="text-decoration: underline;">Chapter 6 - Using the Internet and Other Networks</span>**
    - There are various ways to access remote computers. You could use **<span style="color: rgb(194, 224, 244);">telnet</span>, <span style="color: rgb(194, 224, 244);">ssh</span>, <span style="color: rgb(194, 224, 244);">rlogin</span>** and <span style="color: rgb(194, 224, 244);">**rsh**</span>. However, the main standard today is **ssh**. Though there may be times when you will need to use older protocols. 
        - It is also possible to open windows through remote connections. This is known as   
            <span style="color: rgb(194, 224, 244);">**X-Forwarding** </span>
    - There are programs out there called CLI Web browsers. The most popular of which are w3m and Lynx. These tools allow you to browse online resources through the command line interface without needing a GUI.
    - There exist CLI tools to transfer files between systems, for remote systems you will need a networked filesystem location,
    - <span style="color: rgb(194, 224, 244);">**scp &amp; rcp**</span>
        - **scp** ( secure copy )
        - **rcp** ( remote copy )
        - **Syntax:** <span style="color: rgb(194, 224, 244);">**scp**||**rcp**</span> <span style="color: rgb(191, 237, 210);">hostname:pathname</span>
    - **<span style="color: rgb(194, 224, 244);">FTP</span>**
        - More flexible and secure than <span style="color: rgb(194, 224, 244);">**rcp** </span>but much less secure than <span style="color: rgb(194, 224, 244);">**sc**</span><span style="color: rgb(194, 224, 244);">**p**</span>
        - <span style="text-decoration: underline;">**Syntax**</span>**:** <span style="color: rgb(191, 237, 210);">hostname:ftp</span>
        - <span style="text-decoration: underline;">**Commands**</span>  
            □ **Copies files Local -&gt; Remote**  
             🔹<span style="color: rgb(191, 237, 210);">**put** </span>filename | **<span style="color: rgb(191, 237, 210);">mput</span>** filename  
            □ **Copies files Remote -&gt; Local**   
             🔹<span style="color: rgb(191, 237, 210);">**get** </span>filename | <span style="color: rgb(191, 237, 210);">**mget** </span>filename  
            □<span style="color: rgb(191, 237, 210);"> **prompt**</span>  
            □ <span style="color: rgb(191, 237, 210);">**cd** </span>pathname - change working dir. on remote pc  
            □ <span style="color: rgb(191, 237, 210);">**lcd** </span>pathname - change working dir. on local pc  
            □ <span style="color: rgb(191, 237, 210);">**dir** </span>- list remote pc's directory  
            □ <span style="color: rgb(191, 237, 210);">**binary** </span>- tells ftp to copy files w/o translation. Preserves, \[ picture, sound or other date \]  
            **□ <span style="color: rgb(191, 237, 210);">ascii </span>**- Transfers plaintext files, transferring data if needed Covers \[ MS &lt;-&gt; Unix Transfer, etc. \]
    - ✨ I've noted in the book overview that **"Learning the Unix OS"** would also serve as a brief history lesson on some old topics. And this is where you'll see a lot of that. Don't get me wrong Usenet is still around and quite popular in many circles. The same can be said for **IRC**, we also have **Matrix** as a new option. However, **talk** can be considered to no longer be in use although some distributions still ship with it. In regard to **Usenet**, **IRC** and **Matrix** I do recommend you look more into it. It's certainly quite interesting and could be worth your time.
    - <span style="color: rgb(194, 224, 244);">**Electronic Mail**</span>
        - You're able to send E-Mails in Unix &amp; Linux through the shell prompt
        - One of the most popular programs to do this was made by Berkley
    - <span style="color: rgb(194, 224, 244);">**Usenet News**</span>
        - WW distributed system available to computers.
        - In order to read Usenet groups, you will need a news client  
            □ Popular readers: <span style="color: rgb(191, 237, 210);">**slrn**</span>, <span style="color: rgb(191, 237, 210);">**nn**</span>, <span style="color: rgb(191, 237, 210);">**trn**</span>  
            □ Usenet Groups are what came before forums
    - <span style="color: rgb(194, 224, 244);">**Interactive chat**</span>
        - Instant Messaging, in the days when AOL and Jabber took off
        - <span style="color: rgb(191, 237, 210);">**talk** </span>&amp; <span style="color: rgb(191, 237, 210);">**IRC**</span>
- <span style="text-decoration: underline;">**Chapter 7 - Multitasking**</span>
    - Unix is able to do many different jobs at once  
        
        - However, the reality is that each processor can only execute one command at a time. So, the OS divides the processor's time between tasks quickly, so it looks as is everything is running at the same time.
        - This is also known as **multi-tasking**
    - In order to run a program in the background, add an **<span style="color: rgb(191, 237, 210);">&amp;</span>** character at the end 
        - The shell then assigns and displays a **Process ID (PID) number** for the program
        - To put several processes in the background, use the following <span style="text-decoration: underline;">**syntax**</span>**:**
            - **<span style="color: rgb(194, 224, 244);">(</span><span style="color: rgb(191, 237, 210);">process1</span>;<span style="color: rgb(191, 237, 210);"> process2</span><span style="color: rgb(194, 224, 244);">)</span> <span style="color: rgb(191, 237, 210);">&amp;</span>**
    - With Linux you can specify command-line options for windows
    - **Checking on a Process**  
        
        - <span style="color: rgb(191, 237, 210);">**ps** </span>- allows you to see how long a process has been running
        - <span style="color: rgb(191, 237, 210);">**tty** </span>- shows the name of the terminal where a process is running
        - <span style="color: rgb(194, 224, 244);">**ps □ Process ID (PID)**</span>  
             🔹 A unique number assigned by Unix to the process  
            <span style="color: rgb(194, 224, 244);">**□ Terminal name (TTY)**</span>  
             🔹 The Unix name for the terminal from which the process was started  
            <span style="color: rgb(194, 224, 244);">**□ Run time (TIME)**</span>  
             🔹 The amount of computer time **(in minutes and seconds)** that the process has used  
            <span style="color: rgb(194, 224, 244);">**□ Command (CMD)  
            </span> 🔹The name of the process
    - The **<span style="color: rgb(224, 62, 45);">kill </span>**command aborts a process 
        - **<span style="color: rgb(224, 62, 45);">kill </span>PID(s)**
        - **<span style="color: rgb(194, 224, 244);">sleep </span>n**

##### <span style="text-decoration: underline;">**Required Reading** </span>

Our required reading for this section will be a mix of reviewing old commands with learning new ones. We begin by covering some particularly useful List and System/Network monitoring commands. For those I recommend using the **<span style="color: rgb(194, 224, 244);">man </span>**page in order to get more comfortable with using the **<span style="color: rgb(194, 224, 244);">man</span>** command. After that we'll cover some articles on the Digital Ocean and RedHat community blogs that cover some more useful commands.

✨Finally we end with a more philosophical article, technical ability is important but I encourage you to consider the abstract side as well. Primarily questions like: "Why is Unix &amp; Linux designed this way?" "What the point of FOSS?" and musings of that nature.

<span style="color: rgb(241, 196, 15);">**( Self-Guided )** </span>- Look into the following commands and go through them by using the <span style="color: rgb(194, 224, 244);">**man** </span>command. Read the **<span style="color: rgb(45, 194, 107);">Name</span>, <span style="color: rgb(45, 194, 107);">Synopsis</span>, <span style="color: rgb(45, 194, 107);">Description</span>** and go over some of the <span style="color: rgb(45, 194, 107);">**Options**</span>, then try the commands out. For system memory commands I recommend paying attention to the **-h** flag which shows displays the output in a human readable format. After you read the command's man page if it's use-case or meaning is unknown to you, do a web-search for more information.

- <span style="text-decoration: underline;">**List commands**</span>: <span style="color: rgb(194, 224, 244);">**ls, lsusb, lscpu, lshw, lsipc, lslocks, lslogins, lsmem, lsns, lsof, lspci, lsusb**</span>
- **<span style="text-decoration: underline;">System Monitoring Commands</span>:** **<span style="color: rgb(194, 224, 244);">top</span>/<span style="color: rgb(194, 224, 244);">htop, free, df, ps, pkill</span>**
- <span style="text-decoration: underline;">**Network Utilities:**</span> <span style="color: rgb(194, 224, 244);">**ping, traceroute, dig, nslookup, host, hostname, arp, ifconfig, iwconfig, route**</span>

**<span style="color: rgb(241, 196, 15);">( Article )</span> <span style="color: rgb(241, 196, 15);"><span style="color: rgb(0, 128, 255);">Digital Ocean Community:</span> </span>[Top 50+ Linux Commands](https://www.digitalocean.com/community/tutorials/linux-commands) by e...f** - By this point we have gone over most of the commands listed in the Digital Ocean article. I recommend reviewing any commands you're not confident in and pick up any that you may not know.

<span style="color: rgb(241, 196, 15);">**( Article )** </span>**<span style="color: rgb(241, 196, 15);"><span style="color: rgb(238, 0, 0);">RedHat - Enable Sysadmin: </span></span>[Linux Commands: du...](https://www.redhat.com/sysadmin/du-command-options) by Tyler Carrigan<span style="color: rgb(241, 196, 15);"><span style="color: rgb(238, 0, 0);"> </span></span>**- The **<span style="color: rgb(194, 224, 244);">du</span>** command is an excellent tool that will give you insight into how your storage is being used. This short article will go over the most used flags and how to make the most of them.

<span style="color: rgb(241, 196, 15);">**( Article ) <span style="color: rgb(238, 0, 0);">RedHat - Enable Sysadmin:</span>** </span>**[How to Manage Linux Permissions...](https://www.redhat.com/sysadmin/manage-permissions) by Damon Garn** - Managing user permissions is an essential task for any sysadmin. User access control is an essential security feature meant to protect data by giving only certain users access to data and resources based on certain contexts. If you still feel unconfident about managing permissions focus on this post and make sure to understand **absolute/octal mode.**

**<span style="color: rgb(241, 196, 15);">( Article ) </span>Linux-Databook: [The Unix and Linux Philosophy](http://www.linux-databook.info/?page_id=2178)** by **dboth** - Every Operating System has it's own philosophy. To steal the quote listed in the post.

> An operating system, by its nature, embodies the philosophy of its creators…" **-** **Mike Gancarz**

Essentially any OS from Linux to Windows to macOS has their own way of doing things. It's Linux's philosophy that makes it so powerful in a capable users hand. As always I recommend you take away your own conclusions from this article. You may agree with much of it now and maybe come to disagree with much of it later and vice versa, even I don't agree with every tenet.

**<span style="color: rgb(241, 196, 15);">( Article ) </span>itsfoss: [21 Terminal Shortcuts ](https://itsfoss.com/linux-terminal-shortcuts/)by Sagar Sharma** - Lastly, we cover **Terminal Shortcuts**. They might not seem like such a big deal but getting the hang of a couple shortcuts can make a big difference for your efficiency and speed leading to substantial quality of life improvements.

##### <span style="text-decoration: underline;">**Recommended Reading**</span>

<span style="color: rgb(241, 196, 15);">**( Video )** </span>**[Unix and Linux History](https://www.youtube.com/watch?v=EZMA3Ge144U) by Jon "maddog" Hall** - Jon Hall gives a great rundown on Linux and Unix history in the 50 year period from 1969 to 2019. It's an informal recount mixed with personal experiences and that's exactly what makes it such a compelling watch.

<span style="color: rgb(241, 196, 15);">**( Video )**</span> [**The Rise of Unix. The Seeds of its Fall.**](https://www.youtube.com/watch?v=HADp3emVABg) **by Asianometry** - A great brief 16-minute video that covers the rise of Unix. Started in the legendary Bell Labs by Ken Thompson and Dennis Ritchie. As a personal note, if you're interested in video essays on technology, economics, business and politics I would highly recommend you explore more of Asianometry's videos.

<span style="color: rgb(241, 196, 15);">**( Article )**</span> [**The Early Days of Linux**](https://lwn.net/Articles/928581/) **by Lars Wirzenius** - In keeping with the theme of historical reading the following article goes over some of the very first days of Linux. Lars witnessed the birth of Linux and he also helped fix some of its first issues.

**<span style="color: rgb(241, 196, 15);">( Short Rant )✨[How does the Unix Philosophy matter in modern times?](https://www.reddit.com/r/linux/comments/mjmfd1/comment/gtbu2ep/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button) </span>by dlarge65 -** There are many diverging opinions on the Unix philosophy. Some say it is over-idealized and irrelevant in the modern day, others argue that there was maybe a philosophy at one point but practicality won over and so on. While I'm still very much new to Linux I enjoyed this rant which takes on a more balanced stance and viewpoint on the Unix Philosophy. It is too early to give my thoughts on the matter but moving forward I plan on taking the balanced approach.

#### **<u>Section Projects</u>**

##### **Project 2 - Your First Wargame -&gt; [Over The Wire: Bandit](https://overthewire.org/wargames/bandit/bandit0.html)**

[![OTW-Bandit-L0.png](https://lab-book.01blu3.com/uploads/images/gallery/2024-04/scaled-1680-/rxROAJZu9JE01KFT-otw-bandit-l0.png)](https://overthewire.org/wargames/bandit/bandit0.html)

**Wargame vs CTFs** If you're like me, you probably thought that the term wargame and CTF were interchangeable but they are 2 different things although they are related.  
To Summarize: **Capture The Flag (CTF)** - <span style="color: rgb(224, 62, 45);">**Time Limited** </span>/ **Wargame** - **<span style="color: rgb(45, 194, 107);">Not Time Limited  
</span>Capture The Flag (CTF)** - CTFs are exercises where participants try to find strings, called "flags" which are hidden inside purposefully vulnerable programs or websites, **Wargame** - A cyber-security challenge where competitors must exploit or defend a vulnerability in a system or application to gain or prevent access to a computer system.

In essence CTF's are time-based competitions where people try to come out on top, whereas wargames aren't really time limited or competitions, although they do have CTF style challenges.

<p class="callout info">For this project your job is to go through **The** **Beginner Wargame - Bandit**</p>

**Why a wargame?**  
First off, they are very fun! I was always a bit hesitant to read through man pages, but I found myself going through documentation and scouring man pages all to get that next flag.   
Secondly, they can be very challenging. You'll be forced outside of your comfort zone quite often. Bandit will lead you to explore concepts in networking, compression, decompression, hex dumps, the shell and more.  
  
**Bandit** Bandit is a wargame aimed at beginners. Wargames are usually split into levels. We start at Level 0 and try to reach the end.  
  
**Why Bandit?** I was pretty hesitant about doing CTFs, they tend to have a heavy cybersecurity focus, which is important, but at our stage can be a distraction.  
However, **bandit is the ultimate Linux Lab.**  
\- You will use a variety of new flags for commands you commonly use  
\- You will get a better grasp on user and file permissions  
\- You will become more comfortable google searching for Linux information  
\- You will be forced to read the man pages  
\- You will cover Networking Topics, Data encoding, compression and decompression  
\- You will be introduced to git, and its commands  
\- You will go over shell and CLI behavior  
  
After doing Bandit, I am much more comfortable reading documentation, and I have a better idea on the skills I'm missing as a Linux user. You'll learn a lot doing your first wargame and I hope you'll have as much fun working through it as I did.

##### **[Bandit Level - 0](https://overthewire.org/wargames/bandit/bandit0.html)**