Penguin

Differences between version 5 and predecessor to the previous major change of SoftLink.

Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History

Newer page: version 5 Last edited on Wednesday, September 28, 2005 9:35:26 am by DavidHull Revert
Older page: version 3 Last edited on Saturday, May 7, 2005 12:25:39 pm by IanMcDonald Revert
@@ -1,5 +1,14 @@
-Another name for a SymLink
+A SoftLink is is a special type of directory entry that allows almost transparent references to another directory entry, typically a file or a directory
  
+<?plugin OldStyleTable  
 |__Feature__|__SoftLink__'s|__HardLink__'s 
 |Can cross filesystems? | Yes | No 
 |Can refer to directories? | Yes | No 
+?>  
+  
+On [Linux], soft links are called [symbolic links|SymLink].  
+  
+Softlinks are created with the following command line pattern.  
+ ln -s /pathto/origfile /pathto/newlink  
+  
+You must have appropriate permissions in the directory where you're creating the link for this to work.