sa debian 8 ako nag setup bro
Ito autoscript para di ka mahirapan
Step 1: Sa clean setup
apt-get update
apt-get install nano
nano installvpn
tapos paste mo and code sa baba sa terminal at save. CTRL+O CTRL+X
Next, is execute mo ang bash
chmod 775 * && ./installvpn
automated na ang installation. press 1 nalang sa lahat ng tanong.
#-------------------------------------------------------
#Softether Auto Install Script
#For Debian 7 x64 (i686 will arrive soon)
#
#Script Coded by Faishal Akbar
#
You do not have permission to view the full content of this post.
Log in or register now.
#
#Script Based from tutorial by lincolin.hk
#
#Good Luck!
#-------------------------------------------------------
#Updating Repositories and Installing Development Packages
apt-get update -y
apt-get install build-essential -y
#Get the Softether Packages via wget and Save it into /root
cd /root
wget
You do not have permission to view the full content of this post.
Log in or register now.
tar zxf softether-vpnserver-v4.10-9473-beta-2014.07.12-linux-x64-64bit.tar.gz
#Making files, manual input needed
cd vpnserver
clear
make
cd ..
#Moving files to /usr/local
mv vpnserver /usr/local
#Set the permissions
cd /usr/local/vpnserver
chmod 600 *
chmod 700 vpncmd
chmod 700 vpnserver
#Downloading the Scripts for init.d and set Permission
cd /root
wget
You do not have permission to view the full content of this post.
Log in or register now. --no-check-certificate
mv vpnserver-debian.sh /etc/init.d/vpnserver
cd /etc/init.d
chmod 755 vpnserver
#Creating lock and last touching...
mkdir /var/lock/subsys
update-rc.d vpnserver defaults
/etc/init.d/vpnserver start
cd /usr/local/vpnserver
echo -----------------------------------------------------
echo Install finish!
echo check this step to check are installer is working properly
echo 1. vpnserver and vpncmd is on /usr/local/vpnserver
echo 2. /etc/init.d/vpnserver start can executed
echo if vpnserver can start, congratulations!
echo ------------------------------------------------------
exit