<?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: Sohaib Ilyas</title>
    <description>The latest articles on DEV Community by Sohaib Ilyas (@sohaibilyas).</description>
    <link>https://dev.to/sohaibilyas</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%2F893492%2F21fe23b3-0be6-420b-8465-e7dc8e4d47d5.jpeg</url>
      <title>DEV Community: Sohaib Ilyas</title>
      <link>https://dev.to/sohaibilyas</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sohaibilyas"/>
    <language>en</language>
    <item>
      <title>Unlocking Linux on Windows: A Guide to Installing Ubuntu Using WSL 2 on Windows 11</title>
      <dc:creator>Sohaib Ilyas</dc:creator>
      <pubDate>Thu, 21 Nov 2024 08:48:27 +0000</pubDate>
      <link>https://dev.to/sohaibilyas/unlocking-linux-on-windows-a-guide-to-installing-ubuntu-using-wsl-2-on-windows-11-415d</link>
      <guid>https://dev.to/sohaibilyas/unlocking-linux-on-windows-a-guide-to-installing-ubuntu-using-wsl-2-on-windows-11-415d</guid>
      <description>&lt;p&gt;Have you ever wondered how WSL 2 (Windows Subsystem for Linux) lets developers use a Linux-like environment right on Windows? It's quite intriguing! It provides a simple way to set up Laravel, PHP, Python, Node.js, Vue.js, React.js, and many more for development. Let's explore how to get started quickly.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 1: Enable Virtualization in BIOS
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Restart your computer and enter the BIOS/UEFI settings (usually by pressing &lt;code&gt;F2&lt;/code&gt;, &lt;code&gt;Delete&lt;/code&gt;, or &lt;code&gt;Esc&lt;/code&gt; during boot).&lt;/li&gt;
&lt;li&gt;Look for an option like Intel Virtualization Technology, AMD-V, or SVM Mode under the processor or advanced settings.&lt;/li&gt;
&lt;li&gt;Enable the option and save changes.&lt;/li&gt;
&lt;li&gt;Restart your system.&lt;/li&gt;
&lt;li&gt;Check if it enabled using Windows Task Manager &lt;code&gt;Ctrl + Shift + Esc&lt;/code&gt;
&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%2Fvf56bsbntli2zr6suubs.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%2Fvf56bsbntli2zr6suubs.png" alt="Check CPU virtualization in Windows Task Manager" width="800" height="606"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 2: Install WSL 2 and Ubuntu on Windows 11
&lt;/h2&gt;

&lt;p&gt;First, we need to check if Windows Subsystem for Linux is enabled as a feature on Windows or not, so press Start key on your keyboard to bring start menu on front and type windows features and open the program.&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%2Fot3yaccucbnbczibrreg.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%2Fot3yaccucbnbczibrreg.png" alt="Install WSL 2 and Ubuntu on Windows 11" width="800" height="424"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now enable Windows Subsystem for Linux and Virtual Machine Platform and restart your machine.&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%2Fp1jfryxlh3dmtnbt9ym0.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%2Fp1jfryxlh3dmtnbt9ym0.png" alt="Enable Windows Subsystem for Linux and Virtual Machine Platform " width="547" height="482"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Open Windows Powershell as Administrator and run the following command to install WSL 2 and Ubuntu Linux OS on Windows.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;wsl &lt;span class="nt"&gt;--install&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If you're still having trouble installing WSL 2 on your Windows computer, feel free to comment below. I'm here to help!&lt;/p&gt;

</description>
      <category>linux</category>
      <category>ubuntu</category>
      <category>windows</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
