In the host's /tmp directory create a new directory (e.g. /tmp/vmware). This will be used as the mount point for a tmpfs (in-memory) partition for storing VM related, temporary files.
Edit
/etc/fstab and add the /tmp/vmware partition to your list of mount points:
tmpfs /tmp/vmware tmpfs defaults,size=100% 0 0
Now if you execute the following command the tmpfs filesystem will be mounted at /tmp/vmware:
sudo mount /tmp/vmware
If successful, reboot the server to ensure the tmpfs partition is mounted at boot time.
No comments:
Post a Comment