Vmware: Difference between revisions

From RCATs
No edit summary
No edit summary
Line 3: Line 3:
== Shared Folders ==
== Shared Folders ==
<syntaxhighlight lang="powershell">
<syntaxhighlight lang="powershell">
## This is to make your shared folders appear in your linux vm
## Add the line below to /etc/fstab
## Add the line below to /etc/fstab
vmhgfs-fuse /mnt/hgfs  fuse defaults,allow_other  0  0
vmhgfs-fuse /mnt/hgfs  fuse defaults,allow_other  0  0
</syntaxhighlight>
</syntaxhighlight>

Revision as of 07:28, 10 April 2023


Shared Folders

## This is to make your shared folders appear in your linux vm 
## Add the line below to /etc/fstab
vmhgfs-fuse /mnt/hgfs  fuse defaults,allow_other   0   0