Skip to content

Commit 557f130

Browse files
author
TK
committed
add new vmware tools versions
1 parent 4d3622d commit 557f130

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ Patch VMware Tools source code for a variety of VMware Tools and kernel versions
44

55
## Quickest Start (The easiest way)
66

7-
````bash
7+
```bash
88
$ git clone https://github.com/rasa/vmware-tools-patches.git
99
$ cd vmware-tools-patches
1010
$ ./patched-open-vm-tools.sh
11-
````
11+
```
1212
The above script has been provided which generally should always work, automatically invoking commands described in the following section "Quick Start"
1313

1414
To update and re-patch later, remove the `vmware-tools-patches` subdirectory with the previous download and re-run the script.
@@ -18,35 +18,35 @@ To update and re-patch later, remove the `vmware-tools-patches` subdirectory wit
1818
To build VMware Tools, do the following:
1919

2020
1. Checkout the repository:
21-
````bash
21+
```bash
2222
$ git clone https://github.com/rasa/vmware-tools-patches.git
23-
````
23+
```
2424

2525
2. *(Optional)* Copy your patch(es) into the appropriate directory in the `patches` directory. Patches must end in `.patch`, or `.diff` and be [properly formatted](#required-patch-format). For example:
26-
````bash
26+
```bash
2727
$ cp great-new.patch vmware-tools-patches/patches/vmhgfs
28-
````
28+
```
2929

3030
3. Copy or download the version of VMware Tools you wish to use into the `vmware-tools-patches` folder. One way to do this is using [download-tools.sh](../../blob/master/download-tools.sh) and pass it the associated VMWare Fusion version number:
31-
````bash
31+
```bash
3232
$ cd vmware-tools-patches
3333
$ ./download-tools.sh latest
34-
````
34+
```
3535

3636
It is strongly suggested to use the [latest version](#tested-vmware-tools-versions) of VMware Tools.
3737

3838
VMware Tools is also included inside the `linux.iso` file that is shipped with VMware Fusion, Player, and Workstation.
3939

4040
4. Untar the tarball, and apply the patches:
41-
````bash
41+
```bash
4242
$ cd vmware-tools-patches
4343
$ ./untar-and-patch.sh
44-
````
44+
```
4545

4646
5. Run the `vmware-install.pl` installer to install VMware Tools:
47-
````bash
47+
```bash
4848
$ ./compile.sh
49-
````
49+
```
5050

5151
## Tested Kernels
5252

download-tools.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
77
WGET="wget --no-check-certificate"
88

99
URLS="\
10+
https://softwareupdate.vmware.com/cds/vmw-desktop/fusion/11.0.0/10120384/packages/com.vmware.fusion.tools.linux.zip.tar
11+
https://softwareupdate.vmware.com/cds/vmw-desktop/fusion/10.1.3/9472307/packages/com.vmware.fusion.tools.linux.zip.tar
1012
https://softwareupdate.vmware.com/cds/vmw-desktop/fusion/10.1.2/8502123/packages/com.vmware.fusion.tools.linux.zip.tar
1113
https://softwareupdate.vmware.com/cds/vmw-desktop/fusion/10.1.1/7520154/packages/com.vmware.fusion.tools.linux.zip.tar
1214
https://softwareupdate.vmware.com/cds/vmw-desktop/fusion/10.1.0/7370838/packages/com.vmware.fusion.tools.linux.zip.tar

0 commit comments

Comments
 (0)