Fix RustDesk dependencies installation

- Added installation of missing RustDesk dependencies before installing the package
- This ensures all required libraries are available for RustDesk to install properly
parent 0b9c55db
...@@ -25,6 +25,16 @@ if [ ! -f "$RUSTDESK_DEB" ]; then ...@@ -25,6 +25,16 @@ if [ ! -f "$RUSTDESK_DEB" ]; then
exit 1 exit 1
fi fi
# Install missing dependencies
echo "Installing RustDesk dependencies..."
apt-get install -y \
libxdo3 \
libxfixes3 \
libxcb-shape0 \
libxcb-xfixes0 \
libva-drm2 \
libva-x11-2
echo "Installing RustDesk .deb package..." echo "Installing RustDesk .deb package..."
dpkg -i "$RUSTDESK_DEB" dpkg -i "$RUSTDESK_DEB"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment