mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-01-23 18:46:11 +00:00
18 lines
337 B
Bash
Executable file
18 lines
337 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
echo This script should install application dependencies for Debian-based systems
|
|
if [ $(id -u) -ne 0 ]
|
|
then
|
|
echo "error: run with sudo or root"
|
|
exit 1
|
|
fi
|
|
|
|
apt-get -qq update
|
|
apt-get -qq install -y \
|
|
ca-certificates \
|
|
libvpx6 \
|
|
libx264-160 \
|
|
libopus0 \
|
|
libgl1-mesa-glx \
|
|
xvfb \
|
|
xauth
|