Mount a HGFS file system: Difference between revisions

From Cramsession
Jump to navigationJump to search
✍️ Verified Author: MflavellClick to view professional profile & credentials
No edit summary
No edit summary
 
Line 1: Line 1:
[[Tech Notes]] > [[Linux]] > Mount a HGFS file system
===Mount one time===
===Mount one time===



Latest revision as of 17:53, 20 May 2025

Tech Notes > Linux > Mount a HGFS file system


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