Find a file
2023-05-13 13:50:59 +02:00
.github/workflows Remove windows builder 2023-04-18 21:35:29 +02:00
example Fix certificate extension in example config 2023-04-22 12:59:11 +02:00
rkvm-certificate-gen Simplify certificate generator 2023-04-19 23:09:02 +02:00
rkvm-client Rename EventPack to EventBatch 2023-05-13 12:02:27 +02:00
rkvm-input Always set BUS_VIRTUAL; set vendor ID, product ID and version to 0; preserve original device info 2023-05-13 13:50:59 +02:00
rkvm-net Fix versions 2023-04-18 22:30:57 +02:00
rkvm-server Log server events 2023-05-13 12:19:29 +02:00
systemd Add fixed systemd unit files 2023-04-18 21:32:44 +02:00
.gitignore Initial commit 2020-09-16 18:04:18 +02:00
Cargo.lock Get rid of windows conditionals 2023-04-18 22:37:01 +02:00
Cargo.toml Refactor server 2023-04-16 17:36:08 +02:00
LICENSE Add license 2020-10-29 22:21:09 +01:00
README.md Add "Manual installation" section 2023-04-22 14:17:37 +02:00

rkvm

rkvm

rkvm is a tool for sharing keyboard and mouse across multiple Linux machines. It is based on a client/server architecture, where server is the machine controlling mouse and keyboard and relays events (mouse move, key presses, ...) to clients.

Switching between different clients is done by a configurable keyboard shortcut.

Features

  • TLS encrypted by default, backed by rustls
  • Display server agnostic
  • Low overhead

Requirements

  • Rust 1.48 and higher
  • The uinput Linux kernel module, enabled by default in most distros. You can confirm that it's enabled in your distro by checking that /dev/uinput exists.
  • libevdev development files (sudo apt install libevdev-dev on Debian/Ubuntu)
  • Clang/LLVM (sudo apt install clang on Debian/Ubuntu)

Manual installation

If you can, it is strongly recommended to use the AUR package to install rkvm.

$ cargo build --release
$ sudo cp target/release/rkvm-client /usr/bin/
$ sudo cp target/release/rkvm-server /usr/bin/
$ sudo cp target/release/rkvm-certificate-gen /usr/bin/ # Optional
$ sudo cp systemd/rkvm-client.service /usr/lib/systemd/system/
$ sudo cp systemd/rkvm-server.service /usr/lib/systemd/system/

Configuration

After installation:

  • Generate a certificate and private key using the rkvm-certificate-gen tool or provide your own from other sources.
  • For server, place both the certificate and private key in /etc/rkvm/certificate.pem and /etc/rkvm/key.pem respectively.
  • For client, place the certificate to /etc/rkvm/certificate.pem
  • Create a config if you haven't done so already. Server:
    # cp /etc/rkvm/server.example.toml /etc/rkvm/server.toml
    
    Client:
    # cp /etc/rkvm/client.example.toml /etc/rkvm/client.toml
    
    Do not edit the example configs, they will be overwritten by your package manager.
  • Change the password and optionally reconfigure the network listen address and key bindings for switching clients
  • Enable and start the systemd service. Server:
    # systemctl enable rkvm-server
    # systemctl start rkvm-server
    
    Client:
    # systemctl enable rkvm-client
    # systemctl start rkvm-client
    

Why rkvm and not Barrier/Synergy?

The author of this program had a lot of problems with said programs, namely his keyboard layout (Czech) not being supported properly, which stems from the fact that the programs send characters which it then attempts to translate back into keycodes. rkvm takes a different approach to solving this problem and doesn't assume anything about your keyboard layout -- it sends raw keycodes only.

Additionally, rkvm doesn't even know or care about X, Wayland or any display server that might be in use, because it uses the uinput API with libevdev to read and generate input events.

Regardless, if you want a working and stable solution for crossplatform keyboard and mouse sharing, you should probably use either of the above mentioned programs for the time being.

Limitations

  • Only keyboard and relative mouse events work (no support for touchpads or other absolutely positioned devices)
  • Linux only

Project structure

  • rkvm-server - server application code
  • rkvm-client - client application code
  • rkvm-input - handles reading from and writing to input devices
  • rkvm-net - network protocol encoding and decoding
  • rkvm-certificate-gen - certificate generation tool

Bincode is used for encoding of messages on the network and Tokio as an asynchronous runtime.

Contributions

All contributions, that includes both PRs and issues, are very welcome.

License

MIT