VMware 2.0 (Server branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News VMware 2.0 (Server branch)
# 1  
Old 10-08-2008
VMware 2.0 (Server branch)

VMware allows you to run 'virtual machines' inside a Linux host. It is not an emulator. It provides a virtual computer within the host which can boot whichever OS you decide to put on the filesystem image that is used as a harddrive. It will run DOS 6.22, Win 3.1, Win9x, WinNT/2000/XP/2003, Linux, Novell, and more. The only main requirement is a 400 MHz or better machine, along with lots of RAM (128M minimum, 256M recommended). License: Free To Use But Restricted Changes:
This major release introduces VI Web Access, VMware remote console, USB 2.0 device support, increased RAM support (8GB instead of 3.6GB per virtual machine), improved 64-bit guest support, native 64-bit host support on Linux, quiesced backups of virtual machines, a VMCI Sockets interface, and hot add and remove for SCSI hard disks. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. AIX

AIX Server - Need to set up VMWare

Hi experts, We are faced with a dilemma - we have a AIX server for educational purposes. We had some Oracle applications running on them. The management decided not to extend the warranty, so we are left with a server that we cannot upgrade immediately. I was wondering if we could set up... (2 Replies)
Discussion started by: ranj@chn
2 Replies

2. Linux

VMWare Server on FC13

Can someone provide some assistance with this. I'm trying to install vmware server but it's not going so well. $ uname -a Linux testunix 2.6.33.6-147.2.4.fc13.i686.PAE #1 SMP Fri Jul 23 17:21:06 UTC 2010 i686 i686 i386 GNU/Linux # vmware-config.pl Making sure services for VMware Server are... (1 Reply)
Discussion started by: doublejz
1 Replies

3. Red Hat

best config for vmware server

Hi All, I have a test to do. Run another redhat on top of redhat ent 4 AS. So I need to run vmware server linux version. My worry is that the physical server have so many big application on it but it's also test apps. Sorry in tight budget... It have a big memory, disk, etc. Two ips. ... (3 Replies)
Discussion started by: itik
3 Replies

4. Linux

Help installing VMWARE SERVER 2.0

Hello I am trying to install VMWARE in Ubuntu 8.10 and I have two issues. VMWARE server wants to compile modules to work with my kernel one them gives an error. What do I do: None of the pre-built vsock modules for VMware Server is suitable for your running kernel. Do you want this program... (1 Reply)
Discussion started by: mojoman
1 Replies
Login or Register to Ask a Question
VMX(4)							   BSD Kernel Interfaces Manual 						    VMX(4)

NAME
vmx -- VMware VMXNET3 Virtual Interface Controller device SYNOPSIS
To compile this driver into the kernel, place the following line in your kernel configuration file: device vmx Alternatively, to load the driver as a module at boot time, place the following line in loader.conf(5): if_vmx_load="YES" DESCRIPTION
The vmx driver provides support for the VMXNET3 virtual NIC available in virtual machines by VMware. It appears as a simple Ethernet device but is actually a virtual network interface to the underlying host operating system. This driver supports the VMXNET3 driver protocol, as an alternative to the emulated pcn(4), em(4) interfaces also available in the VMware environment. The vmx driver is optimized for the virtual machine, it can provide advanced capabilities depending on the underlying host operating system and the physical network interface controller of the host. The vmx driver supports features like multiqueue support, IPv6 checksum offloading, MSI/MSI-X support and hardware VLAN tagging in VMware's VLAN Guest Tagging (VGT) mode. The vmx driver supports VMXNET3 VMware virtual NICs provided by the virtual machine hardware version 7 or newer, as provided by the following products: o VMware ESX/ESXi 4.0 and newer o VMware Server 2.0 and newer o VMware Workstation 6.5 and newer o VMware Fusion 2.0 and newer For more information on configuring this device, see ifconfig(8). MULTIPLE QUEUES
The vmx driver supports multiple transmit and receive queues. Multiple queues are only supported by certain VMware products, such as ESXi. The number of queues allocated depends on the presence of MSI-X, the number of configured CPUs, and the tunables listed below. FreeBSD does not enable MSI-X support on VMware by default. The hw.pci.honor_msi_blacklist tunable must be disabled to enable MSI-X support. LOADER TUNABLES
Tunables can be set at the loader(8) prompt before booting the kernel or stored in loader.conf(5). hw.vmx.txnqueue hw.vmx.X.txnqueue Maximum number of transmit queues allocated by default by the driver. The default value is 8. The maximum supported by the VMXNET3 virtual NIC is 8. hw.vmx.rxnqueue hw.vmx.X.rxnqueue Maximum number of receive queues allocated by default by the driver. The default value is 8. The maximum supported by the VMXNET3 virtual NIC is 16. hw.vmx.txndesc hw.vmx.X.txndesc Number of transmit descriptors allocated by the driver. The default value is 512. The value must be a multiple of 32, and the maxi- mum is 4096. hw.vmx.rxndesc hw.vmx.X.rxndesc Number of receive descriptors per ring allocated by the driver. The default value is 256. The value must be a multiple of 32, and the maximum is 2048. There are two rings so the actual usage is doubled. EXAMPLES
The following entry must be added to the VMware configuration file to provide the vmx device: ethernet0.virtualDev = "vmxnet3" SEE ALSO
altq(4), arp(4), em(4), netintro(4), ng_ether(4), pcn(4), vlan(4), ifconfig(8) AUTHORS
The vmx driver was ported from OpenBSD and significantly rewritten by Bryan Venteicher <bryanv@freebsd.org>. The OpenBSD driver was written by Tsubai Masanari. BSD
March 17, 2014 BSD