Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
But what is happening is it is essentially alt-F4 the game on on the other PC which stops everything, kills the process.
Which I am assuming is also stopping the cloud sync process for the closed game as well?
If anyone else reads this post in the future and is on Linux(manjaro) a roundabout resolution outside of steam was to install rustdesk, a free and opensource remote desktop client:
1. Add rustdesk as a service so it autostarts with your OS - can be done with systemd or through KDEs autostart applet, just search for autostart
2. Create bash script to check the status of the rustdesk service, mine was named monitor_rustdesk.sh and I put it in /opt/scripts and looked like this:
#!/bin/bash
# Check if RustDesk is running
if ! pgrep -f "rustdesk" > /dev/null; then
# If RustDesk is not running, start it
/opt/appimages/rustdesk.AppImage &
fi
3. Added a cron job that will run that bash script every 5 min to make sure rustdesk is running
My cronjob looked like this:
*/5 * * * * ~/bin/monitor_rustdesk.sh
If you arent sure how to do this dump some of the information with details about your setup into any recent LLM and it should do a pretty decent job of explaining how to do it for your OS or whether you are using a rustdesk flatpak, appimage, etc... Any Linux OS is going to have roughly the same operation to do this. Ask the LLM how to see if you have cron installed, how to install it on your OS, how to enable it, etc...
crontab can be a but wonky if you are new so installing crontab-ui with npm makes it really easy to install cron jobs and kind of learn how they work.