- In vmware fusion, stop the vm
- Virtual Machine > Hard Disk > Nvme settings
- Change disk size / close / start the vm
# run command line partition tool
$ parted
# 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 |
|