mirror of
https://git.koehlerweb.org/frodovdr/guac-install
synced 2025-05-14 00:43:14 +02:00
Compare commits
No commits in common. "f49cb52868c5b6489b7c5e9703e7d1feaa0ca967" and "9a3a4d84cb96b619871e61d589e376496c7af6bf" have entirely different histories.
f49cb52868
...
9a3a4d84cb
@ -1,6 +1,6 @@
|
||||
# guac-install
|
||||
|
||||
I've maintained this script for quite a few years now with the help of the other contributors and it seems to be getting more and more fragmented as libraries and system OSes diverge in their package management. I plan to continue mantaining the install script, but, I do highly suggest that more people try to use the containerized (docker) version. As it should work on basically any 64bit OS with Docker support. (That mean it doesn't work on 32bit ARM/Rasp Pi)
|
||||
I've maintained this script for quite a few years now with the help of the other contributors and it seems to be getting more and more fragmented as libraries and system OSes diverge in their package management. I plan to continue mantaining the install script, but, I do highly suggest that more people try to use the containerized (docker) version. As it should work on basically any OS with Docker support.
|
||||
|
||||
## NOTE: Ubuntu users having issues with RDP have reported the following fix:
|
||||
```
|
||||
|
@ -53,29 +53,7 @@ fi
|
||||
|
||||
# Install Stuff
|
||||
apt-get update
|
||||
|
||||
# Install mysql-client and wget if they don't already have it
|
||||
apt-get -y install default-mysql-client wget
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Failed to install apt prerequisites: default-mysql-client wget"
|
||||
echo "Try manually isntalling these prerequisites and try again"
|
||||
exit
|
||||
fi
|
||||
|
||||
# Try to install docker from the official repo
|
||||
apt-get -y install docker-ce docker-ce-cli containerd.io
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Failed to install docker via official apt repo"
|
||||
echo "Trying to install docker from https://get.docker.com"
|
||||
wget -O get-docker.sh https://get.docker.com
|
||||
chmod +x ./get-docker.sh
|
||||
./get-docker.sh
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Failed to install docker from https://get.docker.com"
|
||||
exit
|
||||
fi
|
||||
rm ./get-docker.sh
|
||||
fi
|
||||
apt-get -y install docker-ce docker-ce-cli containerd.io mysql-client wget
|
||||
|
||||
# Set SERVER to be the preferred download server from the Apache CDN
|
||||
SERVER="http://apache.org/dyn/closer.cgi?action=download&filename=guacamole/${GUACVERSION}"
|
||||
|
Loading…
x
Reference in New Issue
Block a user