LoginSignup
0
2

More than 5 years have passed since last update.

BIND のインストール(ソースから)

Posted at

メモ

手順

  1. 実行用ユーザとグループを追加する

    # groupadd named \
    && useradd -g named -d /var/named/ -s /bin/false named \
    && chown named:named /var/named/
    
  2. BIND のソースコードをダウンロードする

    # cd /usr/local/src/ \
    && curl -Lkvf https://www.isc.org/downloads/file/bind-9-11-3/?version=tar-gz -o bind-9.11.3.tar.gz \
    && sha256sum bind-9.11.3.tar.gz
    
    0d9dde14b2ec7f9cdc3b69f19540c7a2e4eee7b6c727965dfae48810965876f5  bind-9.11.3.tar.gz
    
  3. ファイルを展開する

    # tar xvzf bind-9.11.3.tar.gz
    
  4. ビルドする

    # cd /usr/local/src/bind-9.11.3/ \
    && ./configure \
    && make && make install
    
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2