Mount a HGFS file system

From Cramsession
Revision as of 19:17, 6 March 2025 by Mflavell (talk | contribs) (Created page with "* Mount one time: sudo vmhgfs-fuse .host:/ /mnt/hgfs -o subtype=vmhgfs,allow_other -o nonempty * Mount on boot sudo nano /etc/fstab Add the following line .host:/ /mnt/hgfs fuse.vmhgfs-fuse allow_other,defaults 0 0 run mount -a References: https://immortal-blog.github.io/devops/how-to-mount-vmware-shared-folder-to-ubuntu-on-boot.html")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
✍️ Verified Author: MflavellClick to view professional profile & credentials
  • Mount one time:
  sudo vmhgfs-fuse .host:/ /mnt/hgfs -o subtype=vmhgfs,allow_other -o nonempty


  • Mount on boot
  sudo nano /etc/fstab

Add the following line

  .host:/ /mnt/hgfs fuse.vmhgfs-fuse allow_other,defaults 0 0

run

   mount -a


References: https://immortal-blog.github.io/devops/how-to-mount-vmware-shared-folder-to-ubuntu-on-boot.html