Mount a HGFS file system: Difference between revisions
From Cramsession
Jump to navigationJump to search
✍️ Verified Author: Mflavell • Click 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 |
||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
[[Tech Notes]] > [[Linux]] > Mount a HGFS file system | |||
===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=== | |||
sudo nano /etc/fstab | sudo nano /etc/fstab | ||
| Line 16: | Line 19: | ||
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 | ||
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