| 31 | Because of the unusual location of the CUDA and NVENC libraries and support tools, it is your responsibility to ensure that the required shared objects and the CUDA compiler can be located at runtime. |
| 32 | You can specify the paths each time on the command line: |
| 33 | {{{ |
| 34 | PATH=$PATH:/opt/cuda-5.5/bin/ \ |
| 35 | LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/opt/cuda-5.5/lib64:/usr/lib64/nvidia \ |
| 36 | xpra ... |
| 37 | }}} |
| 38 | Or make those settings more permanent in your user or system profile. |
| 39 | |
| 40 | |
| 41 | Beware that the new paths added to {{{PATH}}} and {{{LD_LIBRARY_PATH}}} should be added '''at the end''' of the current values (as per the example above) to prevent a conflict with system critical libraries. (ie: {{{libOpenCL}}} is known to cause crashes) |
| 42 | |
| 43 | |
| 44 | == License Key == |
| 45 | If you have access to a license key, you can specify it like so: |
| 46 | {{{ |
| 47 | XPRA_NVENC_CLIENT_KEY="0A1B2C3D-4E5F-6071-8293-A4B5C6D7E8F9" xpra ... |
| 48 | }}} |