Updated Linux Installation (markdown)

DracoMilesX
2016-08-31 15:08:39 +02:00
parent 0cac6265ec
commit 46d737ae32

@@ -10,14 +10,14 @@ First update your machine and the necessary packages with:
Afterwards run the following command:
`apt-get install build-essential libssl-dev openssh-server openssh-client python python-dev python-pip python3-dev python3-pip pkg-config autoconf automake libtool make g++ unzip`
`apt-get install -y build-essential libssl-dev openssh-server openssh-client python python-dev python-pip python3-dev python3-pip pkg-config autoconf automake libtool make g++ unzip`
Once this is done execute `curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -`
Once this is finished execute `apt-get install -y nodejs git`
And as last install MySQL with `apt-get install mysql-server mysql-client` fill in a root password once it asks for it and say yes or no to the dbconfig-common it has no impact for the future.
And as last install MySQL with `apt-get install -y mysql-server mysql-client` fill in a root password once it asks for it and say yes or no to the dbconfig-common it has no impact for the future.
After MySQL is installed execute `mysql -u root -p -e "create database pogosql";` to create the pogosql database needed for POGOserver
After MySQL is installed execute `mysql -u root -p -e "create database pogosql";` to create the pogosql database needed for POGOserver enter the MySQL password once it asks for it.
Now start cloning protobuf with the command `git clone --recursive https://github.com/google/protobuf.git`
After this is finished use `cd protobuf` and then execute `./autogen.sh && ./configure && make && make check && make install && ldconfig`