Skip to the content.

Chapter 1: Introduction to Linux [2 Hrs]

Multics (MULTiplexed Information and Computing Service)

Reference:

Linux:

Chapter 2. Install Linux and tools [6 Hrs]

Rocky linux installation on VM

Steps

  1. Install a suitable virtualization softwares like (any one):
    • Virtualbox
    • Parallels
    • UTM
    • VMware workstations
  2. Download Rocky Linux Mimimal ISO from https://rockylinux.org/download

  3. Create a virtual machine with Network set to “Bridge Adapter” mode

  4. During install select “Allow root SSH login with password” (not recommended for production).

  5. Proceed with other steps normally.

SSH tools installation

For windows, download puttygen for public key generation and putty for accessing SSH servers.

For linux, openssh is installed by default which can be used for accessing SSH servers. Likewise, use ssh-keygen to generate public key pairs.

Instructions can be found on the internet.

Example command to create ssh key:

ssh-keygen -t ed25519 -C "your_email@example.com"

If you want to provide the file path for ssh key, and also want to give the password:

mkdir -p parent_dir # parent_dir is usually ".ssh"
ssh-keygen -t ed25519 -C "your_email@example.com" -f "parent_dir/identity_file" -N "password"

To copy the ssh key to the new node (server):

ssh-copy-id -i "identity_file" username@IP_address_of_server

To access the new node as the user

ssh -i "identity_file" username@IP_address_of_server