From: Mukund Sivaraman Date: Fri, 26 Jul 2013 10:56:32 +0000 (+0530) Subject: [3022] Don't refer to install prefix in every command X-Git-Tag: bind10-1.2.0beta1-release~319^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f0b820ed66c3dea6e9045bd8568af26cfa8d36e;p=thirdparty%2Fkea.git [3022] Don't refer to install prefix in every command --- diff --git a/doc/guide/bind10-guide.xml b/doc/guide/bind10-guide.xml index 891fad28dc..75718c389c 100644 --- a/doc/guide/bind10-guide.xml +++ b/doc/guide/bind10-guide.xml @@ -438,21 +438,29 @@ $ ./configure - Install it as root (to default /usr/local): + Install it as root (by default to prefix + /usr/local/): $ make install + + Change directory to the install prefix (by default + /usr/local/): + $ cd /usr/local/ + + + Create a user for yourself: - $ /usr/local/sbin/b10-cmdctl-usermgr add root + $ sbin/b10-cmdctl-usermgr add root and enter a newly chosen password when prompted. Start the server (as root): - $ /usr/local/sbin/bind10 + $ sbin/bind10 @@ -461,7 +469,7 @@ $ ./configure configuration. In another console, enable the authoritative DNS service (by using the bindctl utility to configure the b10-auth component to - run): $ /usr/local/bin/bindctl + run): $ bin/bindctl (Login with the username and password you used above to create a user.) > config add Init/components b10-auth @@ -481,7 +489,7 @@ $ ./configure Load desired zone file(s), for example: - $ /usr/local/bin/b10-loadzone -c '{"database_file": "/usr/local/var/bind10/zone.sqlite3"}' your.zone.example.org your.zone.file + $ bin/b10-loadzone -c '{"database_file": "/usr/local/var/bind10/zone.sqlite3"}' your.zone.example.org your.zone.file (If you use the sqlite3 data source with the default DB file, you can omit the -c option).