From 6867d967990df9ebe9f151feac06c62ca0f0b80c Mon Sep 17 00:00:00 2001 From: Signor Pellegrino <68112357+flyrouter@users.noreply.github.com> Date: Mon, 9 Sep 2024 11:41:28 +0300 Subject: [PATCH] Update package-vtun.md, update notes --- en/package-vtun.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/en/package-vtun.md b/en/package-vtun.md index 8a05a12..62da887 100644 --- a/en/package-vtun.md +++ b/en/package-vtun.md @@ -26,7 +26,7 @@ To connect to the server, go to the extensions tab, specify the IP address or do Installing components and dependencies for Debian/Ubuntu ``` -apt install -y bison bridge-utils build-essential curl flex +apt install -y bison bridge-utils build-essential curl flex bridge-utils ``` ### Automatic compilation script @@ -34,7 +34,7 @@ apt install -y bison bridge-utils build-essential curl flex ``` #!/bin/bash # -# OpenIPC.org | v.20240824 +# OpenIPC.org | v.20240908 # LANG=C @@ -55,8 +55,8 @@ compile() { } install() { - mkdir -p ../_binary - mv -v vtund ../_binary/vtund_i386 + mkdir -p /usr/local/sbin + mv -v vtund /usr/local/sbin/vtund cd - rm -rf vtun-${vtun_version} }