WSL2 上的终端仿真器

WSL2 上的终端仿真器

我在我的机器上的 WSL2 上安装了 xterm。但是,我无法将文本从外部复制到 xterm 窗口中...(我可以在 xterm 窗口之间复制和粘贴)。

之后,我安装了终结者

sudo apt-get install terminator

窗口出现了,但是我收到了错误:

ConfigBase::load: Unable to open /home/pc/.config/terminator/config ([Errno 2] No such file or directory: '/home/pc/.config/terminator/config')
Gdk-Message: 15:53:32.137: Unable to load hand2 from the cursor theme
<window.Window object at 0x7f9f84073b80 (terminatorlib+window+Window at 0x2116500)> is not in registered window list

有人知道如何将外部文本复制到 xterm 或适合 WSL 的 xterm 替代品中吗?

此致

答案1

这个问题通过以下方式解决:

touch ~.Xdefaults

并粘贴在里面:

XTerm*VT100.Translations:       #override\n\
 Shift Ctrl <KeyPress> v: insert-selection(CLIPBOARD)\n\
 Shift Ctrl <KeyPress> c: copy-selection(CLIPBOARD)\n

相关内容