Last active
December 25, 2015 13:58
-
-
Save oko/6987219 to your computer and use it in GitHub Desktop.
Install VMWare tools on PFSense
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# configure package download environment | |
export PACKAGEROOT="ftp://ftp.freebsd.org" | |
export PACKAGESITE="ftp://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages-8.3-release/Latest/" | |
# install perl to run the installer script | |
pkg_add -r perl | |
# install compat6x-amd64 (or compat6x-i386 if you're on 32-bit) | |
pkg_add -r compat6x-amd64 | |
# mount CDROM | |
mkdir /tmp2 | |
mount_cd9660 /dev/acd0 /tmp2 | |
#...then install VMWare tools as usual from tar.gz file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Updated to use export instead of setenv in script -- setenv can be used on the command line, however