Skip to content

Install RGS on steam os

Install from .deb package using dpkg

sh
export RGS_INSTALL_IGNORE_VERSION_CHECK=1
dpkg -i --force-all /home/deck/Downloads/RGS/ZCentral_RB_20.3_Lnx_Sender_Receiver_M39125-005/ubuntu/receiver/rgreceiver_20.3.0.8831_amd64.deb

After installation, you will got an error like "Browser not found". It' s because by defaut, rgs search for 'mozilla' but in steamos it's org.mozilla.firefox

So, open "HP Zcentral Remote Boost Receiver Configuration" And on the first page, scroll to find the browser section and set it to org.mozilla.firefox (if you have already install mozilla, otherwise install mozilla from the software center (called discover)).

after that, you can check by reopening RGS, to see if the browser errors doesn' t appear anymore.

Launch .rgreceiver file

The only way to open a .rgreceiver file i have found is to use this command

sh
/opt/hpremote/rgreceiver/rgreceiver.sh -config '/home/deck/Downloads/leostream (2).rgreceiver'

You can also create a script, for example name run.sh and paste this in /opt/hpremote/rgreceiver/

sh
#!/bin/bash

export LD_LIBRARY_PATH=./lib64:$LD_LIBRARY_PATH ;
export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:$PATH

cd `dirname $0`
PARMS=--Ice.Default.Host=127.0.0.1
./rgreceiver $PARMS -config "$@"

Right click on this scripts and make shis script executable, then, for .rgreceiver file, select this script in the open with settings.

that's it !