From 37119a249e1b7bedd63dd062c7068b53441d03b9 Mon Sep 17 00:00:00 2001 From: wzeth Date: Thu, 27 Oct 2016 02:59:36 -0400 Subject: [PATCH 1/3] Create building-ubuntu16.10 --- doc/building-ubuntu16.10 | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 doc/building-ubuntu16.10 diff --git a/doc/building-ubuntu16.10 b/doc/building-ubuntu16.10 new file mode 100644 index 0000000..a12710c --- /dev/null +++ b/doc/building-ubuntu16.10 @@ -0,0 +1,16 @@ +Install the initial depencies: + + # apt-get -y --no-install-recommends install imagemagick libsodium-dev sox git ca-certificates \ + libav-tools build-essential tcl8.5 postgresql postgresql-contrib golang-go + +Configure PostgreSQL: + + # su - postgres -c "createuser --pwprompt --encrypted srnd" + # su - postgres -c "createdb srnd" + +Install nntpchan: + + # cd /opt + # git clone https://github.com/majestrate/nntpchan.git + # cd nntpchan + # ./build.sh From 190321b4c458eb5a1b28e01c4452e85d773e81e5 Mon Sep 17 00:00:00 2001 From: wzeth Date: Thu, 27 Oct 2016 03:00:42 -0400 Subject: [PATCH 2/3] Rename building-ubuntu16.10 to building-ubuntu16.10.md --- doc/{building-ubuntu16.10 => building-ubuntu16.10.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename doc/{building-ubuntu16.10 => building-ubuntu16.10.md} (100%) diff --git a/doc/building-ubuntu16.10 b/doc/building-ubuntu16.10.md similarity index 100% rename from doc/building-ubuntu16.10 rename to doc/building-ubuntu16.10.md From 84cdf459ae5dd4bef8738ee778420e0b1f50e6bd Mon Sep 17 00:00:00 2001 From: wzeth Date: Thu, 27 Oct 2016 03:06:57 -0400 Subject: [PATCH 3/3] fix typo depencies :DDDDD --- doc/building-ubuntu16.10.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/building-ubuntu16.10.md b/doc/building-ubuntu16.10.md index a12710c..4b506f2 100644 --- a/doc/building-ubuntu16.10.md +++ b/doc/building-ubuntu16.10.md @@ -1,4 +1,4 @@ -Install the initial depencies: +Install the initial dependencies: # apt-get -y --no-install-recommends install imagemagick libsodium-dev sox git ca-certificates \ libav-tools build-essential tcl8.5 postgresql postgresql-contrib golang-go