Jump to content

Ln (Unix): Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
→‎Specification: translation of a comment from the equivalent German Wikipedia article
m →‎top: per MOS bold
Line 1: Line 1:


The <code>'''ln'''</code> command is a standard [[Unix command]] utility used to create a [[hard link]] ('''l'''i'''n'''k) or a [[symbolic link]] (symlink) to an existing file.<ref name=UNIXKP>{{cite book|last1=Kernighan|first1=Brian W.|last2=Pike|first2=Rob|title=The Unix programming environment.|date=1984|publisher=Prentice-Hall|location=Englewood Cliffs, N.J.|isbn=013937681X|page=59|accessdate=7 August 2015}}</ref> The use of a hard link allows multiple [[filenames]] to be associated with the same [[Computer file|file]] since a hard link points to the [[inode]] of a given file, the data of which is stored on [[Hard disk drive|disk]]. On the other hand, symbolic links are special files that refer to other files by [[Filename#References: absolute vs relative|name]].<ref name=GNULnman>{{cite web|title=GNU Coreutils: ln invocation|url=https://www.gnu.org/software/coreutils/manual/html_node/ln-invocation.html|website=gnu.org|publisher=Free Software Foundation, Inc.|accessdate=7 August 2015}}</ref>
The <code>'''ln'''</code> command is a standard [[Unix command]] utility used to create a [[hard link]] or a [[symbolic link]] (symlink) to an existing file.<ref name=UNIXKP>{{cite book|last1=Kernighan|first1=Brian W.|last2=Pike|first2=Rob|title=The Unix programming environment.|date=1984|publisher=Prentice-Hall|location=Englewood Cliffs, N.J.|isbn=013937681X|page=59|accessdate=7 August 2015}}</ref> The use of a hard link allows multiple [[filenames]] to be associated with the same [[Computer file|file]] since a hard link points to the [[inode]] of a given file, the data of which is stored on [[Hard disk drive|disk]]. On the other hand, symbolic links are special files that refer to other files by [[Filename#References: absolute vs relative|name]].<ref name=GNULnman>{{cite web|title=GNU Coreutils: ln invocation|url=https://www.gnu.org/software/coreutils/manual/html_node/ln-invocation.html|website=gnu.org|publisher=Free Software Foundation, Inc.|accessdate=7 August 2015}}</ref>


The <code>ln</code> command by default creates hard links, and when called with the [[Command-line interface|command line]] [[Command-line interface#Application command-line interfaces|parameter]] <code>ln '-s'</code> creates symbolic links.<ref>{{cite web|title=ln - The Open Group Base Specifications Issue 7|url=http://pubs.opengroup.org/onlinepubs/9699919799/utilities/ln.html|website=pubs.opengroup.org|publisher=The IEEE and The Open Group|accessdate=7 August 2015}}</ref> Most [[operating systems]] prevent hard links to [[Directory (computing)|directories]] from being created since such a capability could potentially disrupt the structure of a [[file system]] and interfere with the operation of other utilities.<ref>{{cite web|title=Why are hard links not allowed to directories in UNIX/Linux?|url=http://unix.stackexchange.com/questions/22394/why-hard-links-not-allowed-to-directories-in-unix-linux?rq=1|website=unix.stackexchange.com|accessdate=7 August 2015}}</ref> The <code>ln</code> command can however be used to create symbolic links to non-existent files.<ref name=GNULnman />
The <code>ln</code> command by default creates hard links, and when called with the [[Command-line interface|command line]] [[Command-line interface#Application command-line interfaces|parameter]] <code>ln '-s'</code> creates symbolic links.<ref>{{cite web|title=ln - The Open Group Base Specifications Issue 7|url=http://pubs.opengroup.org/onlinepubs/9699919799/utilities/ln.html|website=pubs.opengroup.org|publisher=The IEEE and The Open Group|accessdate=7 August 2015}}</ref> Most [[operating systems]] prevent hard links to [[Directory (computing)|directories]] from being created since such a capability could potentially disrupt the structure of a [[file system]] and interfere with the operation of other utilities.<ref>{{cite web|title=Why are hard links not allowed to directories in UNIX/Linux?|url=http://unix.stackexchange.com/questions/22394/why-hard-links-not-allowed-to-directories-in-unix-linux?rq=1|website=unix.stackexchange.com|accessdate=7 August 2015}}</ref> The <code>ln</code> command can however be used to create symbolic links to non-existent files.<ref name=GNULnman />

Revision as of 00:48, 8 December 2016

The ln command is a standard Unix command utility used to create a hard link or a symbolic link (symlink) to an existing file.[1] The use of a hard link allows multiple filenames to be associated with the same file since a hard link points to the inode of a given file, the data of which is stored on disk. On the other hand, symbolic links are special files that refer to other files by name.[2]

The ln command by default creates hard links, and when called with the command line parameter ln '-s' creates symbolic links.[3] Most operating systems prevent hard links to directories from being created since such a capability could potentially disrupt the structure of a file system and interfere with the operation of other utilities.[4] The ln command can however be used to create symbolic links to non-existent files.[2]

<check><retrive>

Links allow more than one filename to refer to the same file as in the case of a hard link or act as pointers to a filename as in the case of a soft link. Both hard links and soft links can be created by the ln command. Specifically,

  1. Hard links also known simply as links are objects that associate the filename with the inode and therefore the file contents itself.[1] A given file on disk could have multiple links scattered through the directory hierarchy with all of the links being equivalent since they all associate with the same inode.[5] Creating a link therefore does not copy the contents of the file but merely causes another name to be associated with the same contents. Each time a hard link is created a link counter that is a part of the inode structure gets incremented; a file is not deleted until its reference count reaches zero.[1][6] Hard links can however only be created on the same file system; this can prove to be a particular disadvantage.[7]
  2. Symbolic links are special files which when encountered during pathname resolution modify the pathname resolution to be taken to the location which the symbolic link contains. The content of the symbolic link is therefore the destination path string, which can also be examined using the readlink command line utility.[8] The symbolic link may contain an arbitrary string which does not refer to the location of an existing file, such a symbolic link will fail until a file is created at the location which is contained by the symbolic link. By contrast a symbolic link to an existing file will fail if the existing file is moved to a different location (or renamed).[5]

Specification

The ln utility on systems compliant with the Single Unix Specification is specified in the Shell and Utilities (XCU) document which forms a part of the Single Unix Specification.[9][10]

The specification describes two ways of invoking the ln utility.[11] Specifically,

In the "single file" invocation the ln utility creates a new hard link (Directory entry) for the source file specified by the source_file operand at the destination path specified by the target_file operand. However, if the -s option is specified, a symbolic link is created.
ln [-fs] [-L|-P] source_file target_file
In the "multiple file" invocation the ln utility creates a new hard link (Directory entry) or if the -s option is specified a symbolic link, for each file specified by the source_file operand, at a destination path in an existing directory named by operand target_dir.
ln [-fs] [-L|-P] source_file_1 source_file_2 ... target_dir

The specification also specifies the command line options that must be supported:

-f Force existing destination pathnames to be removed to allow the link.
-L For each source_file operand that names a file that is a symbolic link, create a hard link to the file referenced by the symbolic link.
-P For each source_file operand that names a file that is a symbolic link, create a (hard) link to the symbolic link itself.
-s Create symbolic links instead of hard links. If the -s option is specified, the -L and -P options are silently ignored.
If more than one of the mutually-exclusive options -L and -P is specified the last option specified determines the behavior of the utility.
If the -s option is not specified and neither a -L nor a -P option is specified, it is implementation-defined which of the -L and -P options will be used as the default.

If neither target file nor target directory are specified, links will be created in the current working directory.

See also

References

  1. ^ a b c Kernighan, Brian W.; Pike, Rob (1984). The Unix programming environment. Englewood Cliffs, N.J.: Prentice-Hall. p. 59. ISBN 013937681X. {{cite book}}: |access-date= requires |url= (help)
  2. ^ a b "GNU Coreutils: ln invocation". gnu.org. Free Software Foundation, Inc. Retrieved 7 August 2015.
  3. ^ "ln - The Open Group Base Specifications Issue 7". pubs.opengroup.org. The IEEE and The Open Group. Retrieved 7 August 2015.
  4. ^ "Why are hard links not allowed to directories in UNIX/Linux?". unix.stackexchange.com. Retrieved 7 August 2015.
  5. ^ a b Loosemore, Sandra; Stallman, Richard M.; McGrath, Roland; Oram, Andrew; Drepper, Ulrich. The GNU C Library Reference Manual (PDF). Free Software Foundation, Inc. p. 392. Retrieved 7 August 2015.
  6. ^ "Speaking UNIX: It is all about the inode". ibm.com. IBM developerWorks. Retrieved 7 August 2015.
  7. ^ Bovet, Daniel P.; Cesati, Marco (2005). Understanding the Linux Kernel (3rd ed.). Boston, MA: Safari Tech Books Online. p. 14. ISBN 0596005652.
  8. ^ "readlink(1) - Linux man page". linux.die.net. Retrieved 7 August 2015.
  9. ^ "The Single UNIX Specification, Version 4 - Overview". unix.org. unix.org. Retrieved 7 August 2015.
  10. ^ "Shell & Utilities: Detailed Toc". pubs.opengroup.org. The IEEE and The Open Group. Retrieved 7 August 2015.
  11. ^ "ln". pubs.opengroup.org. The IEEE and The Open Group. Retrieved 7 August 2015.