DEV Community

Cover image for So, you have installed Windows Subsystem for Linux? Let's learn how to move files inside of Linux Root System
Ajeet Yadav
Ajeet Yadav

Posted on • Updated on

So, you have installed Windows Subsystem for Linux? Let's learn how to move files inside of Linux Root System

Originally published on my blogging site ajeet.dev


In this blog, we will learn how to create or move files and folders to Linux root system from Windows. Familiarity with Windows Subsystem for Linux (WLS) is required.

This is part 4 of our 5 part series. You can find the full series here:

  1. Linux Vs Windows - Why Linux Is Better For Programming & Web Dev
  2. Switching From Windows to Linux? Read This First
  3. Windows Subsystem For Linux - Run Linux on Windows (It's FAST)
  4. A Beginner's Guide To Use Windows Subsystem For Linux šŸ‘‡
  5. How to Use Visual Studio Code Editor and Github with WSL (Blog coming tomorrow)

This blog post is written purely for beginners who wants to get into programming or web development.


InĀ my previous blog post whereĀ I introduced an overview of Windows Subsystem for Linux (WSL), we learnt the newer version of WSL architecture (WSL 2)is faster than the previous (WSL 1).Ā We also learnt there are a couple of key changes in the new architecture. The key changes are:

  1. Your files need to be moved inĀ the Linux file system instead of Windows system.
  2. Ā For now, an IP address is needed to access network applications.

Let's coverĀ this one by one.

šŸ“ Move all filesĀ insideĀ of Linux Root System

We will move our files into Linux system. Before that, let's find the home directory in Linux.

  • Launch Ubuntu 18.04 command line. Do read my previous blogĀ to better understand Ubuntu command line in WSL

  • Run this command:Ā explorer.exe .

  • Don't skip the space after exe and dot at the end of the command.

  • A folder will be automatically open up once the command executes. The network path to that folder will be like this:Ā \\wsl$\Ubuntu-18.04\home\ajeet

  • You can see all the files, such as .bash files and .wsl config file, created inside this folder automatically.

    Files created by WSL

  • These are the system files. To understand, consider these files and folder
    similar to C-Drive files/folder in Windows. You can create a folder
    here. Let's create a new folder "ajeet".

  • This folder "ajeet" can also be seen using Linux command. Run ls in the Ubuntu terminal.

    see files and folder in Ubuntu using command

  • You can now move files and folders into this networked folder, and work independently with Linux distro.

  • We can also install Python in this folder and learn codingĀ Here is how to install Python.

Ā šŸ–§ Access network applications

For now in WSL architecture, we need to use an IP to access network apps since Linux is inside a virtual machine. This IP can be see if you run a local server. In the newly created networked folder, you can install nvm, node.js and npm, and run a local server for an app. Learn how to install nvm, node.js, and npm. Once the app is created, you can use an IP like thisĀ 192.168.28.2:3000Ā to access your app.Ā 

This section is beyond the scope of this blog post as it will need an advance knowledge of command line tools and concepts. For beginners,Ā the previous section is enough to start learning web development and programming.

šŸ’” What's Next

In my next blog,Ā I will write a post onĀ How to Install and Use Git and Visual Studio Code Editor with WSL on any Linux Project.

Happy Coding ! šŸ¤“


Don't forget to subscribe to my weekly Newsletter šŸ“§


CreditsĀ šŸ™ :Ā 
Official Microsoft Docs on WSL
Windows and Linux logos taken fromĀ SimpleIcons.Ā 
Emojis taken fromĀ Emojipedia.Ā 
Blog cover by BlogCover

Top comments (1)

Collapse
 
xcixor profile image
Peter Ndungu

how to copy from windows?