Skip to content

GitLab

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in / Register
D docker-containers
  • Project overview
    • Project overview
    • Details
    • Activity
    • Releases
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 21
    • Issues 21
    • List
    • Boards
    • Labels
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Operations
    • Operations
    • Incidents
    • Environments
  • Packages & Registries
    • Packages & Registries
    • Package Registry
    • Container Registry
  • Analytics
    • Analytics
    • CI/CD
    • Repository
    • Value Stream
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Members
    • Members
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Public
  • docker-containers
  • Wiki
  • install tools windows

install tools windows · Changes

Page history
feat: add instructions for WSL and Ubuntu authored Oct 31, 2020 by Yogesh Hegde's avatar Yogesh Hegde
Hide whitespace changes
Inline Side-by-side
Showing with 9 additions and 19 deletions
+9 -19
  • install-tools-windows.md install-tools-windows.md +9 -19
  • No files found.
install-tools-windows.md 0 → 100644
View page @ a939a481
# Installing tools for Windows
This guide will help you install these tools for windows
1. WSL 2
2. VScode
3. Docker
These tools will help you do practical for the respective module.
## Enable WSL feature in Windows
**Requirements**:
1. Windows 10 version 1903 or higher, if Windows 10 version 1903 then with Build 18362 or higher.
---
1. Press `Windows key` and Search for Powershell.
![powershell](upload/3.png)
2. Click on "Run Powershell as Administrator". A blue terminal window will open up.
3. Enable WSL with powershell, by running command
```powershell
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
```
4. Enable Virtual machine settings for WSL
```powershell
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
```
![enable-vm-wsl](upload/6.png)
5. Update to WSL version 2.
- Download the WSL kernel update - https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi
- Install the update, by double clicking the `wsl_update_x64.msi` file.
- Set default as WSL 2, by running the command in powershell.
```powershell
wsl --set-default-version 2
```
6. After this you can exit the powershell terminal window.
## Install Ubuntu 16.04 on WSL
1. Open the link in browser - https://www.microsoft.com/store/apps/9pjn388hp8c9
2. Click on Get Ubuntu 16.04.
![download-ubuntu-wsl](upload/7.png)
3. Once the download is done then click on Launch.
4. This will open up a black terminal, the terminal will ask you for your username and password.
5. Enter your username and desired password.
6. And at the end the terminal will display your username in geeen.
![wsl-ubuntu](upload/8.png)
7. Type `exit` on the terminal to close the terminal.
## Installing Vscode
1. Download VScode from link - https://code.visualstudio.com/download
2. Install VScode by double clicking on the `VSCodeUserSetup-x64-1.50.1` file.
3. Open VScode.
4. Select Extensions and Search for Remote Development.
![remote-develop](upload/5.png)
## Installing Docker
1. Download Docker for Desktop, by visiting the link - https://hub.docker.com/editions/community/docker-ce-desktop-windows/ and clicking "Get Docker".
2. Install Docker by double clicking on the `Docker Desktop Installer` file.
3. Installer will start installing the docker.
![installing-docker](upload/12.png)
4. After the install completes, Click on close and Log out.
![installing-docker](upload/13.png)
5. This will log you out of your Windows and you will have to login again.
6. That is it done you have successfully installed Docker.
Clone repository
  • Installing tools
  • Readme doc format
  • code refactoring
  • code style container
  • day0
  • devops practical
  • docusaurus
  • Home
  • install on mac
  • install tools ubuntu 16.04
  • install tools windows