mkdir -p /mnt/hgfs
cat >> /etc/fstab <<EOF
vmhgfs-fuse /mnt/hgfs fuse defaults,allow_other,_netdev 0 0
EOF
mount -a
wget https://www.python.org/ftp/python/2.7.18/Python-2.7.18.tar.xz
sudo tar xzf Python-2.7.18.tar.xz
cd Python-2.7.18
./configure --enable-optimizations
make altinstall
This file contains hidden or 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 | |
set -e | |
cd `dirname $0` | |
########################################### | |
PAHO_VERSION="1.1.0" | |
PAHO_GZFILE="v${PAHO_VERSION}.tar.gz" | |
PAHO_DIR="paho.mqtt.embedded-c-${PAHO_VERSION}" | |
# download |
This file contains hidden or 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 | |
set -e | |
cd `dirname $0` | |
################################################################## | |
ARTEMIS_VERSION="2.33.0" | |
ARTEMIS_FILE="apache-artemis-$ARTEMIS_VERSION-bin.tar.gz" | |
ARTEMIS_HOME="/opt/apache-artemis-${ARTEMIS_VERSION}" |
1. Downdoad make for windows
2. Downdoad libintl for windows