Created
November 15, 2021 18:31
-
-
Save miketzian/a6884d7f643df044bef536107d399a3c to your computer and use it in GitHub Desktop.
m1 VMware tools / ubuntu
This file contains hidden or 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
# create share in vmware fusion with name "dev" | |
# ubuntu | |
sudo apt install open-vm-tools | |
cat <<EOF >> /etc/fstab | |
.host:dev /mnt/hgfs fuse.vmhgfs-fuse allow_other,uid=1000,gid=1000,auto_unmount,defaults 0 0 | |
EOF | |
# restart | |
# some folks say daemon-reload + fs-local.target restart can make this work, but I didn't find this. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment