This document summarizes notes taken while to make the VMWare Tech preview work on Apple M1 Pro, it originated from discussions in hashicorp/vagrant-vmware-desktop#22
First install Rosetta if not already done, this is needed to run x86 code:
This document summarizes notes taken while to make the VMWare Tech preview work on Apple M1 Pro, it originated from discussions in hashicorp/vagrant-vmware-desktop#22
First install Rosetta if not already done, this is needed to run x86 code:
| #! /usr/bin/env bash | |
| ## Usage: | |
| ## $ wget https://gist.githubusercontent.com/mimimalizam/e68634b4144f40acbcb3ba5ef3a2b624/raw/golang-setup-semaphore.sh | |
| ## $ bash ./golang-setup-semaphore.sh <golang-version> | |
| GOLANG_VERSION=${1:-"1.9"} | |
| TAR=go$GOLANG_VERSION.linux-amd64.tar.gz | |
| URL=https://storage.googleapis.com/golang/$TAR | |
| GOLANG_CACHE_PATH="$SEMAPHORE_CACHE_DIR/$TAR" |
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <style> | |
| body { | |
| font-family: Helvetica; | |
| } | |
| .country-labels { | |
| font-size:11px; | |
| } | |
| .containers { |
ey login
cat ~/.eyrc
api_token: 76f2d43d79bedd9bc74654a1ded733c9
| /** | |
| * NOTE: Earlier versions of this file used `php artisan serve`. | |
| * However, Codeception and/or PhantomJS is not too fond of | |
| * running that way for some reason. I ended up switching | |
| * to Apache since that's what worked for all our devs | |
| * locally. This script now includes how to get that | |
| * setup properly. Please enjoy this responsibly. | |
| * | |
| * Assumptions: | |
| * Using site5/phantoman to run phantomjs as the headless browser |
| ############################################################# | |
| ################### OFFICIAL UBUNTU REPOS ################### | |
| ############################################################# | |
| ###### Ubuntu Main Repos | |
| deb http://de.archive.ubuntu.com/ubuntu/ precise main restricted universe | |
| deb-src http://de.archive.ubuntu.com/ubuntu/ precise main restricted universe | |
| ###### Ubuntu Update Repos | |
| deb http://de.archive.ubuntu.com/ubuntu/ precise-security main restricted universe |
| sudo dpkg -r elasticsearch | |
| if ! [ -e .semaphore-cache/elasticsearch-2.1.1.deb ]; then (cd .semaphore-cache; wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-2.1.deb); fi | |
| echo 'N' | sudo dpkg -i ./.semaphore-cache/elasticsearch-2.1.1.deb | |
| sudo service elasticsearch start | |
| sleep 7 |