blob: de75f1b2be91d199e4a7a14149cc817a64049323 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
A QT based utility program for thinclients using xrdp and NeutrinoRDP
This program sends commands to NeutrinoRDP to do something
useful on the client end (such as unmounting a USB drive,
or powering down the client)
Required packages to build tcutils:
-----------------------------------
libqt4-gui
qt4-dev-tools
to build tcutils:
-----------------
qmake
make
To run tcutils:
---------------
include xrdpapi/.libs in your LD_LIBRARY_PATH
Example:
--------
export LD_LIBRARY_PATH=../xrdpapi/.libs
run tcutils inside the xfreerdp session
this is how we run xfreerdp:
----------------------------
./xfreerdp --sec rdp --plugin tcutils 192.168.2.149
|