Skip to content

Instantly share code, notes, and snippets.

@AndreiCherniaev
Last active October 22, 2025 06:19
Show Gist options
  • Save AndreiCherniaev/9bef25311726b3955f7c11ae35784307 to your computer and use it in GitHub Desktop.
Save AndreiCherniaev/9bef25311726b3955f7c11ae35784307 to your computer and use it in GitHub Desktop.
Update rustdesk in Debian/Ubuntu
# Replace _64 to aarch64 or armv7 depends of your arch (use `dpkg --print-architecture` to detect)
P=$(wget -qk -l 0 "https://github.com/rustdesk/rustdesk/releases" -O /tmp/index.html ; cat /tmp/index.html | grep -o 'https:[^"]*.deb' | grep '\/rustdesk-[0-9]*[0-9]\.[0-9].*_64.deb' | sort -r -n | head -1)
wget "$P"
sudo dpkg --install $(basename "$P")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment