A Linux machine is like a magic book on your computer that can do lots of cool things. Now, a Linux machine is like having a special magic book that's really good at following instructions and can change its story whenever you want.
A Linux machine refers to a computer that is running the Linux operating system. Linux is an open-source operating system, meaning it's free to use and its source code is available for anyone to view, modify, and distribute. It's known for its stability, security, and flexibility, which is why it's widely used in servers, desktops, and even mobile devices.
Key Points:
- Open Source: Unlike Windows or macOS, Linux is open-source, so anyone can contribute to its development or customize it for their needs.
- Distributions: There are many versions of Linux, called distributions (or distros), such as Ubuntu, Fedora, and Debian. Each distro has its own set of features and tools.
- Command Line: While Linux has graphical user interfaces (GUIs), a lot of powerful features are accessed through the command line.
- Security and Stability: Linux is less prone to viruses and malware, making it a popular choice for servers and security-sensitive applications.
- Flexibility: Linux can run on a wide range of hardware, from old computers to modern servers and smartphones.
For this tut, we shall walk through the installation of Ubuntu on Microsoft Azure Platform.
Navigate to portal.azure.com and select Virtual Machine
Create an Azure virtual machine
Provide details of your virtual machine (Resource group, Virtual machine name, Image)
Here we shall be using SSH for Administrator account
We have provided Username, and Key pair name
Set Inbound port (22)
Now to the Monitoring tab - Disable boot diagnostic
Next, the tags are set for billing purposes
Almost there, go to Review + create
Next, download private key and create the resource
Allow for deployment to be completed
Select your public IP
Modify Idle time and give DNS name label (optional)
Open windows cmd
SSH into the machine
ssh -i /"path name"/KeyPairName.pem azureuser@20.15.105.5
For example;
_ssh -i /"C:\Users\King Fisher\Downloads"/OlaLinuxUbuntu22.pem azureuser@20.15.105.5_
Top comments (0)