Last active
February 4, 2024 16:53
-
-
Save 1nikolas/4efbfb6b0d37eba8c9ab471c55f5e892 to your computer and use it in GitHub Desktop.
Revisions
-
1nikolas revised this gist
Feb 4, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,6 +5,6 @@ if [ "$OS" == "x86_64" ]; then sudo wget -O /usr/bin/badvpn-udpgw "https://raw.githubusercontent.com/daybreakersx/premscript/master/badvpn-udpgw64" fi sudo touch /etc/rc.local echo "\nscreen -AmdS badvpn badvpn-udpgw --listen-addr 127.0.0.1:7300" | sudo tee -a /etc/rc.local sudo chmod +x /usr/bin/badvpn-udpgw sudo screen -AmdS badvpn badvpn-udpgw --listen-addr 127.0.0.1:7300 -
1nikolas revised this gist
Mar 4, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,6 +5,6 @@ if [ "$OS" == "x86_64" ]; then sudo wget -O /usr/bin/badvpn-udpgw "https://raw.githubusercontent.com/daybreakersx/premscript/master/badvpn-udpgw64" fi sudo touch /etc/rc.local sudo echo "\nscreen -AmdS badvpn badvpn-udpgw --listen-addr 127.0.0.1:7300" >> /etc/rc.local sudo chmod +x /usr/bin/badvpn-udpgw sudo screen -AmdS badvpn badvpn-udpgw --listen-addr 127.0.0.1:7300 -
1nikolas revised this gist
Mar 3, 2019 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,6 +4,7 @@ sudo wget -O /usr/bin/badvpn-udpgw "https://raw.githubusercontent.com/daybreaker if [ "$OS" == "x86_64" ]; then sudo wget -O /usr/bin/badvpn-udpgw "https://raw.githubusercontent.com/daybreakersx/premscript/master/badvpn-udpgw64" fi sudo touch /etc/rc.local sudo sed -i '$ i\screen -AmdS badvpn badvpn-udpgw --listen-addr 127.0.0.1:7300' /etc/rc.local sudo chmod +x /usr/bin/badvpn-udpgw sudo screen -AmdS badvpn badvpn-udpgw --listen-addr 127.0.0.1:7300 -
1nikolas created this gist
Mar 3, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ #!/bin/sh OS=`uname -m`; sudo wget -O /usr/bin/badvpn-udpgw "https://raw.githubusercontent.com/daybreakersx/premscript/master/badvpn-udpgw" if [ "$OS" == "x86_64" ]; then sudo wget -O /usr/bin/badvpn-udpgw "https://raw.githubusercontent.com/daybreakersx/premscript/master/badvpn-udpgw64" fi sudo sed -i '$ i\screen -AmdS badvpn badvpn-udpgw --listen-addr 127.0.0.1:7300' /etc/rc.local sudo chmod +x /usr/bin/badvpn-udpgw sudo screen -AmdS badvpn badvpn-udpgw --listen-addr 127.0.0.1:7300