引言
terminator多窗口工具非常便捷,对于经常使用WSL2的同学,习惯性也想使用。
技术背景
由于WSL2不支持原生的界面显示,安装terminator要求借助第三方X server 工具,本文选用 VcXsrv X Server,下载地址:
VcXsrv Windows X Server download | SourceForge.net
另外使用Linux发行版terminator即可。
安装与配置
本文使用WSL2安装Ubuntu 20.04.2 LTS。
1. X server 安装
一路按照向导安装即可。
2. terminator安装
sudo apt-get update && sudo apt-get install terminator
3. 启动X Server
选择 Multiple Windows,Display Number设置为0;-》Start no Client-》Disable access control
启动完成后,启动Applications -> xcalc 验证功能是否正常。
4. Ubuntu 设置shell脚本
# For terminator running above of VcXsrv
export DISPLAY=192.168.3.6:0
export LIBGL_ALWAYS_INDIRECT=1
注:以上IP地址为实际host IP。
5. 运行 terminator
在Ubuntu shell下执行:
terminator &