<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Tarun Kumar</title>
    <description>The latest articles on DEV Community by Tarun Kumar (@scary_crimson).</description>
    <link>https://dev.to/scary_crimson</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2874912%2F9958a1c6-b3a4-4817-8cb7-1bad018a7871.jpg</url>
      <title>DEV Community: Tarun Kumar</title>
      <link>https://dev.to/scary_crimson</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/scary_crimson"/>
    <language>en</language>
    <item>
      <title>🚀 The Professional Way to Install &amp; Run Jupyter in 2025</title>
      <dc:creator>Tarun Kumar</dc:creator>
      <pubDate>Sat, 16 Aug 2025 15:14:53 +0000</pubDate>
      <link>https://dev.to/scary_crimson/the-professional-way-to-install-run-jupyter-in-2025-4fp</link>
      <guid>https://dev.to/scary_crimson/the-professional-way-to-install-run-jupyter-in-2025-4fp</guid>
      <description>&lt;p&gt;If you’re starting your journey in &lt;strong&gt;Python, Data Science, or Machine Learning&lt;/strong&gt;, chances are you’ve already heard about &lt;strong&gt;Jupyter&lt;/strong&gt;.    &lt;/p&gt;

&lt;p&gt;But here’s the harsh reality most beginners face:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Most tutorials &lt;strong&gt;skip best practices&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Beginners often get lost between &lt;strong&gt;Jupyter Notebook vs JupyterLab&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Wrong installs → broken projects later
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;Example: You finally set up Jupyter, write some code, share it with a teammate… and boom 🚨 it breaks on their system. Why ?&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;This guide will walk you through the &lt;strong&gt;right way&lt;/strong&gt; to install, organize, and run Jupyter — so your projects stay clean, scalable, and production-ready.  &lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  🧐 What Exactly is Jupyter?
&lt;/h2&gt;

&lt;p&gt;Think of &lt;strong&gt;Jupyter Notebook&lt;/strong&gt; as a coding workspace — like VS Code, Sublime, or Vim — but designed for &lt;strong&gt;Python + Data Science&lt;/strong&gt;.  &lt;/p&gt;

&lt;p&gt;It lets you:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Write and run Python code in small chunks (cells)
&lt;/li&gt;
&lt;li&gt;Add markdown notes alongside your code
&lt;/li&gt;
&lt;li&gt;Visualize data instantly
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;👉 And now, there’s &lt;strong&gt;JupyterLab&lt;/strong&gt;: a polished upgrade with a nicer interface and extra features.&lt;br&gt;&lt;br&gt;
But don’t worry — &lt;strong&gt;90% of your work will look the same&lt;/strong&gt; in both.  &lt;/p&gt;


&lt;h2&gt;
  
  
  🔥 The Problem With Most Jupyter Users
&lt;/h2&gt;

&lt;p&gt;Here’s where things usually go wrong:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Installing Jupyter globally → breaks dependencies across projects
&lt;/li&gt;
&lt;li&gt;Confused: &lt;em&gt;Notebook or Lab?&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;Dumping all code into one messy notebook
&lt;/li&gt;
&lt;li&gt;Following random tutorials without learning &lt;strong&gt;best practices&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;👉 That’s why we’ll do it the &lt;strong&gt;pro way&lt;/strong&gt;: clean, isolated, and VS Code-friendly.  &lt;/p&gt;


&lt;h2&gt;
  
  
  🛠 Step 1: Create a Virtual Environment
&lt;/h2&gt;

&lt;p&gt;Never install Jupyter globally. Instead, create a &lt;strong&gt;virtual environment&lt;/strong&gt; inside your project folder.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# create a folder for your project&lt;/span&gt;
&lt;span class="nb"&gt;mkdir &lt;/span&gt;J_Books &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;cd &lt;/span&gt;J_Books  

&lt;span class="c"&gt;# create virtual environment&lt;/span&gt;
python3 &lt;span class="nt"&gt;-m&lt;/span&gt; venv venv
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Activate it:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Mac/Linux:&lt;/span&gt;
&lt;span class="nb"&gt;source &lt;/span&gt;venv/bin/activate

&lt;span class="c"&gt;# Windows:&lt;/span&gt;
venv&lt;span class="se"&gt;\S&lt;/span&gt;cripts&lt;span class="se"&gt;\a&lt;/span&gt;ctivate
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Once activated, your terminal will show &lt;strong&gt;(venv)&lt;/strong&gt;  — meaning everything you install stays inside this project only.&lt;/p&gt;

&lt;h2&gt;
  
  
  📦 Step 2: Install Jupyter
&lt;/h2&gt;

&lt;p&gt;With your virtual environment active:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;pip install jupyterlab
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;(If you prefer the classic interface, install just jupyter instead.)&lt;/p&gt;

&lt;p&gt;Launch it with:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;jupyter lab
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This will open Jupyter in your browser, where you can create notebooks, terminals, or text files.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;⚠️ &lt;strong&gt;Warning:&lt;/strong&gt; &lt;br&gt;
If &lt;code&gt;jupyter lab&lt;/code&gt; doesn’t open automatically in your browser, just go to 👉 &lt;a href="http://localhost:8888" rel="noopener noreferrer"&gt;http://localhost:8888&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  💻 Step 3: Use Jupyter in VS Code
&lt;/h2&gt;

&lt;p&gt;If you’re already comfortable with VS Code, you can run notebooks there too:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Open VS Code&lt;/li&gt;
&lt;li&gt;Drag your project folder (J_Books) into it&lt;/li&gt;
&lt;li&gt;Install the Jupyter extension from the VS Code marketplace&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Now you can create and run .ipynb files directly inside VS Code, with all the editor perks — themes, shortcuts, autocomplete, and version control.&lt;/p&gt;




&lt;p&gt;✅ Summary&lt;/p&gt;

&lt;p&gt;Let’s recap the pro Jupyter setup:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Always use a virtual environment (venv or Conda)&lt;/li&gt;
&lt;li&gt;Install Jupyter (jupyterlab for modern UI, jupyter for classic)&lt;/li&gt;
&lt;li&gt;Run it either in the browser or inside VS Code&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This way:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Your projects stay organized&lt;/li&gt;
&lt;li&gt;Dependencies don’t conflict&lt;/li&gt;
&lt;li&gt;Moving to production is much smoother&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;👋 Final Thoughts&lt;/p&gt;

&lt;p&gt;Jupyter is one of the most powerful tools in Data Science — but only if you set it up the right way.&lt;/p&gt;

&lt;p&gt;Start clean. Work in isolated environments. Use the editor that feels best for you.&lt;br&gt;
Your future self (and your projects) will thank you. 🚀&lt;/p&gt;

&lt;p&gt;💬 Are you using Jupyter Notebook or JupyterLab right now? Drop your workflow in the comments — let’s learn from each other!&lt;/p&gt;

</description>
      <category>tutorial</category>
      <category>jupyter</category>
      <category>python</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>Beginner's Guide: How to Set Up a Virtual Machine with Ubuntu in VirtualBox</title>
      <dc:creator>Tarun Kumar</dc:creator>
      <pubDate>Sun, 13 Jul 2025 06:48:08 +0000</pubDate>
      <link>https://dev.to/scary_crimson/beginners-guide-how-to-set-up-a-virtual-machine-with-ubuntu-in-virtualbox-3ij1</link>
      <guid>https://dev.to/scary_crimson/beginners-guide-how-to-set-up-a-virtual-machine-with-ubuntu-in-virtualbox-3ij1</guid>
      <description>&lt;p&gt;&lt;strong&gt;Virtualization&lt;/strong&gt; is the creation of virtual (rather than physical) versions of computing environments—like operating systems, storage, or servers.&lt;/p&gt;

&lt;p&gt;With virtualization tools like &lt;strong&gt;VirtualBox&lt;/strong&gt;, you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Run multiple OSes on one computer&lt;/li&gt;
&lt;li&gt;Test applications safely&lt;/li&gt;
&lt;li&gt;Learn Linux without dual-booting&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Step 0: Is Virtualization Enabled?
&lt;/h2&gt;

&lt;p&gt;Before setting up anything, make sure virtualization is enabled on your system:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Press &lt;code&gt;Ctrl + Shift + Esc&lt;/code&gt; to open &lt;strong&gt;Task Manager&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Go to the &lt;strong&gt;Performance&lt;/strong&gt; tab&lt;/li&gt;
&lt;li&gt;Click on &lt;strong&gt;CPU&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Look for &lt;strong&gt;Virtualization&lt;/strong&gt; in the bottom-right corner&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fozmtugmuv0ncug9p6850.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fozmtugmuv0ncug9p6850.png" alt="Alt text" width="800" height="477"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;👉 If it says &lt;strong&gt;Enabled&lt;/strong&gt;, you're good to go.&lt;br&gt;&lt;br&gt;
❌ If it says &lt;strong&gt;Disabled&lt;/strong&gt;, go into your BIOS/UEFI settings and enable virtualization.&lt;/p&gt;
&lt;h2&gt;
  
  
  Step 1: Download and Install VirtualBox
&lt;/h2&gt;

&lt;p&gt;Download VirtualBox from its official site: 🔗 &lt;a href="https://www.virtualbox.org/" rel="noopener noreferrer"&gt;Download VirtualBox&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fm5fo44nn7dxna0bydcdi.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fm5fo44nn7dxna0bydcdi.png" alt="Alt text" width="800" height="395"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Choose the version that matches your OS (Windows, macOS, Linux, etc.) and install it just like any regular software.&lt;/p&gt;
&lt;h2&gt;
  
  
  Step 2: Download Ubuntu ISO
&lt;/h2&gt;

&lt;p&gt;Download Ubuntu Desktop ISO (we're using 22.04.5 in this tutorial)&lt;/p&gt;

&lt;p&gt;🔗 &lt;a href="https://releases.ubuntu.com/jammy/" rel="noopener noreferrer"&gt;Ubuntu 22.04.5 Download&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0hgaq0gzkptsymu5jf51.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0hgaq0gzkptsymu5jf51.png" alt="Alt text" width="800" height="417"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;when you go to that page, you just need to scroll down little bit, and you will see the Ubuntu model:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;File&lt;/strong&gt;: &lt;code&gt;ubuntu-22.04.5-desktop-amd64.iso&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Release Date&lt;/strong&gt;: 2024-09-11&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Size&lt;/strong&gt;: 4.4 GB&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Once you locate the file, click on the download link to start the process. Depending on your internet connection speed, the download may take some time to complete, so be patient as it prepares your system for installation.&lt;/p&gt;

&lt;p&gt;Save it somewhere easy to find like your &lt;strong&gt;Downloads&lt;/strong&gt; folder.&lt;/p&gt;
&lt;h2&gt;
  
  
  Step 3: Create a New Virtual Machine
&lt;/h2&gt;

&lt;p&gt;Open &lt;strong&gt;VirtualBox&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffz1rte9hmvghfzq7kni7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffz1rte9hmvghfzq7kni7.png" alt="Alt text" width="800" height="492"&gt;&lt;/a&gt;   &lt;/p&gt;

&lt;p&gt;In my case, VirtualBox shows two virtual machines that I had previously created. You can ignore them.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8yun0d51ajwdo1dezqfu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8yun0d51ajwdo1dezqfu.png" alt="Alt text" width="800" height="530"&gt;&lt;/a&gt;   &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Click &lt;strong&gt;New&lt;/strong&gt; this will open the interface to create a virtual machine, as shown in the image above.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Set a name (e.g., &lt;code&gt;tarun_ubuntu_vm&lt;/code&gt;) that you want give your Virtual Machine.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Choose a folder (e.g., &lt;code&gt;D:\VMs&lt;/code&gt;) to store the virtual machine, I recommands you to create a folder in the D-drive and provide the path to the folder, it separates all data of the Virtual Machine from your C drive. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Select:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Type&lt;/strong&gt;: Linux&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Version&lt;/strong&gt;: Ubuntu (64-bit)&lt;/li&gt;
&lt;li&gt;Press Next&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Set &lt;strong&gt;Memory size&lt;/strong&gt;: At least 4096 MB (4 GB)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Create a &lt;strong&gt;Virtual Hard Disk&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Type: VDI (VirtualBox Disk Image)&lt;/li&gt;
&lt;li&gt;Storage: Dynamically allocated&lt;/li&gt;
&lt;li&gt;Size: 20 GB&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Click &lt;strong&gt;Create&lt;/strong&gt; when done.&lt;/p&gt;
&lt;h2&gt;
  
  
  Step 4: Load Ubuntu ISO and Begin Installation
&lt;/h2&gt;

&lt;p&gt;Now connect the Ubuntu ISO to your VM:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Select your VM and click &lt;strong&gt;Settings &amp;gt; Storage&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Under "Controller: IDE", click &lt;strong&gt;Empty&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Click the CD icon &amp;gt; &lt;strong&gt;Choose a disk file&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzlm08wy50ltf6wtaopk1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzlm08wy50ltf6wtaopk1.png" alt="Alt text" width="796" height="459"&gt;&lt;/a&gt;   &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Select the Ubuntu ISO you downloaded earlier and click &lt;strong&gt;OK&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Then click &lt;strong&gt;Start&lt;/strong&gt; to launch the VM!&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Follow the on-screen installation steps within the VM to complete the Ubuntu setup.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Once the installation is finished and Ubuntu boots up successfully, you should see a desktop environment similar to the one below:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4ebjvaxib3pmnwfhufdk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4ebjvaxib3pmnwfhufdk.png" alt="Alt text" width="565" height="309"&gt;&lt;/a&gt;   &lt;/p&gt;

&lt;p&gt;At this point, your VirtualBox and Ubuntu environment are fully set up and ready for use.&lt;/p&gt;
&lt;h2&gt;
  
  
  Step 5: Install Essential Packages (Optional)
&lt;/h2&gt;

&lt;p&gt;Once Ubuntu is installed and booted, open the terminal and run:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;sudo &lt;/span&gt;apt update &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;sudo &lt;/span&gt;apt upgrade &lt;span class="nt"&gt;-y&lt;/span&gt;
&lt;span class="nb"&gt;sudo &lt;/span&gt;apt &lt;span class="nb"&gt;install &lt;/span&gt;build-essential curl git &lt;span class="nt"&gt;-y&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Let’s Connect
&lt;/h2&gt;

&lt;p&gt;If you found this guide helpful:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Leave a ❤️ to support my first Dev.to post!&lt;/li&gt;
&lt;li&gt;Drop a comment if you ran into any issues&lt;/li&gt;
&lt;li&gt;Follow me for more beginner-friendly Linux and IoT tutorials coming soon&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Thanks for reading, and happy virtualizing! 🐧🚀&lt;/p&gt;

</description>
      <category>virtualmachine</category>
      <category>ubuntu</category>
      <category>virtualbox</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
