VMWare虚拟机装配RedHat Linux怎么解决

发布网友 发布时间:2022-04-25 17:00

我来回答

1个回答

热心网友 时间:2023-10-21 03:29

Vmware是一款可以在一种操作系统平台上虚拟出其他一些操作系统的虚拟机软件,可以自由地对自己需要学习和试验的操作环境进行配置和修改,不用担心会导致系统崩溃,还可以让用户在单机上构造出一个虚拟网络来加强对网络知识的学习。下面我们就来了解一下Vmware的安装和设置方法吧。
软件安装
1。下载到相关linux的版本的iso。
2。建立一个linux的虚拟机。
3。设置好该虚拟机的光驱,指定为你的iso
4。启动虚拟机,之后安装在新电脑上安装linux的方法进行安装.
网卡
Bridged — If the host computer is on an Ethernet network, bridged networking is often the easiest way to give your virtual machine access to that network. With bridged networking, the virtual machine appears as an additional computer on the same physical Ethernet network as the host. A virtual machine with bridged networking may transparently use any of the services available on the network to which it is bridged, including file servers, printers, gateways and so on. Likewise, any physical host or other virtual machine configured with bridged networking can use resources of that virtual machine.

NAT (Network Address Translation) — If you want to connect to the Internet or other TCP/IP network using the host computer's dial-up networking connection and you are not able to give your virtual machine an IP address on the external network, this is often the easiest way to give the virtual machine access to that network. The virtual machine does not have its own IP address on the external network. Instead, a separate private network is set up on the host computer. The virtual machine obtains an address on that network from the VMware virtual DHCP server.
Host-only — When you use this type of network connection, the virtual machine is connected to the host operating system on a virtual private network, which normally is not visible outside the host. Multiple virtual machines configured with host-only networking on the same host are on the same network.

Custom — If you want to set up a more complex networking configuration, select Custom for one or more of the virtual network adapters. After selecting Custom, choose a virtual switch (VMnet2-VMnet7or VMnet9) from the drop-down list. This connects your virtual machine's adapter to that switch. All virtual machines running on the same host computer and connected to the same virtual switch are on the same virtual network
创建新的虚拟机
双击桌面图标,即可启动软件,并创建新的虚拟机。具体步骤如下:
1.选择“File→New→New Virtual Machine”菜单选项,弹出创建虚拟机的向导(图1)。

图1虚拟机创建向导
2.在向导窗口中选择创建虚拟机的类型。“Typical”是默认的典型方式,此方式中包括了常用的“硬件”配置:显卡、声卡、网卡,要注意的是这些设备并不依赖于你真正的硬件设备,它们通常是凌驾于硬件之上的虚拟设备,这也正是它拷贝到任何机器上都可以运行的原因;另一种“Custom”方式则是自定义方式,可以自主选择虚拟机内需要哪些“硬件”设备,这种方式通常是留给“高手”使用的。
3.接着选择我们需要在虚拟机上运行的操作系统。从图2中可以看出该虚拟机软件可以支持的操作系统包括从MS-DOS到Windows 2003以及Unix、Linux、Netware等众多版本的操作系统。本文中我们以安装Linux操作系统的虚拟机为例,在图2中选择“Linux”选项。

图2虚拟机软件系统选择界面
4.输入该虚拟机的名字(任意的)以及该虚拟机文件将要存放的位置。
至此一个虚拟机系统的设置工作已经完成,下面我们来看看如何使用虚拟机。
创建虚拟机软件系统
单击图3中左边名为“Linux”的虚拟机,再单击工具栏中的绿色三角标志,启动该虚拟机(红色钮表示停止虚拟机运行,中间按钮表示暂停虚拟机运行)。

图3启动虚拟操作系统
首先启动的是虚拟机的自检过程,调用虚拟机的BIOS。因为我们安装“Linux”系统需要使用光盘引导,所以此时需要按F2键进入虚拟机的BIOS设置程序,设置为光盘启动。
接下来在光驱中放入Linux系统的安装光盘,重新启动虚拟机,然后就如同在实体计算机上一样安装Linux系统。提示:此时虚拟机的硬盘就如同刚刚买回的新硬盘一样,你只管放心大胆地分区格式化,对你的真实系统丝毫不会造成损坏,因为Vmware将计算机上的一个文件夹虚拟成一个硬盘,默认大小是4GB。系统安装完成后,重新启动虚拟机。
至此整个虚拟机的设置与安装工作全面完成(图4),这个虚拟的Linux系统就以文件的形式存放在你的硬盘中,将来如果不需要这个虚拟机系统了,直接将对应文件夹删除就可以了。除此以外,你还可以将该路径下的文件拷贝到其他装有Vmware软件的机器中。

图4虚拟操作系统启动界面
其他的虚拟机系统也以同样的方法进行安装。笔者的宿主机上运行的是Windows 2000 Server,在同一台宿主机上同时安装了Linux、Unix、Windows 98系统,没有发现任何冲突。

在vmware的LINUX中使用本地硬盘的FAT分区
将本地的FAT分区共享,然后在VMWARE中使用SMBFS挂上。可以将如下的行放到/etc/fstab中:
//win_ip/D$ /mnt/d smbfs defaults,auto,username=win_name,password=win_pass,codepage=936,iocharest=gb2312 0 0 其中win_ip是你的windows的IP地址;D$是你的windows里面共享的D盘的共享名; /mnt/d是要将该分区mount到linux的目录; win_name和win_pass是你的WINDOWS里面可以读取该分区的用户,比如你的管理员名和密码。如果你运行了/etc/rc.d/init.d/netfs,那么在启动的时候就会自动挂载这个分区。

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com