new changes to starting chromium browser

This commit is contained in:
2021-07-30 17:42:03 +04:00
parent 896bd96ffd
commit be73f23811
4 changed files with 34 additions and 8 deletions

View File

@@ -4,30 +4,33 @@
# - 8888 (laplace server)
# - 24800 (barrier server)
export REMOTEGAMEPLAY=$PWD
# Updating and installing go compiler
apt update
apt install golang
apt install -y golang
# Installing git
apt install -y git
# Installing barrier
apt install barrier
apt install -y barrier
# Installing chromium
wget https://github.com/RobRich999/Chromium_Clang/releases/download/v94.0.4585.0-r904940-linux64-deb-avx/chromium-browser-unstable_94.0.4585.0-1_amd64.deb
apt install ./v94.0.4585.0-r904940-linux64-deb-avx/chromium-browser-unstable_94.0.4585.0-1_amd64.deb
apt install -y ./v94.0.4585.0-r904940-linux64-deb-avx/chromium-browser-unstable_94.0.4585.0-1_amd64.deb
# clone remotegameplay distribution
git clone https://github.com/Akilan1999/remotegameplay
# enter cloned directory
cd remotegameplay
export REMOTEGAMEPLAY=$PWD
# Build laplace binary file
go build .
./laplace -setconfig
./laplace -tls -addr 0.0.0.0:8888 &
./laplace -headless &
./laplace -headless -addr `$1` &
sleep 2