diff --git a/README.md b/README.md index ac1eb433..0d0455d3 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ The following steps will configure your Windows 10 machine for building the Remo ## Session Recording * You can turn on session recording in appsettings.json. * The following requirements must be met for it to work: - * On Linux, libgdiplus must be installed (sudo apt-get install libdgiplus). + * On Linux, libgdiplus and libc6-dev must be installed (sudo apt-get install libgdiplus libc6-dev). * The process running the app must have access to create and modify a folder name "Recordings" in the site's root content folder. * FFmpeg must be executable from the process running the Remotely server. * Link: https://www.ffmpeg.org/download.html diff --git a/Remotely_Server/wwwroot/Downloads/Install-Linux-x64.sh b/Remotely_Server/wwwroot/Downloads/Install-Linux-x64.sh index 301a7ea1..4584cf22 100644 --- a/Remotely_Server/wwwroot/Downloads/Install-Linux-x64.sh +++ b/Remotely_Server/wwwroot/Downloads/Install-Linux-x64.sh @@ -13,6 +13,7 @@ if [ "$1" = "--uninstall" ]; then fi apt-get -y install unzip +apt-get -y install libc6-dev apt-get -y install libgdiplus apt-get -y install libxtst-dev diff --git a/Utilities/Remotely_Server_Install.sh b/Utilities/Remotely_Server_Install.sh index e7addf43..76d13318 100644 --- a/Utilities/Remotely_Server_Install.sh +++ b/Utilities/Remotely_Server_Install.sh @@ -20,6 +20,7 @@ rm packages-microsoft-prod.deb apt-get install -y unzip apt-get install -y acl apt-get -y install ffmpeg +apt-get -y install libc6-dev apt-get -y install libgdiplus @@ -29,6 +30,7 @@ wget "https://remotely.lucency.co/Downloads/linux-x64/Remotely_Server.zip" unzip -o Remotely_Server.zip -d $appRoot rm Remotely_Server.zip setfacl -R -m u:www-data:rwx $appRoot +chown -R www-data:www-data $appRoot # Install Nginx