How to Make or Create Symbolic Link in Unix or Linux 만들줄이나 유닉스 또는 리눅스에 대한 심볼릭 링크를 만듭니다

Symbolic link (also known as symlink or soft link) is a special type of file that has reference that points to another file or directory, in the form of an absolute or relative path. 심볼릭 링크 (심볼릭 링크 또는 소프트 링크로 알려져있다) 파일의 참조를 가진 특별한 유형을 가리키는 또 다른 파일이나 디렉토리는 절대 또는 상대 경로의 형태이다. Symbolic link can be used just like the target original file or folder, as it merely contains a text string that is interpreted and followed by the operating system to another file or directory. 그것은 단지 그 해석과 운영 시스템에 의해 다른 파일 또는 디렉터리를 따라 텍스트 문자열이 포함된 심볼릭 링크 대상처럼 원본 파일이나 폴더를 사용할 수있습니다.

Symbolic link is supported on most Unix-like (including Linux) operating systems, Windows Vista (see 심볼릭 링크를 대부분의 유닉스에서 지원됩니다 -처럼 (리눅스 등) 운영 체제, 윈도우 비스타 (참조 Windows Vista symbolic link, hard link and junction point Windows Vista의 심볼릭 링크, 하드 링크와 연결 지점 ) and to some degree in Windows 2000 and Windows XP. )과 Windows 2000 및 Windows XP에서 어느 정도합니다. Although symbolic link is pointing to a target, it operates independently of its target (deletion of symbolic link does not been affected), but allows program to behave as if operating directly on the target file. 심볼릭 링크 대상을 가리 키지만, 그것을 독립적으로 심볼릭 링크는 타겟의 (삭제하지 않는 영향을받은),하지만, 만약 대상 파일에 대해 직접적인 행동 프로그램을 운영있게 운영하고있다.

So how to create or make a symbolic link? 그래서 만들거나 심볼릭 링크를 만드는 방법? To create a symbolic, use the following command syntax: 상징적, 다음 명령 구문을 사용하여 작성하려면 :

ln -s [target directory or file] [symlink shortcut]

For example, to link the /usr/local/lib/example directory to /example, use the following command: 예를 들어, / 지역 / lib에 / / 예를 예를 디렉터리에서 다음 명령을 사용하는 경우 :를 / usr 링크

ln -s /usr/local/lib/example /example

After creating the symbolic link above, /example will point to /usr/local/lib/example, and when user changes directory (CD) to /example, OS shell will automatically change it to /usr/local/lib/example directory. 위의 심볼릭 링크를 만든 후, / 예를을 가리킨 것이다는 / usr / / lib는 / 예를 들어, 로컬 사용자가 변경되면 디렉토리 (CD를) / 예를 들어, 운영 체제 셸 자동으로 변경됩니다는 / usr / local / lib에 / 예를 디렉터리에있습니다.

IMPORTANT : This is a machine translated page which is provided "as is" without warranty. 중요 :이 기계는 "보증도없이있는 그대로"제공됩니다 페이지를 번역했다. Machine translation may be difficult to understand. 기계 번역을 이해하기 어려울 수있습니다. Please refer to 을 참조하시기 바랍니다 original English article 원래 영어 문서 whenever possible. 언제든 가능합니다.

Share and contribute or get technical support and help at 공유와 기여하거나 기술 지원과에 도움이 My Digital Life Forums 내 디지털 생활 포럼 .



Leave a Reply 회신을 남겨주세요

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> 이러한 태그 : title="">은 <a href="" 사용할 수있습니다 <abbr title=""> <acronym title="">의 <b> <blockquote cite=""> <cite>의 <code> <밤 날짜 = "">은 <em>가 <i> <q cite=""> <strike>의 <strong>

Subscribe to comments feature has been disabled. 코멘트를 구독 기능이 중지되었습니다. To receive notification of latest comments posted, subscribe to 게시 최신 코멘트의 알림을 수신하려면 가입 My Digital Life Comments RSS feed 내 디지털 생활 코멘트 RSS 피드 or 또는 register to receive 등록을받을 new comments in daily email digest. 매일 이메일에 새로운 의견을 소화했다.
Custom Search

New Articles 새 문서

Incoming Search Terms for the Article 에 대한 검색 약관받는 제

how to create a symbolic link in unix for a directory 유닉스에서 어떻게 디렉토리에 대한 심볼릭 링크를 만듭니다 - -