Read more

Setting up FreeBSD as Virtual Machine in VMware

Dominik Schöler
May 25, 2011Software engineer at makandra GmbH

Install FreeBSD

Install VMware Tools

Choose Virtual Machine > Install VMware Tools from the VMware menu, then as root:

Illustration UI/UX Design

UI/UX Design by makandra brand

We make sure that your target audience has the best possible experience with your digital product. You get:

  • Design tailored to your audience
  • Proven processes customized to your needs
  • An expert team of experienced designers
Read more Show archive.org snapshot

^
# 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 11:28)