惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The GitHub Blog
The GitHub Blog
Martin Fowler
Martin Fowler
Vercel News
Vercel News
U
Unit 42
Engineering at Meta
Engineering at Meta
aimingoo的专栏
aimingoo的专栏
MyScale Blog
MyScale Blog
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
爱范儿
爱范儿
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog RSS Feed
N
Netflix TechBlog - Medium
GbyAI
GbyAI
F
Fortinet All Blogs
MongoDB | Blog
MongoDB | Blog
大猫的无限游戏
大猫的无限游戏
C
Check Point Blog
M
MIT News - Artificial intelligence
D
Docker
IT之家
IT之家
Stack Overflow Blog
Stack Overflow Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Steps to Deploying a Virtual Machine in Linux
Noble · 2026-05-21 · via DEV Community

A virtual machine is a mini computer inside another computer in the cloud. Now we are deploying this virtual machine in an operating system called Linux. Linux is a free, open sourced operating system family used on computers, servers, smartphones and even supercomputers. Let me give you a hint, the very popular Android is built on the Linux Kernel.
Okay that's enough intro for now, let's get started.

Step 1: Login in to the[(https://portal.azure.com/#home)]

Step 2: Look up for virtual machine on the search bar just atop and start creating your Linux virtual machine.
linux virtual machine

select the +create icon which enables you to create a new VM
selecting +create

Step 3:I am assuming this is your first time creating a Linux virtual machine, it is best to create a new "resource group" as seen in the image below , one might wonder what a resource group is?. A resource group is the container that will be holding the virtual machine, so in layman terms the resource group is just like the "pot" and the Linux virtual machine is what we are cooking inside this pot.Resource group creation
so you create a new resource group, in my case I create one called "mylinuxvirtualmachinegroup" and I selected it, so create yours and select it.
Step 4: Configuring instance details
a: create a name for your VM that suits you
b: select a location that befits you
c: I chose the first option for the zone options, you can use the drop down and choose 'no infrastructure redundancy" required if you are on a free trial account. _
_ d: for security type; I used the Trusted launch virtual machine as this is basic security for Linux VM.

e: for Image; Ubuntu is encouraged as that is the operating system Linux works on so everything rhymes.
Configuring instance details

Step 5: Login method and Network access configuration


go to Resource to see, learn and understand everything about the Linux VM you just created

Step 6:Open the public IP address as shown

Resource
then click connect and click check access

Step 7: Now open Powershell on Windows or Terminal on Mac to connect to Linux with your IP address you just copied in image@9 above

click enter after pasting your IP address
after that a question pops up, are you sure you want to continue connecting? type in YES,
then the next prompt is to type in the password you used for your azure admin access, Linux wont show the normal asterisk ***** for password, don't be restless its working in the background, this is a security measure to protect you, if your password is type correctly, hit enter and you would see the your IP address and port 22

type in sudo su to run command as root. Becoming a root user makes our commands run smoothly.
next step is to run apt update, (Advanced Package Tool) is a command-line utility for managing software on Debian-based Linux distributions, such as Ubuntu and Linux Mint, Kali Mint, etc. It handles installation, removal, upgrading, and dependency management of .deb packages by automating retrieval from online repositories. It also tells you the status of your Linux Virtual Machine and if everything is running very well.


next install nginx which is a high performance web server software used to host websites, serve web applications, act as reverse proxy, load balance traffic, and improve overall performance and security, nginx is one of the most widely used servers in the world.


when prompted, confirm with a Y
Although optional, you can also install Vim which is a text editor used in Linux and Unix systems which makes your layout more colorful, developers and system administrators use it to edit configuration, write code, manage servers and also modify scripts directly from terminal.
when prompted, confirm with a Y


Finally copy your IP address in image number 9 above.
load it on your browser and paste.

Voila, if you see the image above, you did everything correctly.

This is a beautiful introduction to Linux, the operating system that hosts most tech products you are using everyday like open AI, LinkedIN, YouTube etcetera.

Mr LINUX says welcome!