]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Update README.md
authorjonathanvmw <30302560+jonathanvmw@users.noreply.github.com>
Fri, 1 Sep 2017 17:30:23 +0000 (10:30 -0700)
committerGitHub <noreply@github.com>
Fri, 1 Sep 2017 17:30:23 +0000 (10:30 -0700)
Update build instructions.

README.md

index 7a96d4e13cc3c3fe1022fb62da6087594c9b5e30..bbe5386bc53175800eca629e3dee49bd0abd8fde 100644 (file)
--- 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?