본문 바로가기
Operating System/Linux

[Linux] CentOS 6 zsh 설치 오류 해결방법 (git clone of oh-my-zsh repo failed)

by 근육곰돌이 2020. 2. 18.
728x90

 

1. 증상

zsh 설치 오류 - Error: git clone of oh-my-zsh repo failed

 

2. 원인

만약 zsh 설치할 OS가 CentOS일 경우 zsh 설치 스크립트를 보면 아래와 같이 git clone하는 부분이 있을것이다. 
여기 부분에서 에러가 나는것이다. 보아하니, -c 옵션이 되지 않음을 직감적으로 알게된다. (사실 위의 사진보면 unknown switch c 라고 있다. ㅋㅋ

~]# git -c
Unknown option: -c

----------- 역시나 되지 않는군

~]# git --version
git version 1.7.1

 

3. 해결방법

현재 설치된 CentOS 6에서 권장된 git보다 상위 버전으로 설치 해야할듯 하다.

CentOS git 2.x 버전 이상 설치 한 후 다시 zsh을 설치 해보자

 

[Linux] CentOS git 2.x 이상 설치방법 (git upgrade)

2.x 설치 2.x 이상을 사용할 경우 Wandisco 사의 repository 를 설치한 후에 yum 으로 설치하면 된다. CentOS 7 CentOS 7 rpm -Uvh http:``//opensource``.wandisco.com``/centos/7/git/x86_64/wandisco-git-relea..

musclebear.tistory.com

 

-- zsh  설치 명령

sh -c "$(wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"

or

sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

 

 

이후에 잘된다

반응형