2 Star 73 Fork 35

学点笔记 / unlocker

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
lnx-update-tools.sh 454 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
set -e
echo "Get macOS VMware Tools 3.0.2"
echo "==============================="
echo "(c) Dave Parsons 2015-18"
# Ensure we only use unmodified commands
export PATH=/bin:/sbin:/usr/bin:/usr/sbin
# Make sure only root can run our script
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root" 1>&2
exit 1
fi
echo Getting VMware Tools...
python gettools.py
cp ./tools/darwin*.* /usr/lib/vmware/isoimages/
echo Finished!
Python
1
https://gitee.com/class877/unlocker.git
git@gitee.com:class877/unlocker.git
class877
unlocker
unlocker
master

搜索帮助