centos 5에서 설치시 rpm is not signed이라는 에러가 발생했다.
$ sudo yum install abc.rpm
Package abc.rpm is not signed
centos 5.8에서 rpm을 지우려면 /etc/yum.conf에서 작업을 진행해야 한다.
$ cat /etc/yum.conf
gpgcheck=1
gpgcheck의 값을 1로 변경한다.
$ sudo vi /etc/yum.conf
gpgcheck=0
설치는 이상없이 잘 작동된다.
$ sudo yum install abc.rpm
'unix and linux' 카테고리의 다른 글
centos 7 공식 문서 (0) | 2017.01.04 |
---|---|
[linux] 긴 프로세스 이름을 한 줄에 보여주기 (0) | 2017.01.03 |
[grafana] 자바 모니터링 (java monitoring) (0) | 2016.12.30 |
grep 없이 여러 데몬 kill하기 (0) | 2016.12.30 |
crontab 템플릿(template) (0) | 2016.12.29 |