We use cookies to remember your language choice. By using our websites you accept this in accordance with the Cookie section in our Privacy Statement.
Accept
< Back to index

How to start RemotixQC for Linux from an ssh session

When you start something within an SSH session, you don’t have any active window server ready to serve your app, so RemotixQC can fail to start.
The workaround is to use Xvfb, a virtual X-Server:

  1. Install Xvfb: sudo apt-get install xvfb
  2. Connect via ssh,
  3. Run the following commands:
    export DISPLAY=:1
    Xvfb :1 -screen 0 1024x768x24 &
    fluxbox &
    remotixqc

Note that fluxbox here is just an example of a window manager. You may run any other one or even start a full-fledged desktop environment (e.g. Gnome).