惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
SecWiki News
SecWiki News
酷 壳 – CoolShell
酷 壳 – CoolShell
爱范儿
爱范儿
量子位
M
MIT News - Artificial intelligence
GbyAI
GbyAI
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
TaoSecurity Blog
TaoSecurity Blog
博客园 - 【当耐特】
H
Heimdal Security Blog
腾讯CDC
The Last Watchdog
The Last Watchdog
Security Archives - TechRepublic
Security Archives - TechRepublic
Hacker News: Ask HN
Hacker News: Ask HN
S
Schneier on Security
Microsoft Security Blog
Microsoft Security Blog
WordPress大学
WordPress大学
博客园 - 司徒正美
Recent Commits to openclaw:main
Recent Commits to openclaw:main
C
Cybersecurity and Infrastructure Security Agency CISA
S
SegmentFault 最新的问题
大猫的无限游戏
大猫的无限游戏
Application and Cybersecurity Blog
Application and Cybersecurity Blog
F
Full Disclosure
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
T
Threatpost
月光博客
月光博客
A
Arctic Wolf
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
雷峰网
雷峰网
T
Troy Hunt's Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The Cloudflare Blog
D
DataBreaches.Net
O
OpenAI News
L
LINUX DO - 最新话题
宝玉的分享
宝玉的分享
小众软件
小众软件
V
Vulnerabilities – Threatpost
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
T
The Exploit Database - CXSecurity.com
Martin Fowler
Martin Fowler
美团技术团队
P
Privacy International News Feed

Linux on 老刘博客

Arch Linux 电源优化指南 Ubuntu 26.04 用了一个月 linux下使用kde桌面,自动亮度失效解决办法 Ubuntu25.10编译安装Ibus-libpinyin EndeavourOS + Btrfs + Snapper + GRUB:完整的快照回滚系统配置指南 从 Windows 到 Linux:重新体验的过程与心得 Ubuntu部署ghost博客所踩的小坑 正式使用Manjaro系统 python开发web程序,最好还是在Linux下 最终还是用回了Linux mint 试用统信uos家庭版 几种Linux系统安装之后的体验 常用的几个Linux的命令 centos7.6更改dns的方法
Ubuntu24.04安装Windterm
老刘 · 2025-10-02 · via Linux on 老刘博客

经过这一段时间的使用Linux,我发现确实是可以满足我日常的使用。系统也流畅,再没有了之前使用Windows 11的时候偶尔的卡顿,决定长期使用了。既然要长期使用那么EndeavourOS就不是太适合了,毕竟这个以Archlinux为基础的系统,追求的是新而不是稳定。所以我决定换成Ubuntu,而之前科学软件换了一款之后,影响我使用的因素也不存在了。

换了Ubuntu之后,我常用的微信,wps,anytype等软件都有deb的安装包,只有windterm是源码的形式。没法直接点击安装,当然,可以在终端中用命令直接打开,但是不是很方便。找了一下网上的方法,也没有能很好的解决,最终还是借助ai,才安装成功。如下:

下载

在这里下载最新的源码:https://github.com/kingToolbox/WindTerm

安装

首先在opt下建立一个叫windterm的文件夹,把刚才下载的源代码解压复制过去。然后按下列步骤进行:

1. 给可执行权限

进入目录,确保主程序能运行:

1
2
cd /opt/windterm 
sudo chmod +x WindTerm

如果能启动,就说明没有问题

建立软链接(让你直接用 windterm 启动)(可选)

1
sudo ln -s /opt/windterm/WindTerm /usr/local/bin/windterm

之后在终端输入这个命令,就能直接用了

创建桌面图标(应用菜单里显示)

新建一个 .desktop 文件:

1
sudo nano /usr/share/applications/windterm.desktop

输入以下内容:

1
2
3
4
5
6
[Desktop Entry]
Name=WindTerm
Exec=/opt/windterm/WindTerm
Icon=/opt/windterm/windterm.png
Type=Application
Categories=Utility;TerminalEmulator;

保存并退出。然后刷新数据库:

1
sudo update-desktop-database

现在你就可以在应用菜单里找到 WindTerm 了。

ubuntu-24-04-install-windterm