Create a symbolic link
https://linuxhandbook.com/symbolic-link-linux/
To create a symbolic link to target file from link name, you can use the ln command with -s option like this:
ln -s target_file link_name
The -s option is important here. It determines that the link is a soft link. If you don’t use it, it will create a hard link.