This is a preview version of the source code and presently, it does not support all the features found in the macOS version. We are in the process of optimizing the code and refining the building methods. Your feedback is invaluable to us. If you have any suggestions or recommendations, feel free to reach out to the project team via email. Alternatively, you can join our Discord channel for direct discussions.
- Basic KVM operations
- Mouse control absolute mode
- Mouse relative mode
- Audio playing from target
- Paste text to Target device
- OCR text from Target device
- Other feature request? Please join the Discord channel and tell me
For a detailed list of features, please refer to the Features Documentation.
- Window (10/11)
- Ubuntu 22.04 (You need to upgrade QT to >=6.4)
- Ubuntu 24.04
- Linux Mint 21.3 (Need to upgrade QT to >=6.4)
- openSUSE Tumbleweed, built by community
- Raspberry Pi OS (64-bit), working good
- Raspberry Pi OS (32-bit), Not supported, because the QT version is too old
- Download the package from Github release page, and find the latest version to download according to your os and cpu architecture.
- Run the installer and it will install all required drivers and application to your windows. You can run the application from start menu.
Note: Users have reported that the Windows installer is unable to automate driver installation correctly on Windows 11 Version 22H2. You may need to manually download and install the driver from the WCH website. For more details, please refer to this issue. We are also actively working on a solution to improve driver installation for this version.
- Download the package from Github release page, and find the latest version to download according to your os and cpu architecture.
- Install the dependency
- Setup dialout for Serial permissions and the hidraw permission for Switchable USB device
- Install the package.
# Setup the QT 6.4.2 or laterruntime and other dependencies
sudo apt install -y libqt6core6 libqt6dbus6 libqt6gui6 libqt6network6 libqt6multimedia6 libqt6multimediawidgets6 libqt6serialport6 libqt6svg6 libusb-1.0-0-dev
# Setup the dialout permission for Serial port
sudo usermod -a -G dialout $USER
# Setup the hidraw permission
echo 'KERNEL== "hidraw*", SUBSYSTEM=="hidraw", MODE="0666"' | sudo tee /etc/udev/rules.d/51-openterface.rules
sudo udevadm control --reload-rules
sudo udevadm trigger
# Unszip the package and install
unzip openterfaceQT.deb.zip
sudo dpkg -i openterfaceQT.deb
# Run from terminal
openterfaceQT
- Using QT Creator
- Install QT for opensource, recommanded version 6.4.3
- Use Qt Maintenance Tool to add following components
- Download the source and import the project
- Now you can run the project
# Build environment preparation
sudo apt-get update -y
sudo apt-get install -y \
build-essential \
qmake6 \
qt6-base-dev \
qt6-multimedia-dev \
qt6-serialport-dev \
qt6-svg-dev \
libusb-1.0-0-dev
# Setup the dialout permission for Serial port
sudo usermod -a -G dialout $USER
# On some distros (e.g. Arch Linux) this might be called uucp
sudo usermod -a -G uucp $USER
# Setup the hidraw permission
echo 'KERNEL== "hidraw*", SUBSYSTEM=="hidraw", MODE="0666"' | sudo tee /etc/udev/rules.d/51-openterface.rules
sudo udevadm control --reload-rules
sudo udevadm trigger
# Get the source
git clone https://github.com/TechxArtisanStudio/Openterface_QT.git
cd Openterface_QT
mkdir build
cd build
qmake6 ..
make -j$(nproc)
# Run
./openterfaceQT
# If you can't control the mouse and keyboard (with high probability that did not correctly recognize the serial port)
# solution
sudo apt remove brltty
# after run this plug out the openterface and pulg in again
ls /dev/ttyUSB*
# if you can list the usb the serial port correctly recognized
# Then we need give the permissions to user for control serial port you can do this:
sudo ./openterfaceQT
# or (dialout/uucp)
sudo usermod -a -G dialout <your_username>
sudo reboot
# back to the build floder
./openterfaceQT
- Keyboard and Mouse not responding in Windows
- The CH340 serial chip driver wasn't installed properly during setup, you have two options:
- Download and install the driver directly from the WCH website
- Install the driver from our source repository by running this command as Administrator:
pnputil -a CH341SER.INF
- The CH340 serial chip driver wasn't installed properly during setup, you have two options:
- Keyboard and Mouse not responding in Linux
-
Likely the CH340 serial chip driver is missing in your OS, you should
-
Download the driver: Visit the driver website and download the appropriate driver for Linux.
-
Install the driver:
- Extract the downloaded file.
- Open a terminal and navigate to the extracted folder.
- Run the following commands to compile and install the driver:
make sudo make install
-
Load the driver: After installation, load the driver using:
sudo modprobe ch341
-
Reconnect the device: Unplug and reconnect the OpenTouch interface to see if the mouse and keyboard inputs are now being sent to the target.
If the issue persists, it could also be related to permissions or udev rules. Ensure that your user has the necessary permissions to access the device. Please refer to For Linux users
-
-
We encourage you to engage with us.
- On Discord to ask questions and report issues.
- On Github to report issues.
- Email to [email protected] to ask questions and report issues.
This project is licensed under the AGPL-3.0 - see the LICENSE file for details.