Mounting Shared Folders in a Linux Guest
Monday, 24 November 2014 09:55mount -t vmhgfs .host:/ /home/user1/shares
Mounts all shares to /home/user1/shares
mount -t vmhgfs .host:/foo /tmp/foo
Mounts the share named foo to /tmp/foo
Auto-mount at startup: edit /etc/fstab and add the line:
.host:/ /mnt/hgfs vmhgfs defaults 0 0
The VMware Tools services script loads a driver that performs the mount. If the mount fails, a message appears regarding mounting HGFS shares.
Mounts all shares to /home/user1/shares
mount -t vmhgfs .host:/foo /tmp/foo
Mounts the share named foo to /tmp/foo
Auto-mount at startup: edit /etc/fstab and add the line:
.host:/ /mnt/hgfs vmhgfs defaults 0 0
The VMware Tools services script loads a driver that performs the mount. If the mount fails, a message appears regarding mounting HGFS shares.