🧊
Resources
Socials
  • 📙Welcome!
  • ⚙️ROS
    • Beginner's Guide to ROS
      • Prerequisites
        • 💻Ubuntu Setup - Windows Subsystem for Linux (WSL)
        • 💻Ubuntu Setup - Dual Booting (For Windows)
        • 💻Ubuntu Setup - VM on MacOS M1
      • ROS Installation
        • Installation Guide [ROS2 Humble]
      • ROS Concepts
      • ROS Tools/Utils
        • Working with ROS 1/2 Bags
      • Robotics Fundamentals
        • Domains of Robotics Software
          • Perception
          • Localisation
          • Navigation
          • Controls
          • Simulation
        • Fundamental Concepts
          • Rotations (and Quaternion)
          • Coordinate Frames
          • Rigid Body Transformations (3D)
          • Basic Control Theory
          • Image Processing (with OpenCV)
    • Perception
      • Camera
        • [WSL2] Enabling USB Camera Access
        • Image Common
        • Camera Driver
        • Camera Calibration
        • Stereo Vision Concept
        • Image Pipeline
          • Monocular Image Processing
          • Disparity and Depth Image for Stereo Vision
      • LiDAR
        • Working with PointCloud2 Data
Powered by GitBook
On this page
  1. ROS
  2. Beginner's Guide to ROS
  3. Prerequisites

Ubuntu Setup - Windows Subsystem for Linux (WSL)

In this guide, we are going to setup WSL2 for Ubuntu 22.04 on Windows 11.

PreviousPrerequisitesNextUbuntu Setup - Dual Booting (For Windows)

Last updated 10 months ago

  1. Search on Windows: "Turn Windows Features on or off" and Enable "Windows Subsystem for Linux"

  1. Restart your Computer

  2. Open Powershell and start installing WSL and Ubuntu Distribution of Choice

wsl --install

To use WSL2 instead of WSL1,

wsl --set-default-version 2

Since I am using Ubuntu 22.04, for WSL, run the following to set up Ubuntu 22.04 in WSL2,

wsl --install Ubuntu-22.04

To set Ubuntu 22.04 as the default distribution for WSL2,

wsl --set-default Ubuntu-22.04

For more info, look here

⚙️
💻
Install WSLdocsmsft
Logo