add ramdisk setup script

Bu işleme şunda yer alıyor:
Jeffrey Paul 2018-09-16 03:05:33 -07:00
ebeveyn 06ceca7c58
işleme 6ff5a09ead
1 değiştirilmiş dosya ile 12 ekleme ve 0 silme

12
bin/setup-osx-ramdisk Çalıştırılabilir dosya
Dosyayı Görüntüle

@ -0,0 +1,12 @@
#!/bin/bash
# from https://schof.org/2014/01/10/putting-my-virtualbox-vagrant-virtual-machines-on-a-ramdisk
# Set up RAM disk for VirtualBox Images
SIZE_IN_GB=14
SIZE_IN_SECTORS=`echo "$SIZE_IN_GB*1024^3/512" | bc`
if [ -d /Volumes/RAMDISK ]; then
echo "RAMDISK for VirtualBox images already exists. Doing nothing."
else
echo "Ramdisk does not exist."
echo "Creating ramdisk."
diskutil erasevolume HFS+ "RAMDISK" `hdiutil attach -nomount ram://$SIZE_IN_SECTORS`
fi