G018-LIN-ASK-SOL-01 VMWare 如何制作 Linux 模板进行克隆

Posted CloudCS

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了G018-LIN-ASK-SOL-01 VMWare 如何制作 Linux 模板进行克隆相关的知识,希望对你有一定的参考价值。

1 您需要了解

  • 示例 Linux 版本:RHEL 7.1 ,其他 7 系版本方法一致
  • 您可参考 G017-OS-LIN-RHEL-02 红帽 7.1 安装 一文进行系统安装
  • 操作过程中请勿重启虚拟机;操作完毕关闭虚拟机,之后请勿开启

2 关闭 DNS 反向解析

[root@cloudcs ~]# vi /etc/ssh/sshd_config
[root@cloudcs ~]# cat /etc/ssh/sshd_config
...
UseDNS no
...
[root@cloudcs ~]# systemctl restart sshd

3 编辑网卡信息

[root@cloudcs ~]# cd /etc/sysconfig/network-scripts/
[root@cloudcs network-scripts]# cp ifcfg-eno16777736 ifcfg-eno16777736.bak

[root@cloudcs network-scripts]# vi ifcfg-eno16777736
[root@cloudcs network-scripts]# cat ifcfg-eno16777736

TYPE=Ethernet
BOOTPROTO=dhcp
NAME=eno16777736
DEVICE=eno16777736
ONBOOT=yes

4 清除密钥信息

[root@cloudcs ~]# cd /etc/ssh/
[root@cloudcs ssh]# rm -rf ssh_host_*

5 清除 Machine ID

[root@cloudcs ~]# cat /etc/machine-id 
c8e906e766cf49b3a0008a14eab54a87
[root@cloudcs ~]# cat /dev/null > /etc/machine-id 
[root@cloudcs ~]# cat /etc/machine-id 

6 关闭虚拟机

[root@cloudcs ~]# init 0

  • END

以上是关于G018-LIN-ASK-SOL-01 VMWare 如何制作 Linux 模板进行克隆的主要内容,如果未能解决你的问题,请参考以下文章

安装VMtool

虚拟化的种类

VMWare虚拟机端口转发

Linux学习笔记

安装VMware Tools

ubuntu虚拟机的日常使用