Created
February 28, 2017 01:02
-
-
Save ecornell/3f7a211c0955fbf83e3af79fdc729b47 to your computer and use it in GitHub Desktop.
Switch between VirtualBox and Fuse kext
This file contains 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 | |
function status() { | |
kextstat | grep org.virtualbox.kext > /dev/null 2>&1 ; | |
vbox=$((1-$?)) | |
kextstat | grep com.github.osxfuse > /dev/null 2>&1 ; | |
fuse=$((1-$?)) | |
} | |
status | |
if [ "$1" == "vbox" ] ; then | |
if [ $vbox == 1 ] ; then | |
echo "Already vbox" | |
else | |
sudo kextunload -b com.github.osxfuse.filesystems.osxfuse | |
sudo kextutil "/Library/Application Support/VirtualBox/VBoxDrv.kext" -r "/Library/Application Support/VirtualBox" | |
sudo kextutil "/Library/Application Support/VirtualBox/VBoxNetAdp.kext" -r "/Library/Application Support/VirtualBox" | |
sudo kextutil "/Library/Application Support/VirtualBox/VBoxNetFlt.kext" -r "/Library/Application Support/VirtualBox" | |
sudo kextutil "/Library/Application Support/VirtualBox/VBoxUSB.kext" -r "/Library/Application Support/VirtualBox" | |
fi | |
elif [ "$1" == "fuse" ] ; then | |
if [ $fuse == 1 ] ; then | |
echo "Already fuse" | |
else | |
sudo kextunload -b org.virtualbox.kext.VBoxUSB -b org.virtualbox.kext.VBoxNetFlt -b org.virtualbox.kext.VBoxNetAdp | |
sudo kextunload -b org.virtualbox.kext.VBoxDrv | |
sudo kextutil /Library/Filesystems/osxfuse.fs/Contents/Extensions/10.12/osxfuse.kext | |
fi | |
elif [ "$1" == "status" ] ; then | |
echo "vbox = $vbox" | |
echo "fuse = $fuse" | |
else | |
echo "Run $0 <vbox|fuse|status>" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment