From 40416853db36a24694959a12e33e0feb9a893945 Mon Sep 17 00:00:00 2001 From: Bandie Date: Sun, 27 Jan 2019 10:53:16 +0100 Subject: [PATCH] Updated Building from source with Ubuntu Xenial (if you really want it) (markdown) --- ...h-Ubuntu-Xenial-(if-you-really-want-it).md | 32 ++++++++++++++----- 1 file changed, 24 insertions(+), 8 deletions(-) diff --git a/Building-from-source-with-Ubuntu-Xenial-(if-you-really-want-it).md b/Building-from-source-with-Ubuntu-Xenial-(if-you-really-want-it).md index 6c25313..b45e546 100644 --- a/Building-from-source-with-Ubuntu-Xenial-(if-you-really-want-it).md +++ b/Building-from-source-with-Ubuntu-Xenial-(if-you-really-want-it).md @@ -4,13 +4,29 @@ So... ## Build it yourself ## -1. `sudo apt install libpam0g-dev cryptsetup libcunit1 libcunit1-dev gettext po4a dialog autopoint autoconf libtool` -2. Go into the pam_panic directory you've downloaded before. -3. `autoreconf -i` -4. `./configure --prefix=/usr` -5. `make` -6. `sudo make install` - -Done. +1. Install the build dependencies via shell + ```console + sudo apt install libpam0g-dev cryptsetup libcunit1 libcunit1-dev gettext po4a dialog autopoint autoconf libtool + ``` +2. Change into the pam_panic which you've downloaded and extracted before + ```console + cd pam_panic + ``` +3. Install the autoconf files into the project using + ```console + autoreconf -i + ``` +4. Configure autoconf to install pam_panic into your realâ„¢ system directory + ```console + ./configure --prefix=/usr + ``` +5. Build the source with + ```console + make + ``` +6. Install pam_panic with + ```console + sudo make install + ``` Now you can run `pam_panic_config` and do a config!. \ No newline at end of file