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 내 디지털 생활 포럼 .
Related Articles 관련 기사
- Change Group Ownership of Symbolic Links in Unix or Linux 그룹 소유권을 변경 심볼릭 링크의 유닉스 또는 리눅스에서
- How to Mount USB Disk Drive in UNIX or Linux 어떻게 USB 디스크 드라이브를 탑재하고 UNIX 또는 Linux에서
- Refresh Linux or Unix Path Environmental Variables with rehash 새로 고침을 리눅 스나 유닉스 환경 변수를 재탕과 함께 경로
- How to Change or Spoof MAC Address in Windows XP, Vista, Server 2003/2008, Mac OS X, Unix and Linux MAC 주소 스푸핑하는 방법 또는 윈도우 XP, 비스타, 서버 2,008분의 2,003에서 변경하려면, 맥 OS X, 유닉스와 리눅스
- Create Symbolic Links, Hard Links and Directory Junctions in Vista with MKLINK Vista에서 MKLINK와 심볼릭 링크 하드 링크와 디렉토리 교차점 만들기
- Open, Extract and Convert DAA, ISO and BIN Files in Linux with Free PowerISO for Linux 열기, 추출 및 변환의 DAA, 빈은 ISO 파일을 리눅스에서 무료 PowerISO와 Linux 용
- Find Files that are Modified Today (or Since Certain Time Ago) in Unix 수정된 파일을 찾아 오늘 (또는 특정 시간 전) 이후 유닉스에서
- (Enhance) Concurrent Capable and Big vg Format Volume Group in AIX Unix (강화)를 동시 지원 및 프로방스 유닉스에 형식 빅 볼륨 그룹 vg
- Create New Table by Selecting Data from Other Tables with CREATE TABLE AS 테이블을 만들으로 다른 테이블에서 데이터를 선택하여 새 테이블 만들기
- Cheapest Linux Box Ever 싼 리눅스 상자에 적

























