From: jonathanvmw <30302560+jonathanvmw@users.noreply.github.com> Date: Fri, 1 Sep 2017 17:30:23 +0000 (-0700) Subject: Update README.md X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a05f31747053f958bd4bcf04accaf80210afdfec;p=thirdparty%2Fopen-vm-tools.git Update README.md Update build instructions. --- diff --git a/README.md b/README.md index 7a96d4e13..bbe5386bc 100644 --- a/README.md +++ b/README.md @@ -76,18 +76,26 @@ Our goal is to work towards making the open source version as close to the comme ## If I use the code from the open-vm-tools project in my project/product, can I call my project/product VMware Tools? No, since your project/product is not a VMware project/product. - + # Building open-vm-tools ## How do I build open-vm-tools? open-vm-tools uses the GNU Automake tool for generating Makefiles to build all sources. More information about Automake can be found here: http://www.gnu.org/software/automake/ ## Project build information: -Getting configure options & help: If you are looking for help or additional settings for the building of this project, the following configure command will display a list of help options: ./configure --help -Using configure: When using configure in the steps below it is only necessary to call ./configure once unless there was a problem after the first invocation. -Building Unix user-space programs: - -1. autoreconf -i -2. ./configure -3. Run "make" to build Unix userland and kernel +The following steps will work on most recent Linux distributions: +``` +autoreconf -i +./configure --without-kernel-modules +make +sudo make install +sudo ldconfig +``` + +## Getting configure options and help +If you are looking for help or additional settings for the building of this project, the following configure command will display a list of help options: +``` +./configure --help +``` +When using configure in the steps above it is only necessary to call ./configure once unless there was a problem after the first invocation. # Getting Involved ## How can I get involved today?