Installing Unified Remote Server Deb via terminal
The "deb" package of the server makes it easy to install Unified Remote Server on Linux using the Debian package manager. This is the default package manager on Ubuntu, Mint, Debian, and other Debian flavors.
Download package
Start by downloading the package using curl or wget.
$ wget -O urserver.deb https://www.unifiedremote.com/d/<id>
Replace <id> with the correct package for your system:
- linux-x64-deb
- linux-x86-deb
- rpi-deb
Replace "https://www." with "http://http." if you get SSL errors.
Install package
Install the package using the dpkg command.
$ sudo dpkg -i urserver.deb
The server will be installed into the following directory:
/opt/urserver/
Logs and settings are stored in:
~/.urserver/
Auto-start support
The package includes a "desktop entry" for auto-starting the server, if you're system supports it.
Manual start/stop
To manually start or stop the server, use the following commands:
$ ./opt/urserver/urserver-start $ ./opt/urserver/urserver-stop
Uninstall package
To uninstall the server, run the following dpkg command:
$ sudo dpkg -r urserver