安装本地虚拟机Vmware14 + Centos7

Vmware work station14的安装配置(虚拟网络环境)

  • 安装VMware,第一次安装好不要卸载,重装:先卸载,卸载干净(用everything搜索所有关于VMware文件夹删除,清理垃圾注册表,如果不这样做,重装后有可能连不上外网!!!)

虚拟网卡

  • 控制面板\网络和 Internet\网络连接
  • VMware Virtual Ethernet Adapter for VMnet1
  • VMware Virtual Ethernet Adapter for VMnet8

连接网络异常

天天の記事簿,在VMware中使CentOS利用桥接上网
Linux不能上网ping:unknown host问题怎么解决?

device eth0 does not seem to present

【转】CentOS Linux解决Device eth0 does not seem to be present(linux)
Centos 配置eth0 提示Device does not seem to be present
怎么用xshell连接本地虚拟机

查看系统版本

[root@tencent-cloud ~]# cat /etc/redhat-release
CentOS Linux release 7.6.1810 (Core)

目录结构

bin目录 :用来放常用的可执行文件,比如ls
sbin目录:用来存放系统的可执行文件。
dev目录:设备文件目录。
etc目录:配置文件目录。

centos6下修改hostname

[root@centos6 ~]$ hostname                                              # 查看当前的hostnmae
centos6.magedu.com
[root@centos6 ~]$ vim /etc/sysconfig/network                            # 编辑network文件修改hostname行(重启生效)
[root@centos6 ~]$ cat /etc/sysconfig/network                            # 检查修改
NETWORKING=yes
HOSTNAME=centos66.magedu.com
[root@centos6 ~]$ hostname centos66.magedu.com                          # 设置当前的hostname(立即生效)
[root@centos6 ~]$ vim /etc/hosts                                        # 编辑hosts文件,给127.0.0.1添加hostname
[root@centos6 ~]$ cat /etc/hosts                                        # 检查
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 centos66.magedu.com
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6

[root@keyog-baidu-cloud mod]# vim /etc/hostname

centos7修改hostname

[root@centos7 ~]$ hostnamectl set-hostname centos77.magedu.com             # 使用这个命令会立即生效且重启也生效
[root@centos7 ~]$ hostname                                                 # 查看下
centos77.magedu.com
[root@centos7 ~]$ vim /etc/hosts                                           # 编辑下hosts文件, 给127.0.0.1添加hostname
[root@centos7 ~]$ cat /etc/hosts                                           # 检查
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4 centos77.magedu.com
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6

配置网络

//配置网卡
cd /etc/sysconfig/network-scripts
vim ifcfg-eno16777736

BOOTPROTO=static
IPADDR="192.168.1.111"
GATEWAY="192.168.1.2"
DNS1="8.8.8.8"
ONBOOT="yes"

//查看网卡
ip addr

centos7安装过程

安装本地虚拟机Vmware14 + Centos7_第1张图片
安装本地虚拟机Vmware14 + Centos7_第2张图片
安装本地虚拟机Vmware14 + Centos7_第3张图片
安装本地虚拟机Vmware14 + Centos7_第4张图片
安装本地虚拟机Vmware14 + Centos7_第5张图片
安装本地虚拟机Vmware14 + Centos7_第6张图片
安装本地虚拟机Vmware14 + Centos7_第7张图片
安装本地虚拟机Vmware14 + Centos7_第8张图片
安装本地虚拟机Vmware14 + Centos7_第9张图片
安装本地虚拟机Vmware14 + Centos7_第10张图片
安装本地虚拟机Vmware14 + Centos7_第11张图片
安装本地虚拟机Vmware14 + Centos7_第12张图片
安装本地虚拟机Vmware14 + Centos7_第13张图片
安装本地虚拟机Vmware14 + Centos7_第14张图片
安装本地虚拟机Vmware14 + Centos7_第15张图片
安装本地虚拟机Vmware14 + Centos7_第16张图片

设置VMware Virtual Ethernet Adapter for VMnet8,NAT模式连接外网!!!

安装本地虚拟机Vmware14 + Centos7_第17张图片
安装本地虚拟机Vmware14 + Centos7_第18张图片

你可能感兴趣的:(Linux)