Win10 installation Linux system tutorial diagram

Win10 installation Linux system tutorial diagram

To install a virtual machine on a Windows system, it is common to use VMware Workstation software to install it. Before I came into contact with Docker, I had always managed it through this software. Docker runs in a Linux environment, so how can we make Docker run in a Windows environment? Windows provides a Hyper-V manager and automatically installs the DockerDesktopVM virtual machine. When running Docker, the virtual machine under Hyper-V will be automatically started, as shown below:

How to install Hyper-V in Win10?

Yes, it's that simple. Since Hyper-V is a virtual machine manager, you can of course install the virtual machine system you want, as long as your computer is powerful enough. Here I will demonstrate the installation of centos7.

1. Open Hyper-V Manager and click Add on the right.

2. The following interface appears, click Next

3. Specify the virtual machine name and virtual machine storage location, and click Next.

4. There are two generations of Hyper-V. The second generation virtual machines start faster, simulate less hardware resources and have higher performance. However, not all machines support the second generation, so it is recommended to select the first generation by default. Click Next.

5. Allocate running memory for the virtual machine, check Dynamically allocate memory, the virtual machine will use system memory, click Next.

6. Configure the network for the virtual machine. You can skip this step and go directly to the next step.

7. Allocate disk space for the virtual machine. You can use the default or customize the name and storage location. Click Next.

8. Here we use mirror installation. First search for the centos image file, download it to your local computer, click Browse, and select the downloaded image file. Click Next or just click Finish.

9. Installed virtual machine information.

10. Finally, we configure the network of the virtual machine.

From the figure we can see that there are three types of virtual machines, external, internal and dedicated, so what are the statuses of these respectively?

Internal: That is (NAT mode), Virtual Switch cannot connect to a physical network adapter and can only be used for VMs created on a local physical machine and for communication between VMs and local physical machines, see https://www.jb51.net/article/120971.htm

External: Bind the Virtual Switch to the physical network adapter so that the VM can communicate with the external network by accessing the physical network.

Dedicated: Virtual Switch can only be used for VMs created on the local physical machine, enabling VMs to communicate with each other.

Summarize

The above is the tutorial illustration of how to install Linux system on Win10 introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • How to install Python virtual environment on win10 and linux respectively
  • Win10 installation Linux subsystem graphic tutorial
  • Detailed explanation of Win10 Bash/WSL debugging .NET Core applications in Linux environment

<<:  Detailed explanation of Angular parent-child component communication

>>:  Detailed explanation of the solution to the error in creating a user and granting permissions in mysql8.0

Recommend

react-diagram serialization Json interpretation case analysis

The goal of this document is to explain the Json ...

How to manually scroll logs in Linux system

Log rotation is a very common function on Linux s...

(MariaDB) Comprehensive explanation of MySQL data types and storage mechanisms

1.1 Data Type Overview The data type is a field c...

JavaScript implements changing the color of a web page through a slider

Hello everyone, today when I was looking at the H...

Native js to achieve accordion effect

In actual web page development, accordions also a...

Guide to using env in vue cli

Table of contents Preface Introduction-Official E...

MySQL backup and recovery design ideas

background First, let me explain the background. ...

Examples of correct judgment methods for data types in JS

Table of contents Preface Can typeof correctly de...

MySQL backup table operation based on Java

The core is mysqldump and Runtime The operation i...

HTML Tutorial: Collection of commonly used HTML tags (5)

Related articles: Beginners learn some HTML tags ...

Vue parent-child component mutual value transfer and call

Table of contents 1. Parent passes value to child...

Implementing a simple Gobang game with native JavaScript

This article shares the specific code for impleme...