中文文档
EasyViewer is an open source cross-platform remote control software developed based on Qt. It provides three core functions of remote desktop, file transfer and remote terminal.
EasyViewer currently includes the following programs:
- easyviewerd - Server program, under the project directory: ./Server
- easyviewerd-ctrl - Server control program, under the project directory: ./ServerCtrl
- easyviewer-client-gui - Client program with gui,under the project directory: ./Client/Client-UI
- easyviewer-client-without-gui - As a controlled client program without gui, it can only respond to file transfers and remote terminal requests, under the project directory: ./Client/Client-Console/Guard/Guard-Console
- easyviewer-terminal-viewer - Remote terminal client,under the project directory: ./Client/Client-Console/Viewer/TerminalViewer
Most of the remote control software on the market is aimed at ordinary users. The difference between EasyViewer and them is that EasyViewer provides remote terminal functions for IT practitioners.
Currently we have only verified it on Windows and Ubuntu 20.04, we do not guarantee availability on other platforms.
easyviewer-client-gui uses DXGI for screen data sampling on Windows, you need to make sure your OS supports it. About DXGI
easyviewer-client-gui uses some functions of xcb on Linux, please make sure it is installed correctly (on ubuntu you can execute the command apt install libxcb-xinerama0 xcb
to install it)
EasyViewer is developed based on Qt6.2.4, you need to ensure that your machine contains a development environment compatible with Qt6.2.4. Download Qt
EasyViewer is built with MSVC on Windows, please make sure it is installed correctly.
easyviewer-client-gui uses some functions of Direct3D on Windows, please make sure it is installed correctly.
EasyViewer is built with gcc, g++ on Linux, please make sure they are installed correctly.
easyviewer-client-gui uses some functions of X11 on Linux, please make sure it is installed correctly(on ubuntu you can execute the command apt install libxtst-dev
to install it).
easyviewer-client-gui uses some functions of xcb on Linux, please make sure it is installed correctly(on ubuntu you can execute the command apt install libxcb-xinerama0 xcb
to install it).
easyviewerd-ctrl uses some functions of readline on Linux, please make sure it is installed correctly(on ubuntu you can execute the command apt install libreadline-dev
to install it).
When all the preparatory work is completed, you only need to use Qt Creator to open EasyViewer.pro in the project root directory, and after configuration, click Build -> Build All Projects to complete all compilation work.
Note:
- On Windows, we only build for MSVC, please select MSVC x64 kits when compiling on Windows
- We currently only provide support for the amd64 architecture. If you need support for other architectures, you need to compile the third-party libraries that EasyViewer depends on yourself. Their source codes are placed in the ./Global/Component directory, including : libyuv, openh264, openssl, protobuf, zlib
- Generate a public-private key pair and name it key.public, key.private (you can also name it as you like)
- Deploy easyviewerd
- Configure private key
Modify the config.ini file in the easyviewerd directory, point [Server/PrivateKeyPath] to the key.private file path, or copy key.private to the easyviewerd directory
Note: When [Server/PrivateKeyPath] is not specified, easyviewerd will load the file appDir/key.private as the private key by default - Configure administrator password
Modify the config.ini file in the easyviewerd directory, and fill in your administrator password at [Management/Password] - Run easyviewerd
Note: easyviewerd will listen to 2 ports, one for user service and one for background management. By default, they are 9748 and 19748 respectively
- Configure private key
- Add user
- Run easyviewerd-ctrl in the easyviewerd-ctrl directory with parameters --host=server_IP address_or_domain_name --port=server_background_management_port --public_key_file=key.public_file_path
- After entering the correct password, enter
user add username password
to add users
- Start using
-
Use easyviewer-client-gui to access partner and unattended
- Run easyviewer-client-gui
Note: On Windows, when you start easyviewer-client-gui for the first time, it will automatically configure the running graphics processor. After clicking OK to exit the program, you need to restart easyviewer-client-gui - Add server address
Right-click the Server Book component on the left side of the main window to pop up a menu, click the Add item in the menu, enter the correct configuration in the pop-up Add Server Address dialog, and click OK - Select Server
Double-click the item in the Server Book part of the main window with the left mouse button to select and activate it
So far, unattended is ready. If you need to access your partner, please enter the partner ID and the correct verification code on the right side of the main window, and click the Connect button.
- Run easyviewer-client-gui
-
Use easyviewer-client-without-gui unattended
- Modify the config.ini file in the easyviewer-client-without-gui directory to fill in the correct configuration
- Run easyviewer-client-without-gui
-
Access partner with easyviewer-terminal-viewer
Run easyviewer-terminal-viewer with parameters --host=server_IP_address_or_domain_name --port=server_user_service_port --public_key_file=key.public_file_path --account=your_account --password=your_password --partner_id=Partner_ID --auth_string=Partner_verification_code
-
EasyViewer is under the MIT license. See the LICENSE file for details.