`
oywl2008
  • 浏览: 1050875 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

Create a Symbolic Link in UNIX

 
阅读更多

A symbolic link is a pointer to another file or directory. It can be used just like the original file or directory. A symbolic link appears in a long listing (ls -l) with a reference to the original file/directory. A symbolic link, as opposed to a hard link, is required when linking from one filesystem to another and can be used within a filesystem as well.


To create a symbolic link, the syntax of the command is similar to a copy or move command: existing file first, destination file second. For example, to link the directory /export/space/common/archive to /archive for easy access, use:

ln -s /export/space/common/archive /archive

To link the runtime control script /etc/init.d/httpd to /etc/rc2.d/S77httpd, use:

cd /etc/rc2.d
ln -s ../init.d/httpd S77httpd

See also: Create a hard link in UNIX

 

 

http://www.oschina.net/question/158589_56229

 

分享到:
评论

相关推荐

    符号链接 Symbolic Link.

    绿色软件操作简单,建立目录的符号链接 (symbolic link)

    dotnet 6 使用 CreateSymbolicLink 创建文件夹符号链接.rar

    在.NET 6中,开发者可以使用`System.IO.Abstractions`库中的`CreateSymbolicLink`方法来创建文件夹的符号链接。这是一个高级特性,允许程序在操作系统层面上建立一个指向另一个目录的快捷方式,而无需复制实际文件...

    符号链接测试工具symboliclink-testing-tools.zip

    symboliclink-testing-tools 是用来测试 Windows 上符号链接类型的工具,包括: ... 标签:symboliclink

    SymlinkCreator.exe

    文件夹链接小工具 Symlink Creator simplifies the process of creating symbolic and hard links ...Note: It is not possible to create a hard link from a network share. You must use a symbolic link instead.

    Matlab-Symbolic-Math-Toolbox.rar_Math Toolbox_matlab symbolic ma

    例如,你可以使用`inv(A)`来求解矩阵A的逆,或者`eig(A)`来计算其特征值和特征向量。 在微分方程的处理上,Symbolic Math Toolbox具有强大的能力。它可以求解常微分方程(ODE)和偏微分方程(PDE),甚至可以处理高...

    A symbolic analysis of relay and switching circuits-Claude E. Shannon.pdf

    标题《继电器和开关电路的符号分析》所指向的知识点主要集中在以下几个方面: 1. 继电器和开关电路的符号分析方法:文件标题直接指向了使用符号方法来分析继电器和开关电路的原理和特性,这暗示了文章将利用某种...

    Common LISP A Gentle Introduction to Symbolic Computation

    This highly accessible introduction to Lisp is suitable both for novices approaching their first programming language and experienced programmers interested in exploring a key tool for artificial ...

    7Z文件夹压缩及自解压 2软件

    7Z文件格式是一种高效且强大的压缩格式,由7-Zip软件创建。7-Zip是一款免费、开源的压缩和解压缩工具,它支持多种文件格式,包括7Z、ZIP、GZIP、BZIP2、TAR等。这款软件以其高压缩率和对AES-256加密的支持而受到广大...

    lisp经典教程common lisp A Gentle Introduction To Symbolic Computation

    《Common Lisp: A Gentle Introduction to Symbolic Computation》由David S. Touretzky编写,旨在为读者提供一个友好且互动的学习环境,通过丰富的数据结构和简洁的语法来教授Lisp编程的基础知识。 #### 二、为何...

    Mathematica Symbolic Toolbox for MATLAB

    1) The Mathematica Symbolic Toolbox for MATLAB works with newer (MLVERSION in mathlink.h >= 3) versions of Mathematica (I have not tested the new version on the Macintosh). This version has been ...

    symbolic.rar_symbolicmathtoolbox

    symbolic.rar_symbolicmathtoolbox下载为了不让你在matlab中无法使用sym函数而继续一筹莫展,我把这个符号安装包发了上来,就是为了帮助像大家这样,当初安装matlab没有选择符号安装包功能的大学生。具体的方法就是...

    解决MATLab2012b Symbolic_Toolbox License 许可证无效的问题

    Cannot find a license for Symbolic_Toolbox. Troubleshoot this issue by visiting: http://www.mathworks.com/support/lme/R2012b/5 Diagnostic Information: Feature: Symbolic_Toolbox License path: C:\...

    Unix shell programming in 24 hours.pdf

    ** In the context of Unix and shell programming, a command refers to an instruction or a set of instructions that are executed by the shell or another program. Commands can be simple, like `ls` for ...

    matlab.rar_matlab符号函数_symbolic matlab_symbolic toolbox

    在MATLAB中,符号函数(Symbolic Functions)是用于处理数学表达式的一种强大工具,它允许用户以解析形式而非数值形式进行计算。`symbolic toolbox`(符号工具箱)是MATLAB提供的一套用于处理符号数学的扩展库,它...

    ClearCanvas-13.2

    4. Using a command-line window, create a symbolic link within the ClearCanvas directory called "ReferencedAssemblies" that points to ..\ReferencedAssemblies. In Windows 7, the command-line to do ...

    ReferencedAssemblies-master

    4. Using a command-line window, create a symbolic link within the ClearCanvas directory called "ReferencedAssemblies" that points to ..\ReferencedAssemblies. In Windows 7, the command-line to do ...

    Unix环境高级编程apeu加链接库

    在Unix系统中,高级编程是开发复杂应用程序的关键,而《Unix环境高级编程》(Advanced Programming in the Unix Environment,简称APUE)是这方面的一本经典教材。这本书深入探讨了Unix系统接口,包括系统调用、C...

    类Unix的文件管理系统(课设)

    在类Unix系统中,文件可以通过硬链接(hard link)和软链接(symbolic link)创建多个访问路径。硬链接指向相同的Inode,而软链接类似于Windows的快捷方式,指向另一个文件的位置。 **挂载与文件系统类型** Unix...

    操作系统学习-unix资料

    此外,Unix还提供了软链接(symbolic link)和硬链接(hard link)的概念,扩展了文件的使用方式。 Unix还具有强大的进程管理机制。它支持多任务并行运行,通过fork创建新进程,exec加载新的程序,waitpid等待子...

    unix编程艺术中文版

    还包括软链接(symbolic link)和硬链接(hard link)的概念,以及I/O操作的低级接口,如打开(open)、读取(read)、写入(write)和关闭(close)函数。 进程管理和信号(signal)机制在Unix编程中占有重要地位...

Global site tag (gtag.js) - Google Analytics