Difference between revisions of "Symbolic link"

From Computer History Wiki
Jump to: navigation, search
m (Jnc moved page Symbolic links to Symbolic link without leaving a redirect: SIngular)
(Unlink this ITS, there is another.)
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
* ITS Reference Manual 1.5 from 1969 mentions links.  1.4 from 1968 doesn't.
+
A '''symbolic link''' is a connection between one [[file]] ''name'' in a [[file system]] and another (the 'target'; which does not necessarily need to exist at the time the symbolic link is created), such that references to the first name wind up at the second.
* The Multics paper "A General-Purpose File System For Secondary Storage" from 1965 describes symbolic links.
 
* CTSS supposedly had links.
 
  
{{stub}}
+
They differ from [[hard link]]s in that if the target file is deleted, and replaced with a different file, references to the symbolic link will go to the new file.
 +
 
 +
==History==
 +
 
 +
* [[Incompatible Timesharing System|ITS]] Reference Manual 1.5 from 1969 mentions links.  1.4 from 1968 doesn't.
 +
* The [[Multics]] paper "A General-Purpose File System For Secondary Storage" from 1965 describes symbolic links.
 +
* [[CTSS]] supposedly had links.
 +
* [http://www.mit.edu/~cbf/thesis.htm Charles Frankston wrote in 1984]: "Until recently symbolic file system links seemed to be an MIT secret, being found only in [[Multics]] and two homegrown MIT systems: ITS for the [[PDP-10]] and [[MagicSix]] for [[Interdata_8/32|Interdata/Perkin-Elmer 32 bit machines]]. However, symbolic links have been added to [[4.2 BSD|release 4.2 of Berkeley Unix]]."
 +
 
 +
{{semi-stub}}
 +
 
 +
[[Category: OS Basics]]

Latest revision as of 07:32, 6 September 2023

A symbolic link is a connection between one file name in a file system and another (the 'target'; which does not necessarily need to exist at the time the symbolic link is created), such that references to the first name wind up at the second.

They differ from hard links in that if the target file is deleted, and replaced with a different file, references to the symbolic link will go to the new file.

History