Install FreeBSD
- Download a suitable image from this site Show archive.org snapshot
- Select
File > New…
to and follow the instructions, choose the.iso
file you downloaded as image file - Start the new virtual machine and follow the instructions
- formatting is a little complicated, so let freebsd.org help you Show archive.org snapshot
Install VMware Tools
Choose Virtual Machine > Install VMware Tools
from the VMware menu, then as root
:
^
# install required packages
pkg_add -v -r perl compat6x-amd64
# mount the CD
mount /cdrom
# copy and extract the VMWare tools
cd /tmp
tar zxpf /cdrom/vmware-freebsd-tools.tar.gz
umount /cdrom
# run installation script,
# just confirm the default answers when asked
cd vmware-tools-distrib/
./vmware-install.pl
Set screen resolution
If /usr/src/
is empty, install the sources: Run sysinstall
as root, choose Configure
, then Distributions
, then src
, and finally All
. Choose CD/DVD as source and have the .iso
file you used for installation connected to your Virtual Machine. Then create a symlink to /usr/src/sys
:
^
ln -s /usr/src/sys/ /sys/
Now follow this guide Show archive.org snapshot .
Posted by Dominik Schöler to makandra dev (2011-05-25 09:28)