Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通常在使用 nomachine 时,大写锁定键的功能会突然切换。通常它会在一段时间后恢复正常。但是现在我有一种情况,几天后它没有恢复,也没有重新启动我的会话。有谁知道解决这个问题的方法?
我的一位同事找到了解决此问题的方法。在远程 Linux/Un*x 系统上运行以下 python 代码修复了该问题:
from ctypes import * X11 = cdll.LoadLibrary("libX11.so.6") display = X11.XOpenDisplay(None) X11.XkbLockModifiers(display, c_uint(0x0100), c_uint(2), c_uint(2)) X11.XCloseDisplay(display)