From 599c6b285bb9d2a50bae00f137e1c4a4b7b9985b Mon Sep 17 00:00:00 2001 From: oliveiraleo Date: Tue, 26 Sep 2023 12:10:27 -0300 Subject: [PATCH 1/2] Updates the GTP-U module version and the APT commands on install free5gc page --- docs/guide/3-install-free5gc.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guide/3-install-free5gc.md b/docs/guide/3-install-free5gc.md index 31283786..8fdd0103 100644 --- a/docs/guide/3-install-free5gc.md +++ b/docs/guide/3-install-free5gc.md @@ -125,7 +125,7 @@ uname -r 2. Retrieve the 5G GTP-U kernel module using `git` and build it ```bash -git clone -b v0.8.1 https://github.com/free5gc/gtp5g.git +git clone -b v0.8.2 https://github.com/free5gc/gtp5g.git cd gtp5g make sudo make install @@ -152,8 +152,8 @@ sudo apt remove yarn curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - -sudo apt-get update -sudo apt-get install -y nodejs yarn +sudo apt update +sudo apt install -y nodejs yarn ``` 2. Build WebConsole From 93648177caedf08fefa97687a9a58cda0c2bd1d5 Mon Sep 17 00:00:00 2001 From: oliveiraleo Date: Tue, 26 Sep 2023 19:35:14 -0300 Subject: [PATCH 2/2] Removes the command to switch back to NodeJS v12 in install free5gc page --- docs/guide/3-install-free5gc.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/guide/3-install-free5gc.md b/docs/guide/3-install-free5gc.md index 8fdd0103..a31e08d7 100644 --- a/docs/guide/3-install-free5gc.md +++ b/docs/guide/3-install-free5gc.md @@ -151,7 +151,6 @@ sudo apt remove cmdtest sudo apt remove yarn curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list -curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - sudo apt update sudo apt install -y nodejs yarn ```