VMware Workstation 11安装之后的一些配置

本文详细介绍虚拟机的配置与管理方法,包括虚拟机的创建、虚拟磁盘映射、虚拟网络编辑等内容,并分享了虚拟机快照及克隆等实用技巧。特别介绍了不同虚拟网络模式的特点与应用场景。

一、文件

1、虚拟化物理机

 

 

2、映射虚拟磁盘,把虚拟机上的磁盘映射到物理机上

(自己以后再尝试,现在要走一下这个流程)

 

 

3、虚拟网络编辑器

1虚拟网络编辑器

默认的是3个,但自己可以添加更多的,可以19个

VMnet0是桥接模式,VMnet1是仅主机模式,VMnet8是NAT模式。

 

当然,也可以移除网络。

 

 

下面,这是经验!!!

尽量将相应的子网IP进行相应的配置。

VMnet1的子网地址是 192.168.160.0  ,则 将相应的子网IP设置为 192.168.10.0

 

VMnet8的子网地址是 192.168.153.0  ,则 将相应的子网IP设置为 192.168.80.0

  对后面的hadoop集群和spark集群搭建,尽量使用NAT模式。

  桥接模式  >  NAT模式  > 仅主机模式

  NAT模式,类似于我们的路由器,具有端口的映射和转发功能。相当于在真实的物理机上,虚拟化出一款路由器,来管理我们的虚拟机,那么多个虚拟机,就可以通过虚拟的路由器进行相互通信。同样,可以和外部的集群相互通信。这就是NAT模式

 

 

二、首选项

1、输入

 

2、热键

 

3、显示

 

4、Unity

 

5、更新

 

6、反馈

 

7、共享虚拟机

 

8、内存

 

9、优先级

 

10、设备

 

 

三、查看 

 

四、虚拟机 

 

1、快照

何为快照?即为复原功能。

 

2、克隆

 

3、从磁盘中删除,这个很重要,自己不要手动删除,一定要在这,从磁盘中删除。

 

五、选项卡 

 

六、帮助 

 

1 、输入许可证密钥

永久激活的密钥:1F04Z-6D111-7Z029-AV0Q4-3AEH8

 

2、关于

 

七、虚拟机设置

 

一、虚拟机设置的硬件

1、内存

 

2、处理器

 

3、磁盘(SCSI)

 

4、CD/DVD(IDE)

 

5、网络适配器

 

6、显示器

当然,自己也可以添加,也可以移出一些硬件。

 

二、虚拟机设置的选项

1、常规

 

2、电源

 

3、共享文件夹

 

4、快照

 

5、自动保护

 

6、客户机隔离

 

7、访问控制

 

8、VMware Tools

 

9、VNC连接

 

10、Unity

 

11、设备视图

 

12、自动登录

 

13、高级

 over!

 


本文转自大数据躺过的坑博客园博客,原文链接:http://www.cnblogs.com/zlslch/p/5066375.html,如需转载请自行联系原作者

vmware 11 最新的unlock2.0 Mac OS X Unlocker for VMware V2.0 ================================= 1. Introduction --------------- Unlocker 2 is designed for Workstation 11, Player 7 and Fusion 7. If you are using an earlier product please continue using Unlocker 1 Version 2 has been tested against: * Workstation 11 on Windows and Linux * Player 7 on Windows and Linux * Fusion 7 on Mavericks and Yosemite * (Currently is does not work on ESXi 6.0) The patch code carries out the following modifications dependent on the product being patched: * Fix vmware-vmx and derivatives to allow Mac OS X to boot * Fix vmwarebase .dll or .so to allow Apple to be selected during VM creation * A copy of the latest VMware Tools for OS X is included Note that not all products recognise the darwin.iso via install tools menu item. You will have to manually mount the darwin.iso for example on Workstation and Player. The vmwarebase code does not need to be patched on OS X so you will see a message on those systems telling you that it will not be patched. In all cases make sure VMware is not running, and any background guests have been shutdown. The code is now Python as it makes the Unlocker easier to run and maintain on ESXi. There are some challenges to write the code as ESXi has a subset of Python 2.7 which constrains some modules that can be used. 2. Prerequisites ---------------- The code requires Python 2.7 to work. Most Linux distros and OS X ship with a compatible Python interpreter and should work without requiring any additional software. Windows will need a version of Python installed and the code has been tested against: CPython - https://www.python.org/downloads/ ActiveState Python - http://www.activestate.com/activepython/downloads IronPython - https://ironpython.codeplex.com/releases/view/169382 The python.exe file must be on the executable PATH. If it is not on PATH please edit win-install.cmd to point to the installation path. 3. Limitations -------------- The Unlocker currently does not work on ESXi 6. The Unlocker does not remove the check for server versions for OS X Leopard and Snow Leopard (10.5 and 10.6). +-----------------------------------------------------------------------------+ | IMPORTANT: | | ========== | | | | If you create a new VM using version 11 hardware VMware will stop and | | create a core dump.There are two options to work around this issue: | | | | 1. Change the VM to be HW 10 - this does not affect performance. | | 2. Edit the VMX file and add: | | smc.version = 0 | | | +-----------------------------------------------------------------------------+ Work continues to find solutions to the limitations. 4. Windows ---------- On Windows you will need to either run cmd.exe as Administrator or using Explorer right click on the command file and select "Run as administrator". win-install.cmd - patches VMware win-uninstall.cmd - restores VMware 5. Linux --------- On Linux you will need to be either root or use sudo to run the scripts. You may need to ensure the Linux scripts have execute permissions by running chmod +x against the 2 files. lnx-install.sh - patches VMware lnx-uninstall.sh - restores VMware 6. Mac OS X ----------- On Mac OS X you will need to be either root or use sudo to run the scripts. This is really only needed if you want to use client versions of Mac OS X. You may need to ensure the OS X scripts have execute permissions by running chmod +x against the 2 files. osx-install.sh - patches VMware osx-uninstall.sh - restores VMware Thanks to Zenith432 for originally building the C++ unlocker and Mac Son of Knife for all the testing and support. History ------- 12/12/14 1.0.0 - First release (c) 2011-2014 Dave Parsons
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值