네임서버
bind 9 소스 컴파일 설치
변군이글루
2013. 11. 8. 00:09
반응형
bind-9.9.4-P1 소스 컴파일 설치(complie)
소스 코드 다운로드
wget http://ftp.isc.org/isc/bind9/9.9.4-P1/bind-9.9.4-P1.tar.gz
압축 해제
tar xzf bind-9.9.4-P1.tar.gz
cd bind-9.9.4-P1
환경 설정
./configure --prefix=/usr/local/bind-9.9.4-P1 --sysconfdir=/etc --localstatedir=/var
Configuration summary:
------------------------------------------------------------------------
Optional features enabled:
GSS-API (--with-gssapi)
Print backtrace on crash (--enable-backtrace)
Use symbol table for backtrace, named only (--enable-symtable)
Dynamically loadable zone (DLZ) drivers:
None
Features disabled or unavailable on this platform:
Multiprocessing support (--enable-threads)
Fixed RRset order (--enable-fixed-rrset)
Automated Testing Framework (--with-atf)
AAAA filtering (--enable-filter-aaaa)
PKCS#11/Cryptoki support (--with-pkcs11)
GOST algorithm support (--with-gost)
ECDSA algorithm support (--with-ecdsa)
Python tools (--with-python)
XML statistics (--with-libxml2)
컴파일
make -j$(nproc)
설치
sudo make install
반응형