how to create a symbolic link in linux for a file code example
Example 1: create a symlink
ln -s [/path/to/file] [/path/to/symlink]
Example 2: how to create symlink in linux
ln -s <location_of_file1> <desired_location_of_symlink>
ln -s [/path/to/file] [/path/to/symlink]
ln -s <location_of_file1> <desired_location_of_symlink>