Created
July 1, 2020 08:37
-
-
Save nottrobin/8319aabd904830dd68cf1c146e30a496 to your computer and use it in GitHub Desktop.
Set up dotrun on mac
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
multipass launch --name dotrun | |
DOTRUN_IP=$(multipass list | grep dotrun | egrep -o '\d+[.]\d+[.]\d+[.]\d+') | |
multipass exec dotrun -- mkdir shared | |
multipass exec dotrun -- chmod 777 shared | |
multipass exec dotrun -- sudo apt update | |
multipass exec dotrun -- sudo apt install --yes nfs-kernel-server | |
multipass exec dotrun -- bash -c 'echo "$HOME/shared 192.168.64.0/24(rw,fsid=0,insecure,no_subtree_check,all_squash,async,anonuid=1000,anongid=1000)" | sudo tee -a /etc/exports' | |
multipass exec dotrun -- sudo exportfs -a | |
multipass exec dotrun -- sudo service nfs-kernel-server restart | |
mkdir $HOME/shared | |
sudo mount -t nfs $DOTRUN_IP:/home/ubuntu/shared \$HOME/shared |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment