Last active
February 6, 2019 00:52
-
-
Save hannesbe/c252b5fba46d3870d4f9fecb090c439e to your computer and use it in GitHub Desktop.
VMware vCli - install deps + install from tarball (Ubuntu & co)
This file contains 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/bash | |
# VMware vCli - install deps + install from tarball (Ubuntu & co) | |
## https://www.vmware.com/support/developer/vcli/ | |
## https://my.vmware.com/group/vmware/get-download?downloadGroup=VS-CLI-670 | |
sudo apt-get install -y lib32z1 build-essential gcc uuid uuid-dev perl libssl-dev perl-doc liburi-perl libxml-libxml-perl libcrypt-ssleay-perl | |
tar -zxvf VMware-vSphere-CLI-6.7.0-8156551.x86_64.tar.gz | |
cd vmware-vsphere-cli-distrib | |
sudo ./vmware-install.pl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment