1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/emulators/vmware2/files/Hints.FreeBSD
2000-12-29 13:52:39 +00:00

173 lines
7.5 KiB
Plaintext

$FreeBSD$
Here is a list of some useful hints on using VMware on FreeBSD.
- Note that this port includes some kernel modules, which means you
should rebuild and reinstall this port everytime you update the kernel
so as to keep them in sync; otherwise VMware might coredump or crash
together with the whole system if kernel interfaces were somewhat
different than before.
- Full screen text mode does not work. Don't ever do it!
- Full screen graphics mode will work, but you have to be careful e.g.
when running a DOS prompt on MS Windows. Hitting Alt+Enter will crash
VMware before you can say "Chuck!"
- Running VMware as root is NOT the right way to do it. Edit
/etc/fbtab to obtain the proper permission for the device files that
you are going to access, then run VMware as a normal user.
- Raw disk may not work. Use virtual or plain disk instead.
- The vmware-mount.pl utility does not work. If you want to mount
the "disk" while VMware is not running, you must use plain disks
instead of virtual ones. Set up a 63 sector file as an "mbr"
section, then a file for each partition on the "plain" disk.
To mount the "disk", use vnconfig -c /dev/vn__ file and
then mount the vn device.
If you are setting up a plain disk as a workaround for the broken
raw disks, you will need to set up the disk description file
by hand, as the configuration editor will complain. Here is a
sample one:
DRIVETYPE ide
CYLINDERS 16383
HEADS 16
SECTORS 63
ACCESS "/path/disk.mbr" 0 63
ACCESS "/dev/rad0s1" 63 4192902
RDONLY "/dev/null" 4192965 12305790
The geometry must be the physical geometry reported by the disk.
grep ad0 /var/run/dmesg.boot and look for the 3 numbers in the
brackets. They are the C/H/S.
In the example above, "disk.mbr" is file used to keep a replacement
MBR for the disk. You can use dd if=/dev/rad0 bs=1b count=63 of=mbr
to create it if you like. The reason is so that the guest's decision
about which OS you booted last is different than the host's (this is
for the FreeBSD boot manager). You can also feel free to replace
the MBR with the standard boot manager if you like. fdisk(8) and a vn
device can help with this, though you will have to be sure and
supply the correct geometry to fdisk(8) since the vn device won't
support those calls. This time it's the BIOS "fake" geometry.
Watch out!
As you can see, the 1st partition simply is a FreeBSD slice device.
The first number after the filename is the offset in blocks where the
given file starts in the plain disk. The last number on the line is
the length of the block. If you are using a file, its length must
be equal to this number * 512.
The last entry is an example of how to block out partitions you don't
want VMware to mess with. Why do this instead of simply making the
C/H/S numbers for the disk smaller? Because then the guest's BIOS
might not make the same choices about the "fake" geometry to use,
which would prevent the OS from booting in most cases.
You might be able to follow the same procedure to make SCSI drives
work. It is slightly less likely to work as SCSI vendors often
differ as to how they set up BIOS geometries. Your raw device
must end up having the same BIOS geometry as a Bustek SCSI
controller, which is the device VMware virtually supplies as the
host adapter.
- It is a good idea to disconnect removable media devices (CDROMs
and Floppies and the like) from the "guest" either when they are
empty or when you're about to eject the media.
- Under FreeBSD, floppy device should be configured as follows:
Type: file
Path: /dev/fd0
(Obtain the write permission on /dev/fd0 if you write floppy disks)
- VMware creates a file that is about 25% larger than the guest OS's
RAM size, unlinks it and mmap's on it on the first startup of the VM.
The default directory for the mmap is the value of TMPDIR environment
variable, or if it's undefined, /tmp.
Therefore, it would be a good idea to have your TMPDIR variable
defined as a directory 1) that performs fast, 2) that has sufficient
free space, and 3) that isn't on MFS; if your /tmp doesn't meet those
three conditions.
1 is because that will significantly improve the performance, 2 is
because the VM cannot even boot when the mmap fails, and 3 is because
such a large, active file on MFS could lead the system to deadlocks.
Alternatively, you can make /compat/linux/tmp to fake /tmp, however,
you should note that it would cause you silly troubles: Imagine a
Linux application (say, Linux Netscape) which creates a temporary file
in /tmp and passes it to some external program; you'll see it actually
creates a file in /compat/linux/tmp when the external program searches
/tmp literally.
- There is a bug you may wish to work around. It is unclear (at least to
me) if this is a bug in VMware, the Linuxulator or the FreeBSD VM
system.
Some background first: When you mmap a file, the syncer will attempt to
periodically synchronize the on-disk version of the file with the
changes being made in the mmap'd region. If you unlink an mmap'd file,
however, this no longer is necessary because if the machine were to
reboot fsck would throw the file away. The hint is given to the syncer
in the form of the MAP_NOSYNC flag to the mmap() syscall.
The problem is that VMware somehow performs the operations differently
when resuming from a save-to-disk session than it does when booting. The
result is that the MAP_NOSYNC flag doesn't get set, which causes the
performance of a resumed session to be terrible compared to a new
session.
I suspect that the problem is that when an open file is unlinked, the
unlink() call does not know to check to see if the file is mmap'ed and
if so to add the MAP_NOSYNC flag. This means that open(), unlink(),
mmap() sequences work, but open(), mmap(), unlink() sequences do not.
VMware probably does not unlink the save-to-disk file right away in case
the resume fails, which causes the difference in behavior compared to a
clean boot.
The only workaround at present is to force all Linuxulator mmap() calls
to get MAP_NOSYNC. A patch against -current to do just this is available
at http://home.jp.FreeBSD.ORG/cgi-bin/showmail/FreeBSD-users-jp/55885
(ignore the Japanese text if you can't read it. -stable users may need
to apply part of the patch to /sys/compat/linux/linux_mib.c).
- If you configure vmware to use bridging, you must still specify the
"Host only" mode to the VMware configurator. It will still work just
like a bridged interface. If your bridged VMware guest is a DHCP client,
you may wish to fix its Ethernet address so as not to generate a new
lease every time you start VMware. To do so, add this line to your
guest's .cfg file:
ethernet0.address = "00:50:56:1e:ad:bf"
You can only change the last 5 hex digits, which MUST be unique (at least
within your LAN).
Note that bridging only works on (real) Interfaces where both the 'set
promisc 1' and 'set autosrc 0' steps function. This means that the
interface must be capable of transmitting frames with other than its own
Ethernet address and receiving promiscuously. Most interfaces can, but
notably wi interfaces are among those that cannot. Note that promiscuous
mode is entered when the vmware.sh startup script is run, which may
cause increased interrupt loads on your machine if it's plugged into a
busy network. If you only run vmware infrequently, it may be better to
only manually run the vmware startup script (as root) just before you
start vmware and again (with the stop argument this time) when you're
finished.
- Don't miss the VMware FAQ available on the official site.
http://www.vmware.com/products/productfaq.html
--
Akinori -Aki- MUSHA <knu@idaemons.org>
Nick Sayer <nsayer@FreeBSD.org>