Unix Create a Symbolic Link

by on May 15, 2008 · 4 comments· LAST UPDATED May 8, 2013

in , ,

How do I create a symbolic links under Linux or Unix like operating systems using command line options?

You need to use the ln command. It is a standard Unix / Linux / BSD command to create links to files. There are two types of links under UNIX, hard and soft link:

Tutorial details
DifficultyEasy (rss)
Root privilegesNo
Requirementsln command
Estimated completion timeN/A

Hard link vs. Soft link in Linux or UNIX

[a] Hard links cannot links directories ( cannot link /tmp with /home/you/tmp)

[b] Hard links cannot cross file system boundaries ( cannot link /tmp mounted on/tmp to 2nd hard disk mounted on /harddisk2)

[c] Symbolic links refer to a symbolic path indicating the abstract location of another file

[d] Hard links, refer to the specific location of physical data.

UNIX create a symbolic link command

To create a symbolic link, enter:
$ ln -s {/path/to/file-name} {link-name}
$ ln -s /shared/sales/data/file.txt sales.data.txt
$ vi sales.data.txt
$ ls -l sales.data.txt

How do I delete a symbolic link?

To delete a link, enter:
$ rm {link-name}
$ rm sales.data.txt
$ ls -l
$ ls -l /shared/sales/data/file.txt

If you delete the soft link itself (sales.data.txt) , the data file would still be there ( /shared/sales/data/file.txt ). However, if you delete /shared/sales/data/file.txt, sales.data.txt becomes a broken link and data is lost.

UNIX create a hardlink command

To create hard link, enter (without the -s option):
$ ln {file.txt} {hard-link}
$ ln /tmp/file link-here

How do I delete a hard link?

You can delete hard link with the rm command itself:
$ rm {hard-link}
$ rm link-here

If you delete a hard link, your data would be there. If you delete /tmp/file your data still be accessible via link-here hard link file.

See also:


If you would like to be kept up to date with our posts, you can follow us on Twitter, Facebook, Google+, or even by subscribing to our RSS Feed.


{ 4 comments… read them below or add one }

1 Puneet Verma May 6, 2009 at 12:17 pm

I am trying to create a hard link to PHP file after installation of PHP4 as a CGI .
My Current directory is clients cgi-bin and want to create a link to usr/local/php4/bin/php but getting following error:

ln: creating hard link `php’ to `/usr/local/php4/bin/php’: Invalid cross-device link

Reply

2 Atul Khachane June 8, 2009 at 3:34 pm

Hi,

You may delete soft link using below command
# unlink {link name};

Reply

3 Sean M. Burke October 18, 2010 at 3:29 pm

I could never get the order of the two things in “ln -s X Y” right, and ended up clobbering Ys with dangling links to X. So I wrote this little sanity-checker wrapper around it: lns.
It does stuff like making sure that your link won’t overwrite anything, and that it’s a link to something that already exists. Just common sense, but sense that I didn’t have.

lns: http://interglacial.com/~sburke/pub/lns.html

I’ve been using it for ten years, and I think it’s the most useful program I’ve ever written. (crontab2english is a runner-up, people tell me)

Reply

4 Jidnesh December 4, 2012 at 11:47 am

If you want to create a symbolic link for multiple files under one directory e.g. want to have all jar files of java to ant lib you can use this feature of linux. This will solve your purpose as well as save the space with reduced redundancy.
One can use for loop to create a sym link of multiple files of a directory as below,

# for F in `ls /usr/share/java/ext/*.jar`; do `ln -s $F  /usr/share/ant/lib/`basename $F /usr/share/java``; done

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <kbd> <blockquote> <pre> <a href="" title="">

Tagged as: , , , , , , , , , , , , , , , ,

Previous Faq:

Next Faq: