Install centos7 virtual machine on win10

Install centos7 virtual machine on win10

1. Download VMware Workstation 64 version

https://www.vmware.com/products/workstation-pro/workstation-pro-evaluation.html

2. Download CentOS-7-x86_64-DVD-1810

https://www.centos.org/download/

3. Install the system on the virtual machine

4. Configure the network, virtual machine -> settings -> set network, set bridge mode

5. Virtual machine configuration IP

Before entering the system, we first confirm the host's IP address, gateway, DNS and other information.

Then, enter the system to edit the network card configuration file. The command is vi /etc/sysconfig/network-scripts/ifcfg-eth0

Add the following content:

After editing is complete, save and exit, then restart the virtual machine network card

service network restart
Ping baidu.com If it works, it means it is successful.

6. Download and install ifconfig

yum search ifconfig
yum install net-tools.x86_64
You may also be interested in:
  • Detailed explanation of how to install centos7 using win10's built-in virtual machine hyper-v
  • Detailed steps to install CentOS7 system on VMWare virtual machine
  • Windows uses VMware to create a Linux virtual machine and install the CentOS7.2 operating system
  • Install Centos7 using Hyper-v virtual machine

<<:  Windows platform configuration 5.7 version + MySQL database service

>>:  ReactJs Basics Tutorial - Essential Edition

Recommend

MySQL SQL statement analysis and query optimization detailed explanation

How to obtain SQL statements with performance iss...

How to change the terminal to a beautiful command line prompt in Ubuntu 18

I reinstalled VMware and Ubuntu, but the command ...

Take you to a thorough understanding of the prototype object in JavaScript

Table of contents 1. What is a prototype? 1.1 Fun...

Detailed steps to install Nginx on Linux

1. Nginx installation steps 1.1 Official website ...

Sample code for automatic web page refresh and automatic jump

Automatic web page refresh: Add the following code...

Detailed explanation of how to select all child elements using CSS

How to recursively select all child elements usin...

Practical basic Linux sed command example code

The Linux stream editor is a useful way to run sc...

Comprehensive understanding of html.css overflow

Comprehensive understanding of html.css overflow ...

Code comment writing standards during web page production

<br />I have summarized the annotation writi...

Ubuntu 20.04 Best Configuration Guide (Newbie Essential)

1. System Configuration 1. Turn off sudo password...

Web front-end development experience summary

XML files should be encoded in utf-8 as much as p...

Difference and implementation of JavaScript anti-shake and throttling

Table of contents 1. Anti-shake 2. Throttling 3. ...

30 minutes to give you a comprehensive understanding of React Hooks

Table of contents Overview 1. useState 1.1 Three ...