mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
Typo. Install additional Linux dependency for System.Drawing.Common.
This commit is contained in:
parent
b50f8baa1a
commit
d1deda40a5
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user