System 5

[centos] 추가 repo 설치

install yum external repo CentOS에서 기본적으로 제공하는 base repo에는 제공되는 패키지가 부족하기 때문에 대부분 추가 repo를 셋팅해서 사용합니다. yum repo list 확인 sudo yum repolist install epel repo 거의 기본 설치 centos - 5,6,7 sudo yum install epel-release -y 참고 URL https://fedoraproject.org/wiki/EPEL install ius repo apache, php 최신 버전이 올라오는 것 같습니다. 저같은 경우 centos7에서 python3.5 버전 및 yum replace plugin 설치를 위해서 사용했습니다. centos - 6,7 sudo yum insta..

System 2018.12.10

[centos5] centos5 yum base repo 변경

centos5 지원 중단으로 yum 사용이 불가능 하다. CentOS5를 계속 써야하는 상황이라면 아래와 같이 yum base repo 수정하여 사용 가능하다. /etc/yum.repo.d/CentOS-Base.repo 수정# CentOS-Base.repo # # The mirror system uses the connecting IP address of the client and the # update status of each mirror to pick mirrors that are updated to and # geographically close to the client should use this for CentOS updates # unless you are manually picking ot..

System 2018.12.10

[System Programming] IPC Protocol

[System Programming] IPC 리눅스 프로세스간 통신 프로토콜입니다. 리눅스에서 다양한 방식의 IPC 통신 방법을 제공합니다. 분류는 위키에서 나눈 방식으로 구분하겠습니다.MethodShort DescriptionProvided by (operating systems or other environments)FileA record stored on disk, or a record synthesized on demand by a file server, which can be accessed by multiple processes.Most operating systemsSignalA system message sent from one process to another, not usually us..

System 2015.09.15