Rancher OS

Install Rancher OS - The Container Operating System

Install Rancher OS - The Container Operating System
Rancher OS is a container operating system. It is used to build a very lightweight Docker host that can run on very low spec hardware. It's does not need much memory to run. Docker is preinstalled and preconfigured on Rancher OS. So, you don't have to do anything other than installing Rancher OS on your machine. You can get started with Docker fast with Rancher OS.

In this article, I will show you how to install Rancher OS on your computer. I will be using a VMware virtual machine to show you how to install Rancher OS on your hard drive. But you can easily install it Bare-Metal (on real computers) with just a few changes that I think you will be able to figure out on your own. So, let's get started.

System Requirements:

To install Rancher OS, you should have,

Downloading Rancher OS:

You can download an ISO installer image of Rancher OS from the official GitHub repository of Rancher OS. To download the Racher OS ISO image, go to the official GitHub repository of Rancher OS at https://github.com/rancher/os/releases and navigate to the Latest release section.
Now, click on the rancheros.iso link as marked in the screenshot below.

Your browser may prompt you to save the Rancher OS ISO image. Click on Save File.

Your browser should start downloading Rancher OS ISO image.

Making Bootable USB of Rancher OS:

If you're running Windows, then you can use Rufus to create a bootable USB thumb drive of Rancher OS. Rufus can be downloaded from the official website of Rufus at https://rufus.ie/en_IE.html

It's out of the scope of this article to show you how to make a bootable USB of Rancher OS using Rufus. But, you should be able to do it on your own. If you need any help, then you can read the following article at LinuxHint.com where I demonstrated the process of making a bootable USB thumb drive using Rufus.

If you're using Linux, then you can use the dd command to make a bootable USB of Rancher OS as follows:

$ sudo dd if=~/Downloads/rancheros.iso of=/dev/sdX bs=1M

NOTE: Here, sdX is the USB thumb drive. You can find out what it is with the lsblk command.

Generating SSH Public and Private Keys:

Before you install Rancher OS on your computer or virtual machine, you have to generate SSH public and private key pairs on your computer from where you are planning to access Rancher OS. Because, by default, Rancher OS won't let you login using password.

On Linux, you can generate SSH public and private key pairs with the following command:

$ ssh-keygen

Now, press to continue.

Then, Press .

Press again.

SSH public and private key pairs should be generated.

If you're using Windows, then you can also use GitBash (can be downloaded for free from https://git-scm.com/downloads) to generate public and private SSH keys the same way.

You can use PuTTY to generate public and private key pairs on Windows. But it is out of the scope of this article to show you how.

Creating cloud-config.yml Configuration File:

Now, you have to create a cloud-config.yml configuration file. In this file, you have to add your public SSH key and the necessary details for configuring network on Rancher OS.

The format of the cloud-config.yml file is as follows. Make sure to change the configuration file depending on your specific setup.

#cloud-config
 
rancher:
network:
interfaces:
eth0:
address: 192.168.2.6/24
gateway: 192.168.2.1
dhcp: false
dns:
nameservers:
- 192.168.2.1
- 8.8.8.8
 
ssh_authorized_keys:
-

The output of the 'cat ~/.ssh/id_rsa.pub' command in my case is as follows:

So, the final cloud-config.yml file in my case looks like this.

Booting Rancher OS from the ISO image:

Now, attach the ISO image on your virtual machine or insert the USB thumb drive on your computer and select it from the BIOS of your computer. Once you see the following window, press .

As you can see, Rancher OS is booting.

After a while, you should be logged into Rancher OS as you can see in the screenshot below.

Installing Rancher OS on Hard Drive:

First, setup a password on Racher OS installer with the following command:

$ sudo passwd rancher

Now, type in a password and press . The password doesn't have to be secure as it's an installer.

Now, retype the password and press .

The password should be set.

Now, find out the IP address of the Rancher OS installer with the following command:

$ ip a

As you can see, the IP address in my case is 192.168.2.188. It should be different in your case. Make sure you replace it with yours from now on.

Now, SFTP into your Rancher OS installer with the following command:

$ sftp [email protected]

Now, type in yes and press .

Now, type in the password that you just set and press .

Now, you're ready to transfer cloud-config.yml file to your Rancher OS installer from your computer.

As you can see, the cloud-config.yml file is available in the HOME directory of my computer.

To send it on the Rancher OS installer, just type in the following command:

sftp> put cloud-config.yml

Now, exit out of the SFTP session with the following command:

sftp> exit

Now, from the Rancher OS installer console, run the following command to install Rancher OS on your hard drive:

$ sudo ros install -c cloud-config.yml -d /dev/sda

Now, press y and then press .

Rancher OS should be installed on your hard drive. Once it's done, press y and then press to reboot.

As you can see, Rancher OS booted from the hard drive and the network interface is configured correctly.

Now, you can SSH into Rancher OS as follows:

$ ssh [email protected]

As you can see, I am connected and it didn't prompt me for a password.

All the Docker commands are available on Rancher OS by default.

If you want to SSH into Rancher OS from any computer on your network, just setup a password with the following command as before:

$ sudo passwd rancher

Now, you should be able to SSH into your Rancher OS machine using user rancher and your password.

So, that's how you install Rancher OS on your computer. Thanks for reading this article.

How to change Mouse pointer and cursor size, color & scheme on Windows 10
The mouse pointer and cursor in Windows 10 are very important aspects of the operating system. This can be said for other operating systems as well, s...
Gry Darmowe i otwarte silniki gier do tworzenia gier na Linuksa
Darmowe i otwarte silniki gier do tworzenia gier na Linuksa
Ten artykuł zawiera listę darmowych i otwartych silników gier, których można używać do tworzenia gier 2D i 3D w systemie Linux. Istnieje wiele takich ...
Gry Samouczek Shadow of the Tomb Raider dla systemu Linux
Samouczek Shadow of the Tomb Raider dla systemu Linux
Shadow of the Tomb Raider to dwunasty dodatek do serii Tomb Raider - przygodowej serii gier akcji stworzonej przez Eidos Montreal. Gra została dość do...