Use different location for shared folder mounts

JonathanK5

Bit poster
Currently, Parallels mounts all shared folders in /media/psf
I'd like to change the location shared folders are mounted to. Is there a way to do this?
 
Sure, why not :) -- Add the following to your /etc/fstab:
Code:
Name_of_the_Folder /desired/mount/point    prl_fs    sync,nosuid,nodev,noatime,share,host_inodes    0 2
e.g. on my system (despite that I like it under `/mnt/psf/`, the mountpoint can be anywhere where you have an empty directory) the line is:
Code:
Home    /mnt/psf/Home    prl_fs    sync,nosuid,nodev,noatime,share,host_inodes    0 2
 
Back
Top