Mount a HGFS file system: Difference between revisions

From Cramsession
Jump to navigationJump to search
✍️ Verified Author: MflavellClick to view professional profile & credentials
(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")
 
No edit summary
Line 1: Line 1:
* Mount one time:
===Mount one time===


   sudo vmhgfs-fuse .host:/ /mnt/hgfs -o subtype=vmhgfs,allow_other -o nonempty
   sudo vmhgfs-fuse .host:/ /mnt/hgfs -o subtype=vmhgfs,allow_other -o nonempty




* Mount on boot
===Mount on boot===


   sudo nano /etc/fstab
   sudo nano /etc/fstab
Line 16: Line 16:




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

Revision as of 19:18, 6 March 2025

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