How to create a symbolic link in Linux

H

How Can We Help?

How to create a symbolic link in Linux

What is a symbolic link?

A symbolic link is a special file that points to another file on the system. When you access one of
these files, it has a pathname stored inside it. Use this pathname to advance to the file or directory on the
system represented by the pathname stored in the symbolic link.

How to create a symbolic link?

Create a symbolic link with the ln command with the -s option

Syntax:  ln -s source destination

Explanation: source is either the absolute or relative path to the original version of the file, and destination is
the name you want the link to have.

Example: $ ln -s /home/httpd/html/site /home/peter/public_html

Explanation of Example: Creates a link to my home directory to my web files. If there’s an error an error message will come up while attempting to create a symbolic link, and if successful no output will be displayed.

About the author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

About Author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

Follow Me