사용자 도구

사이트 도구


linux:centos

CentOS

Net Install

  • 용량이 작은 NetInstall CD를 받으면 그 외의 패키지를 네트워크로 받아서 설치할 수 있다.

Centos 6

외부 저장소

VirtualBox 설치

  • IO APIC를 활성화 해야 VirtualBox 에서 설치 가능하다.

Centos 5.x에 Python 2.6, 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

linux/centos.txt · 마지막으로 수정됨: 2023/04/29 14:36 저자 kwon37xi