====== CentOS ====== * [[http://www.centos.org/|www.centos.org - The Community ENTerprise Operating System]] * [[linux:redhat|Redhat Linux]] 대체. 사실상 개발 중단됨. * [[linux:centos_stream|CentOS Stream]] 으로 대체됨. * [[linux:centos:config|CentOS 설정]] ===== Net Install ===== * 용량이 작은 NetInstall CD를 받으면 그 외의 패키지를 네트워크로 받아서 설치할 수 있다. ==== Centos 6 ==== * [[http://www.if-not-true-then-false.com/2011/centos-6-netinstall-network-installation/|Centos 6 netinstall network installation]] 참조. * URL을 선택하고, 6.4 64bit 버전의 경우 [[http://www.centos.org/download/mirrors/|CentOS 미러목록]]에서 서버를 선택하고 ''/centos/버전/os/아키텍처'' 선택. 예) http://ftp.daumkakao.com/centos/7/os/x86_64/ * 지원이 끝난 구버전은 http://vault.centos.org/ 를 통해서만 설치 가능하다. ===== 외부 저장소 ===== * [[http://fedoraproject.org/wiki/EPEL|EPEL - FedoraProject]] : Extra Packages for Enterprise Linux * [[https://ius.io/|IUS]] ===== VirtualBox 설치 ===== * **IO APIC**를 활성화 해야 VirtualBox 에서 설치 가능하다. ===== Centos 5.x에 Python 2.6, mod_wsgi 깔기 ===== * [[http://moinmo.in/HowTo/CentOSwithPython26|Centos 5.x with Python 2.6/mod_wsgi]] * EPEL로 Python 2.6을 깔고, [[http://code.google.com/p/modwsgi/downloads/list|mod_wsgi는 소스]]를 받아서 컴파일해서 깔아야 한다. su -c 'rpm -Uvh http://download.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm' # 버전은 알아서 바꿔서 EPEL설치 yum install python26 python26-devel yum install httpd # mod_wsgi installation tar -xzvf mod_wsgi-3.3.tar.gz cd mod_wsgi-3.3 ./configure --with-python=/usr/bin/python2.6 # or wherever you end up finding your python 2.6 binary make make install # httpd.conf에서 mod_wsgi 연결 LoadModule wsgi_module /usr/lib/httpd/modules/mod_wsgi.so # 경로 알아서 변경. ===== Docker ===== * [[https://github.com/CentOS/CentOS-Dockerfiles|Centos 기반 docker file 예제들]]