From e05aca0e83b77f7538928aa2409724e3ca5bb050 Mon Sep 17 00:00:00 2001 From: samvaio Date: Mon, 24 Oct 2016 05:32:11 +0530 Subject: [PATCH 1/4] =?UTF-8?q?More=20Magic=20=E2=9C=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/guides/Linux Guide.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/docs/guides/Linux Guide.md b/docs/guides/Linux Guide.md index 87775703..adf3e9c6 100644 --- a/docs/guides/Linux Guide.md +++ b/docs/guides/Linux Guide.md @@ -97,12 +97,26 @@ sudo apt-get update && sudo apt-get install ffmpeg -y` ####Getting NadekoBot **10)** +`cd ~` +`curl -L https://github.com/Kwoth/NadekoBot-BashScript/raw/master/nadeko_installer.sh | sh` +*Skip steps 10.5-11.5 and continue to run the bot, if you see errors while running, do the below steps again.* + +**10.5)** `cd ~ && git clone -b 1.0 --recursive https://github.com/Kwoth/NadekoBot.git` ####Building NadekoBot **11)** `cd ~/NadekoBot/ && dotnet restore && cd ~/NadekoBot/src/NadekoBot/ && dotnet build --configuration Release` +*if you see error, try:* + +**11.5)** +`cd ~/NadekoBot/discord.net` +`dotnet restore -s https://dotnet.myget.org/F/dotnet-core/api/v3/index.json` +`dotnet restore` +`cd ~/NadekoBot/src/NadekoBot/` +`dotnet restore` +`dotnet build --configuration Release` ####Setting up NadekoBot @@ -130,8 +144,7 @@ sudo apt-get update && sudo apt-get install ffmpeg -y` Go back to **PuTTY**, `(hope its still running xD)` **12)** -Type/ Copy and hit **Enter**. - +(Type or Copy and hit **Enter**) `tmux new -s nadeko` `cd NadekoBot/src/NadekoBot/` **^this will create a new session named “nadeko”** *(you can replace “nadeko” with anything you prefer and remember its your session name)* so you can run the bot in background without having to keep running PuTTY in the background. From 1e6ef2a7b4d79e050c86ca3e4d159bf42016cc2a Mon Sep 17 00:00:00 2001 From: samvaio Date: Mon, 24 Oct 2016 05:39:27 +0530 Subject: [PATCH 2/4] Update Linux Guide.md --- docs/guides/Linux Guide.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/guides/Linux Guide.md b/docs/guides/Linux Guide.md index adf3e9c6..672dbd16 100644 --- a/docs/guides/Linux Guide.md +++ b/docs/guides/Linux Guide.md @@ -97,8 +97,8 @@ sudo apt-get update && sudo apt-get install ffmpeg -y` ####Getting NadekoBot **10)** -`cd ~` -`curl -L https://github.com/Kwoth/NadekoBot-BashScript/raw/master/nadeko_installer.sh | sh` +```cd ~ +curl -L https://github.com/Kwoth/NadekoBot-BashScript/raw/master/nadeko_installer.sh | sh``` *Skip steps 10.5-11.5 and continue to run the bot, if you see errors while running, do the below steps again.* **10.5)** @@ -111,12 +111,12 @@ sudo apt-get update && sudo apt-get install ffmpeg -y` *if you see error, try:* **11.5)** -`cd ~/NadekoBot/discord.net` -`dotnet restore -s https://dotnet.myget.org/F/dotnet-core/api/v3/index.json` -`dotnet restore` -`cd ~/NadekoBot/src/NadekoBot/` -`dotnet restore` -`dotnet build --configuration Release` +```cd ~/NadekoBot/discord.net +dotnet restore -s https://dotnet.myget.org/F/dotnet-core/api/v3/index.json +dotnet restore +cd ~/NadekoBot/src/NadekoBot/ +dotnet restore +dotnet build --configuration Release``` ####Setting up NadekoBot From cac89bf54e5d9c29276cc5200078d13750b1cce7 Mon Sep 17 00:00:00 2001 From: samvaio Date: Mon, 24 Oct 2016 05:41:04 +0530 Subject: [PATCH 3/4] Added few changes --- docs/guides/Linux Guide.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/guides/Linux Guide.md b/docs/guides/Linux Guide.md index 672dbd16..89aff79f 100644 --- a/docs/guides/Linux Guide.md +++ b/docs/guides/Linux Guide.md @@ -144,7 +144,6 @@ dotnet build --configuration Release``` Go back to **PuTTY**, `(hope its still running xD)` **12)** -(Type or Copy and hit **Enter**) `tmux new -s nadeko` `cd NadekoBot/src/NadekoBot/` **^this will create a new session named “nadeko”** *(you can replace “nadeko” with anything you prefer and remember its your session name)* so you can run the bot in background without having to keep running PuTTY in the background. From 3c0829e40aa99c356ef95bb981849cb86958dad0 Mon Sep 17 00:00:00 2001 From: samvaio Date: Mon, 24 Oct 2016 05:48:49 +0530 Subject: [PATCH 4/4] Additions and Kwoth's Magic from Magical Girl Mirai Okay sorry for spamming pull requestm this will be the last one, off to bed Sam --- docs/guides/Linux Guide.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/guides/Linux Guide.md b/docs/guides/Linux Guide.md index 89aff79f..7cb3049d 100644 --- a/docs/guides/Linux Guide.md +++ b/docs/guides/Linux Guide.md @@ -97,26 +97,26 @@ sudo apt-get update && sudo apt-get install ffmpeg -y` ####Getting NadekoBot **10)** -```cd ~ -curl -L https://github.com/Kwoth/NadekoBot-BashScript/raw/master/nadeko_installer.sh | sh``` +- `cd ~` +- `curl -L https://github.com/Kwoth/NadekoBot-BashScript/raw/master/nadeko_installer.sh | sh` *Skip steps 10.5-11.5 and continue to run the bot, if you see errors while running, do the below steps again.* **10.5)** -`cd ~ && git clone -b 1.0 --recursive https://github.com/Kwoth/NadekoBot.git` +- `cd ~ && git clone -b 1.0 --recursive https://github.com/Kwoth/NadekoBot.git` ####Building NadekoBot **11)** -`cd ~/NadekoBot/ && dotnet restore && cd ~/NadekoBot/src/NadekoBot/ && dotnet build --configuration Release` +- `cd ~/NadekoBot/ && dotnet restore && cd ~/NadekoBot/src/NadekoBot/ && dotnet build --configuration Release` *if you see error, try:* **11.5)** -```cd ~/NadekoBot/discord.net -dotnet restore -s https://dotnet.myget.org/F/dotnet-core/api/v3/index.json -dotnet restore -cd ~/NadekoBot/src/NadekoBot/ -dotnet restore -dotnet build --configuration Release``` +- `cd ~/NadekoBot/discord.net` +- `dotnet restore -s https://dotnet.myget.org/F/dotnet-core/api/v3/index.json` +- `dotnet restore` +- `cd ~/NadekoBot/src/NadekoBot/` +- `dotnet restore` +- `dotnet build --configuration Release` ####Setting up NadekoBot