This is only the Linux Installation
SSH into the server (ScreenConnect) ConnectWise Control is installed
Navigate to the /opt/screenconnect and make a copy of the folder
cp -rp screenconnect screenconnect-backup
Copy the following command and paste it in the terminal
workingDirectory=~/scInstall; downloadUrl=”https://www.screenconnect.com/Download?Action=DownloadLatest&Platform=Linux&PreRelease=false”; rm -rf $workingDirectory; mkdir $workingDirectory; (cd $workingDirectory; if which wget; then wget -O sc.tar.gz “$downloadUrl”; else curl -L “$downloadUrl” > sc.tar.gz; fi; tar xf sc.tar.gz; $(find . -name install.*);); rm -rf $workingDirectory;