Skip to content

Instantly share code, notes, and snippets.

View ijaureguialzo's full-sized avatar
🌍
...

Ion Jaureguialzo Sarasola ijaureguialzo

🌍
...
View GitHub Profile

Vagrant and VMWare Tech Preview on Apple M1 Pro

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

Installing Rosetta

First install Rosetta if not already done, this is needed to run x86 code:

@ijaureguialzo
ijaureguialzo / osx_ramdisk.sh
Last active May 26, 2017 05:47 — forked from jnschulze/osx_ramdisk.sh
Crear y publicar un ramdisk con node.js
#!/bin/bash
# Size at the end is * 2048 where 2048 = 1 MB, so 1572864 = 768 MB
DISK=`/usr/bin/hdiutil attach -nobrowse -nomount ram://8388608` # 4 GB
/usr/sbin/diskutil erasevolume HFS+ "RamDisk" $DISK
RAMDISK="/Volumes/RamDisk/ova"
mkdir $RAMDISK