create symlink to directory linux code example
Example 1: linux symlink directory example
ln -s /mnt/external-drive ~/mydrive
Example 2: how to create symlink in linux
ln -s <location_of_file1> <desired_location_of_symlink>
ln -s /mnt/external-drive ~/mydrive
ln -s <location_of_file1> <desired_location_of_symlink>