From f6d556828c85956f3104b1cb7078b9941bd988e7 Mon Sep 17 00:00:00 2001 From: Xavier Date: Fri, 16 Mar 2018 09:47:06 +0100 Subject: [PATCH] Create Ubuntu-17.10.md and add more prupose After testing Can also bu used to correct [Installing cjdns on Ubuntu 16.04](https://github.com/hyperboria/docs/blob/master/install/ubuntu-16.04.md) command lines error. Then, I wrote a quick starter in french with installation, config, password with fix about `cat` command writting, available [here](https://github.com/XavCC/xavcc.github.io/blob/master/_posts/2018-03-12-hyperboria.md) --- install/ubutuntu-17.10.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 install/ubutuntu-17.10.md diff --git a/install/ubutuntu-17.10.md b/install/ubutuntu-17.10.md new file mode 100644 index 00000000..f4f4d37b --- /dev/null +++ b/install/ubutuntu-17.10.md @@ -0,0 +1,21 @@ +# Installing cjdns on Ubuntu 17.10 + +This is a short guide how to setup an Ubuntu cjdns box. + +## Install packages + + apt-get install nodejs make gcc git python 2.7 + +## Clone, compile, install + +``` +cd /opt +git clone https://github.com/cjdelisle/cjdns.git +cd cjdns +./do +ln -s /opt/cjdns/cjdroute /usr/bin +umask 077 && sudo ./cjdroute --genconf | sudo tee /etc/cdjroute.conf +sudo cp contrib/systemd/*.service /etc/systemd/system/ +systemctl enable cjdns +systemctl start cjdns +```