Install Linux using VMware virtual machine (CentOS7 image)

Install Linux using VMware virtual machine (CentOS7 image)

1. VMware download and install

Link: https://www.jb51.net/softs/579705.html

2. Download the CentOS image

Official website address: https://www.centos.org/download/

I use Win10 system, so I can choose 7-2009, which is 4G in size (8-2111 has 10G)

3. Open VMware

Most of the subsequent operations are default operations, as follows (multiple picture warning!):

After the creation is complete, start the virtual machine to enter the installation process, select Chinese as the language, and most of the other default installations will be fine.

Root密碼needs to be set and記一下, as it will be used when entering the system.

After the installation is complete, restart and enter the account password to log in. At this time, the system is not connected to the Internet, and a file needs to be modified:

  • 1. Enter the command in Linux system: vi /etc/sysconfig/network-scripts/ifcfg-ens33
  • 2. Modify ONBOOT=no in the file and no改為yes
  • 3. Restart the service: ervice network restart

Test whether the network is connected: ping www.baidu.com

Exit ping: Press ctrl+c on the keyboard at the same time

You may encounter the error "Unable to connect to MKS: Too many socket connection attempts; giving up."

Press win+R to run services.msc , then enable all 5 services and restart the virtual machine.

The above is what I introduced to you about using VMware virtual machine to install Linux (CentOS7 image), I hope it will be helpful to you. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • Detailed steps to install CentOS7 system on VMWare virtual machine
  • CentOS7 network configuration under VMware virtual machine (host wireless Internet access)
  • Windows uses VMware to create a Linux virtual machine and install the CentOS7.2 operating system
  • Tutorial diagram of installing centos7.3 on vmware virtual machine
  • VMWare virtual machine Centos7 installation of Oracle database tutorial diagram
  • CentOS7 installation graphic tutorial in Vmware virtual machine
  • 2022 latest version VMware virtual machine installation CentOS7 installation graphic tutorial

<<:  Implementation of adding a mask layer effect when the CSS mouse hovers over the image

>>:  Introduction to the three essential logs for MySQL database interviews

Recommend

Vue implements websocket customer service chat function

This article mainly introduces how to implement a...

How to solve the synchronization delay caused by MySQL DDL

Table of contents Preface Solution Tool Introduct...

How to use HTML+CSS to create TG-vision homepage

This time we use HTML+CSS layout to make a prelim...

Share 20 excellent web form design cases

Sophie Hardach Clyde Quay Wharf 37 East Soapbox Rx...

Detailed installation and configuration tutorial of PostgreSQL 11 under CentOS7

1. Official website address The official website ...

Three methods of inheritance in JavaScript

inherit 1. What is inheritance Inheritance: First...

Summary of some efficient magic operators in JS

JavaScript now releases a new version every year,...

How to implement the observer pattern in JavaScript

Table of contents Overview Application scenarios ...

CSS3 gradient background compatibility issues

When we make a gradient background color, we will...

vue-router hook function implements routing guard

Table of contents Overview Global hook function R...

MySQL example of getting today and yesterday's 0:00 timestamp

As shown below: Yesterday: UNIX_TIMESTAMP(CAST(SY...

Detailed explanation of Docker Compose deployment and basic usage

1. Docker Compose Overview Compose is a tool for ...

CSS selects the first child element under the parent element (:first-child)

Preface I recently used :first-child in a project...