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