Guide to Linux and Operating Systems – Part 1

Linux is a family of Unix-like OSs based on the Linux Kernel. Linux Kernel is a monolithic kernel with a modular design. Here is a a simplified architecture of the Linux Operating System.

The fundamental architecture of the GNU/Linux operating system

When you boot up your own Linux Distro system (more on this later), you are utilizing the User Space which is were your User Applications and glibc (Used for implementing functions such as fopen(), calloc(),open()) exist. User Space interacts with the Kernel Space mainly via the System Call Interface.

System Call is how Userspace software requests service from the Kernel. Interface implements basic functions such as read and write . Typically, Sys Calls rely on Software Interrupts (SI). The SI will transfer control to the Kernel. If you’ve studied Computer Architecture and Organization, you might recall Software Interrupts as a signal to the kernel signaling that a certain even has taken place. You can read more about Software Interrupts here and about how Sys Calls are implemented here.

Below that is your Kernel, which has a number of subsystems. We have used the term Kernel quite a few times, let’s talk a little bit about what a Kernel is.

Kernels are computer programs that are responsible for low-level tasks: Disk Management, Task Management and stuff. It provides an interface between the user and the hardware components of the system.

Architecture of Linux

There are various different types of Kernels, here’s a few:

  1. Monolithic: MS-DOS, Unix, Linux

  2. Microkernel: GNU Hurd

  3. Hybrid Kernel: Windows NT (The kernel behind Windows Operating Systems)

  4. Nanokernel: KeyKOS

img

One of my favorite pieces on this topic is this article by IBM. Some of the material found here is a condensed version of the that article.

Finally, the architecture dependent code: Majority of Linux Code is architecture-independent, there are certain parts of the Linux Codebase which needs to be optimized to the architecture it runs on. This part of the code does exactly that.

img

So why Linux?

We assume that if you’ve read thus far, you might have some answer to this question, but we will try to convince you a little more.

Servers, Gaming Consoles, Spaceships - all use Linux in some way or another. Our Chairperson ‘21, Tej wrote a piece discussing the utility of Linux in everyday life and the founder of VIT Linux User Group has written an article introducing Linux from a User’s perspective here. Our Core Committee Member, Sarthak has written a 2-part article on how to get started with Linux.


How is it different from Windows

Linux Vs Windows

Even Peripherals in Linux are treated as files, unlike Windows, who classifies devices as devices and so on and so forth and


Now that you have a basic idea about Linux, let’s choose a Linux Distro for you.

Linux Distros: Linux Operating System isn’t developed or copyrighted by one single organization. There are lots of parts to a Linux System: Terminal, xServer, Desktop Environment etc. are all developed independently, sometimes by different organizations. If you wanted, you could build everything from source and get yourself a new Linux Distro, but we discourage that when you’re just starting off since it requires a mammoth amount of work.

Instead, you could go with one of the many Linux Distros (Short for Distributions). These Linux Distros take all the code, build it and combine them into a single Operating System for you.

image-removebg-preview

To find the right Distro for you, you can use: https://librehunt.org/

Be sure to consult other people in Linux forums and subreddits for your doubts. You can also leave a message to VIT Linux User Group via the Issues page on our Github Repo and we will try to get back to you.

Installing a Linux Distro

Once you have chosen your first distro, you will now have to install it. There are multitude of ways to do so. To first try out the operating system, you can use Virtual Machines or if you’re on Windows, you can try the WSL2. It is suggested that for any serious use, you install your chosen Distro natively. To do so, you can refer to the following article. Do not keep passwords that are too complex since you will need them frequently, but do not keep it too simple either.


The Linux Cheat Sheet

The Terminal

image-20201225200409678

The terminal in Linux is where most of the work happens (apart from your Browser where you will spend hours on Reddit 😛). The Terminal has a lot of useful tools, but we will start by doing the silly things.

What you see in the picture above is the locomotive command that drives a train through your screen. To install it, open your terminal (usually pretty easy) and type the following command.

$  apt-get install sl

It might give you one of two errors: Permission Denied or Command Not Found.

Permission denied occurs when your terminal does not have the privilege to access certain files or perform certain commands. To deal with this, you can use sudo here, but do not always depend on sudo.

Sudo is a command that allows you to run programs with the security privileges of another user, but by default, that other user is root, the “superuser” of the Linux System. You will be prompted for your password that you kept while installing.

$  sudo apt-get install sl

Command Not Found occurs when your Distro does not use apt-get and uses some other method. I personally use Debiam, for which apt-get works fine, but CentOS for example uses dnf. An easy way to figure out your system’s packaging tool is to Google it. In fact that will be your solution to everything.

image-20201225201554363

Once installed, you should type in the following.

$ sl

And you will find the locomotive running through your screen. Congratulations!

Now, you have learned about the following

  1. Sudo
  2. Installing stuff and Package Management (apt-get, dnf etc.)
  3. Running a command on the terminal

Now let’s play around with the Files

We already talked a little about Linux File Systems, now let’s wander around the directories in our system. The first thing you want to know is which directory you are in.

$ pwd

This will return your current terminal directory. Now let’s make a new folder.

$ mkdir newFolder

That’s it! You have a new folder called “newFolder”, now let’s navigate into it.

$ cd newFolder

Now you’re inside the new folder, let’s cross-check that.

$ pwd

To go back to your original directory, type

$ cd ..

This pretty much covers the absolute basics of Linux, going forth, you will need to familiarize yourself with Vim and other such tools. To get such regular updates from us, follow our Instagram and join our Subreddit.


Made with 💘 by VIT Linux User Group.

Linux User’s Group helps to understand the benefits of open source software over proprietary software. To create awareness and train users to go for open source software. To accelerate development and deployment of free and open source technologies, and beyond. Free to use, free to study, free to distribute, free to modify, free to access. Familiarize Students with Linux Distributions, Create awareness about FOSS, Learn general software on Linux such as GIMP, Libre Office, To present Linux as an efficient tool in Cyber security, Get students to contribute to FOSS, Make students more industry ready and to promote Linux in General.