Skip to content

Splashtop

Source: Notion | Last edited: 2025-04-26 | ID: 719e2f7f-e61...


Configure client

Ubuntu

https://support-splashtopbusiness.splashtop.com/hc/zh-cn/articles/360035513772-下载适用于Linux的Splashtop-Streamer?_gl=1ajk3zt_gcl_awR0NMLjE3MjExODM4NDcuQ2p3S0NBand0TmkwQmhBMUVpd0FXWmFBTklMR05EdEE5WFk4c2E4WFU1QndHdERMVWppbU1Xd3ZRTmdQVV9nMWt2NnBxVkFKVnhrS0VCb0NHbG9RQXZEX0J3RQ.._gcl_auNzk2NjAyMzcuMTcxOTM3MDgxNw.._gaMTk3MDcyNDQxMC4xNzE5MzcwODE4_ga_GKBXSKZ3NW*MTcyMTc4NDc5Mi45LjEuMTcyMTc4NDgwOC40NC4wLjA.&page=blog/linux-ubuntu-remote-desktop&platform=web&web_medium=organic&web_source=google

然后按照网站流程来即可:

打开streamer,设置好12位 code,就可以了。

  • 设置team members

2024-09-23 Remember to set Access Permission in the My Computers panel to both All admins and members or else Members cannot see the Computer in the Default Group list on their own devices.

2024-11-18

  1. Visit the official download page to get the latest installer:
Terminal window
# 1. Download and extract (replace URL with latest version from download page)
# URL looks like:
# <https://download.splashtop.com/linux/STB_CSRS_Ubuntu_v3.7.2.0_amd64.tar.gz>
wget [LATEST_DOWNLOAD_URL] -O - | tar -xz
# 2. Install the extracted .deb file
sudo apt install ./Splashtop_Streamer_Ubuntu_amd64.deb
# OR, if on Debian 12:
sudo dpkg -i Splashtop_Streamer_Ubuntu_amd64.deb
# 3. Fix permissions for log directory
sudo mkdir -p /opt/splashtop-streamer/log
sudo chmod 777 /opt/splashtop-streamer/log
# 4. Deploy using command line (replace HPJ999999KRS with your deployment code)
sudo splashtop-streamer deploy HPJ999999KRS
# 5. Start the service
sudo systemctl start SRStreamer
# 6. Verify service is running
systemctl status SRStreamer
  1. Reboot your system: sudo reboot
  2. The service should automatically start and connect
  3. Check the Splashtop icon in your system tray for connection status

If connection issues occur after reboot:

Terminal window
# Stop service
sudo systemctl stop SRStreamer
# Clear configuration and redeploy
sudo rm -rf ~/.config/splashtop-streamer
sudo rm -rf /opt/splashtop-streamer/config/*
# Deploy and restart
sudo splashtop-streamer deploy YOUR_DEPLOYMENT_CODE
sudo systemctl start SRStreamer

Note: The current example used version 3.7.2.0, but always use the latest version available from the official download page for best compatibility and security.