Linux - Ubuntu - GUI - 从 1 个主设备到 10 个从设备的远程鼠标和键盘

Linux - Ubuntu - GUI - 从 1 个主设备到 10 个从设备的远程鼠标和键盘

是否可以将鼠标和键盘操作复制到多个设备?例如,在 ubuntu 1 上监听,然后将精确的鼠标和键盘操作复制到 ubuntu 2、ubuntu 3、ubuntu 4 等。

我尝试过使用 xdotool 和 ssh 但简单地说,我失败了。例如

sshpass -p 'password' ssh -t -X user@host DISPLAY=:0.0 'bash -a' < ./start.sh

while true
do
    xje=$(xdotool getmouselocation | cut -c 3-5)
    yje=$(xdotool getmouselocation | cut -c 9-12)

    echo "$xje" "$yje"

    xdotool mousemove "$xje" "$yje"
done

但也许你们有完全不同的解决方案?因为我真的卡住了!

相关内容