WindTerm 教程

警告
本文最后更新于 2024-10-31,文中内容可能已过时。
/images/guides/WindTerm教程/1.png
(图1)

远程经常断开

修改锁屏超时时间

会话 -> 首选项 -> 设置 -> 安全 -> 锁屏超时

/images/guides/WindTerm教程/2.png
(图2)
/images/guides/WindTerm教程/3.png
(图3)

保持会话连接

会话 -> 首选项 -> 会话设置 -> SSH –> 连接 -> 发送空包以保持会话活动 -> 5秒

/images/guides/WindTerm教程/4.png
(图4)
/images/guides/WindTerm教程/5.png
(图5)

OSC 协议问题

终端出现"]3008;xxxxxx;type=shell;cwd=/home/ubuntu\ubuntu@ubuntu-server:~$ “乱码

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
vim ~/.bashrc

# 添加以下内容
#禁用systemd OSC 3008的扩展输出
__systemd_osc_context_precmdline() { :; }
__systemd_osc_context_common() { :; }
__systemd_osc_context_escape() { :; }
PS0=""

# 重启虚拟机
reboot

# 重载配置
source ~/.bashrc