David Seager
CICS/390 开发, IBM Hursley
2001 年 2 月
这一技巧对于希望使用 VMware 同时具有令牌环网络的 linux 开发者来说很有用。VMware 可以让开发者运行许多操作系统(例如带有 DBCS 支持的 Windows NT),并允许他们测试从该平台开发的任何 Web 解决方案。如果能使用 Windows 浏览器来测试最新的 Web 代码而无需一台单独的 Windows 机器,那一定很有帮助。能够联网到更广阔的 LAN 可以让他们测试位于网络中其它机器上的解决方案。
IP 屏蔽设置
首先设置仅使用主机联网的 VMware,记下 VMware VMnet1 适配器的 IP 地址和网络掩码。确保安装了 IPChains(查找 /sbin/ipchains)。编辑 /etc/rc.d/rc.local,添加以下几行。对于 Redhat 6.1,我将它们放在最后一行的 'fi' 前。
/sbin/ipchains -A forward -s / -d 0.0.0.0/0 -j MASQ
/sbin/modprobe ip_masq_ftp
对于这些示例,我的 VMnet1 adaptor 是 192.168.0.1,网络掩码是 255.255.255.0,因此我输入:
/sbin/ipchains -A forward -s 192.168.0.1/255.255.255.0 -d 0.0.0.0/0 -j MASQ
这将所有到达 VMnet1 适配器(从 VMware 客户机操作系统)的 IP 通信转发到您的 linux 缺省路径,然后再将正确的响应发送回来。
这两行将激活系统启动的屏蔽。要立即执行这一步,以 root 将它们输入到控制台。要配置客户机操作系统,选择 VMnet1 网络上的一个静态 IP 地址(例如 192.168.0.128),然后将缺省网关设置成 VMnet1 地址(例如 192.168.0.1)。照平常那样,使用所在位置特定的设置输入所有其它的 TCPIP 细节。我曾在 Redhat 6.1 系统的 VMWare 1 &2 上测试过它。
参考资料
* VMware, Inc 主页
关于作者
David Seager 已从事 linux 和基于 Web 的应用工作两年以上。
vmware的xwindow安装
我的机器安装了vmware,在此之上又安装了linux,但是现在vmware tools install不能成功,linux也只是命令窗口,没有图形界面。这样也没有学习的气氛
高手们,指点一下,具体步骤,怎样让它运行起来!
先去install vmwaretools(在虚拟机配置里面)
然后
# cp /mnt/cdrom/vmware-linux-tools.tar.gz /tmp
# cd /tmp
# tar xzf vmware-linux-tools.tar.gz
# cd /vmware-linux-tools
# ./install.pl
就高定了
最后
#startx
上面mount的是什么光盘啊,~
有谁能说说吗?
是虚拟的光盘
#mkdir /mnt/cdrom
#mount -t iso9660 /dev/cdrom /mnt/cdrom
我是想问,mount的是张什么光盘,我从哪里可以得到。
谢谢
引用qisk
“ 先去install vmwaretools(在虚拟机配置里面)
然后
# cp /mnt/cdrom/vmware-linux-tools.tar.gz /tmp
# cd /tmp
# tar xzf vmware-linux-tools.tar.gz
# cd /vmware-linux-tools
# ./install.pl
就高定了
最后
#startx
”
你们这是在LINUX下装VM啊,他说的好象是在VM中装LINUX????????LINUX中没X执行startx就可以拉,或者把INIT改成5
我们说的是在VM中装linux并且在此linux中装显卡
有谁知道“vmware-linux-tools.tar.gz”在哪里?
LINUX下装显卡还要工具吗/?SETUP里不是有配置吗?
--------------------------------------------------------------------------------
点击setting->vmware tools install
mount /dev/cdrom /mnt/cdrom
cd /mnt/cdrom
里面就有显卡驱动
登录root
点击setting->vmware tools install
cd /tmp
tar zxvf vmware-linux-tools.tar.gz
cd vmware-linux-tools
./install.pl
reboot
为什么我的vmware tools不能安装?
一点击vmware tools install就出现:
An error occurred while trying to access image file "linux.iso" needed to
install VMware Tools:系统找不到指定的文件。
Please reinstall VMware Workstation,then try again to install the VMware Tools package in your virtual machine
解决方案0:
vmware没装好?从别人那里拷一个tools的.iso就行
vmware上的linux安装
我在VMWARE上安装LINUX,在网上我找到如下资料:
Vmware 的虚拟显示驱动程序和一个Vmware的工具都是放在虚拟的软盘中的。选择Edit/Vmware Tools Install可以激活这个虚拟软盘。打开Windows的资源浏览器,进入A盘就可以看到一个可执行文件和一个.inf文件。安装显示驱动也很简单。使用驱动程序升级,让Windows找A盘就可以了。好了,到此为止,你的虚拟Windows 2000 Server就安装好了,可以开始使用了。关于安装Windows 2000 Server还有一些同服务器相关的配置,这已超出本文讨论的范围,可以参考一些其他Windows 2000 Server的书籍。(以上是虚拟WINDOWS操作系统的描述)
安装Windows操作系统是很容易的,安装linux就没这么简单了,但是安装步骤并没有什么不同。我在这里提醒大家几点:
1.如果你安装的是RedHat linux 7.1,在光盘启动后要选择Text mode。实际上你即便是选择图形模式,安装程序检测后还是会跳到Text mode。而有时在检测的过程中会死机。在安装其他的版本的Linux就没有这种情况。
2.在配置X Windows时,显示卡选择General VGA,No Clock, 256k Memory。
3.安装结束后仍要安装虚拟显示驱动。激活虚拟的软盘后Mount软盘,根据其中的Readme来安装虚拟显示驱动程序。
我的问题是,1:可以通过上面说的MENU选项激活虚拟软盘,但是我怎么MOUNT他呢
激活虚拟的软盘后Mount软盘,根据其中的Readme来安装虚拟显示驱动程序
mount /dev/fd0 /mnt/floppy
在vmware下的LINUX X WINDOWS配置!
运行环境是:win2k Advanced English+VMware Workstation3.20
安装了REDHAT
LINUX2.1,我想进去LINUX的图形界面,运行Xconfigurator,在测试时总不能成功。请帮忙:
显示卡为:ElsaGloria Synergy
显存:8M
显示器:Samsung SyncMaster 551S
具体应该选哪些参数,Ths!
配Xconfigurator,是没有用的,需要安装VMware Tools!
VMware Tools相当于显卡驱动,呵呵。
我手上的是VMware GSX 1.0,不是VMware Workstation3.20,copy一段help给你,应该有帮助!
1、To install VMware Tools in a Windows guest operating system:
1)Power on the virtual machine.
2) Prepare your virtual machine to install the VMware Tools. This will reconfigure the first floppy drive in your virtual machine.
Choose Settings > VMware Tools Install...
If you decide not to proceed with the installation of the VMware Tools, you may cancel the operation.
Choose Settings > Cancel VMware Tools Install
3)Double-click the My Computer icon on your desktop.
4)Double-click the A: device.
5)Double-click VMwareTools.exe and follow the instructions.
6)The VMware Tools background application will be launched automatically when you reboot the virtual machine.
2、To install VMware Tools in a linux guest operating system:
1)Power on the virtual machine.
Prepare your virtual machine to install the VMware Tools. This will reconfigure the first floppy drive in your virtual machine.
Choose Settings > VMware Tools Install...
If you decide not to proceed with the installation of the VMware Tools, you may cancel the operation.
Choose Settings > Cancel VMware Tools Install
3)As root, mount the VMware Tools floppy, copy the contents of the floppy to /tmp, and unmount the floppy.
cd /
mount -t vfat /dev/fd0 /mnt
cp /mnt/vmware-linux-tools.tar.gz /tmp
umount /dev/fd0
4)Untar the VMware Tools tar file in /tmp, and install it.
cd /tmp
tar zxf vmware-linux-tools.tar.gz
cd vmware-linux-tools
./install.pl
5)Start X and your graphical environment if they are not started yet.
6)In an X terminal, launch the VMware Tools background application.
vmware-toolbox &
The VMware Tools background application may be run as root or as a normal user. The application will have additional capabilities if run as root.
我终于搞好了,安装完redhat后,要加载vmware目录下面一个linux.iso文件,把内面一个*.tar文件拷到/tmp目录并解开,执行./install.pl就OK拉 (linux知识宝库)