1 .\" This manpage is Copyright (C) 1992 Drew Eckhardt;
2 .\" and Copyright (C) 1993 Michael Haardt, Ian Jackson.
3 .\" and Copyright (C) 2006, 2014 Michael Kerrisk
5 .\" %%%LICENSE_START(VERBATIM)
6 .\" Permission is granted to make and distribute verbatim copies of this
7 .\" manual provided the copyright notice and this permission notice are
8 .\" preserved on all copies.
10 .\" Permission is granted to copy and distribute modified versions of this
11 .\" manual under the conditions for verbatim copying, provided that the
12 .\" entire resulting derived work is distributed under the terms of a
13 .\" permission notice identical to this one.
15 .\" Since the Linux kernel and libraries are constantly changing, this
16 .\" manual page may be incorrect or out-of-date. The author(s) assume no
17 .\" responsibility for errors or omissions, or for damages resulting from
18 .\" the use of the information contained herein. The author(s) may not
19 .\" have taken the same level of care in the production of this manual,
20 .\" which is licensed free of charge, as they might when working
23 .\" Formatted or processed versions of this manual, if unaccompanied by
24 .\" the source, must acknowledge the copyright and authors of this work.
27 .\" Modified 1993-07-24 by Rik Faith
28 .\" Modified 1996-04-26 by Nick Duffek <nsd@bbc.com>
29 .\" Modified 1996-11-06 by Eric S. Raymond <esr@thyrsus.com>
30 .\" Modified 1997-01-31 by Eric S. Raymond <esr@thyrsus.com>
31 .\" Modified 2004-06-23 by Michael Kerrisk <mtk.manpages@gmail.com>
33 .TH SYMLINK 2 2021-03-22 "Linux" "Linux Programmer's Manual"
35 symlink, symlinkat \- make a new name for a file
38 .B #include <unistd.h>
40 .BI "int symlink(const char *" target ", const char *" linkpath );
42 .BR "#include <fcntl.h> " "/* Definition of " AT_* " constants */"
43 .B #include <unistd.h>
45 .BI "int symlinkat(const char *" target ", int " newdirfd \
46 ", const char *" linkpath );
50 Feature Test Macro Requirements for glibc (see
51 .BR feature_test_macros (7)):
56 _XOPEN_SOURCE >= 500 || _POSIX_C_SOURCE >= 200112L
57 .\" || _XOPEN_SOURCE && _XOPEN_SOURCE_EXTENDED
58 || /* Glibc <= 2.19: */ _BSD_SOURCE
64 _POSIX_C_SOURCE >= 200809L
70 creates a symbolic link named
72 which contains the string
75 Symbolic links are interpreted at run time as if the contents of the
76 link had been substituted into the path being followed to find a file or
79 Symbolic links may contain
81 path components, which (if used at the start of the link) refer to the
82 parent directories of that in which the link resides.
84 A symbolic link (also known as a soft link) may point to an existing
85 file or to a nonexistent one; the latter case is known as a dangling
88 The permissions of a symbolic link are irrelevant; the ownership is
89 ignored when following the link, but is checked when removal or
90 renaming of the link is requested and the link is in a directory with
103 system call operates in exactly the same way as
105 except for the differences described here.
107 If the pathname given in
109 is relative, then it is interpreted relative to the directory
110 referred to by the file descriptor
112 (rather than relative to the current working directory of
113 the calling process, as is done by
115 for a relative pathname).
125 is interpreted relative to the current working
126 directory of the calling process (like
135 On success, zero is returned.
136 On error, \-1 is returned, and
138 is set to indicate the error.
142 Write access to the directory containing
144 is denied, or one of the directories in the path prefix of
146 did not allow search permission.
148 .BR path_resolution (7).)
151 The user's quota of resources on the filesystem has been exhausted.
152 The resources could be inodes or disk blocks, depending on the filesystem
160 .IR target " or " linkpath " points outside your accessible address space."
163 An I/O error occurred.
166 Too many symbolic links were encountered in resolving
170 .IR target " or " linkpath " was too long."
173 A directory component in
175 does not exist or is a dangling symbolic link, or
182 Insufficient kernel memory was available.
185 The device containing the file has no room for the new directory
189 A component used as a directory in
191 is not, in fact, a directory.
194 The filesystem containing
196 does not support the creation of symbolic links.
200 is on a read-only filesystem.
202 The following additional errors can occur for
207 is not a valid file descriptor.
211 is a relative pathname and
213 refers to a directory that has been deleted.
219 is a file descriptor referring to a file other than a directory.
222 was added to Linux in kernel 2.6.16;
223 library support was added to glibc in version 2.4.
226 SVr4, 4.3BSD, POSIX.1-2001, POSIX.1-2008.
227 .\" SVr4 documents additional error codes EDQUOT and ENOSYS.
230 .\" re multiple files with the same name, and NFS.
239 Deleting the name referred to by a symbolic link will actually delete the
240 file (unless it also has other hard links).
241 If this behavior is not desired, use
244 On older kernels where
246 is unavailable, the glibc wrapper function falls back to the use of
250 is a relative pathname,
251 glibc constructs a pathname based on the symbolic link in
253 that corresponds to the
266 .BR path_resolution (7),