Auto-sync: 2026-04-22 04:02

This commit is contained in:
2026-04-22 04:03:04 +08:00
parent 24218550d2
commit de096f2f88
232 changed files with 16604 additions and 514 deletions

35
wiki/concepts/tui.md Normal file
View File

@@ -0,0 +1,35 @@
---
title: "TUI"
type: concept
aliases: [Text User Interface, 文本用户界面]
tags: [linux, interface, cli]
date: 2025-12-18
---
# TUI (Text User Interface)
在终端/命令行环境中运行的交互式图形化用户界面。
## Definition
TUI文本用户界面是通过终端模拟器呈现的交互式界面使用ASCII字符、ANSI颜色代码在文本模式下模拟图形化控件。相比GUITUI具有以下优势
- **高性能**:资源占用极低,在系统负载高时仍能流畅运行
- **SSH友好**:可通过远程连接访问,适合服务器管理
- **可脚本化**:易于集成到自动化工作流中
## Related Entities
- [[Btop++]] — TUI资源监控器作者首选
- [[Htop]] — TUI进程监控器
- [[Glances]] — 超轻量TUI监控器
- [[Bottom]] — TUI图表监控器
## Related Concepts
- [[GUI]] — 图形用户界面TUI的对立面
- [[CLI]] — 命令行界面TUI的底层基础
## Related Sources
- [[these-6-linux-apps-let-you-monitor-system-resources-in-style]]
## Connections
- [[TUI]] ← 应用类型 ← [[Btop++]], [[Htop]], [[Glances]], [[Bottom]]
- [[TUI]] ← 应用类型 ← [[SSH Remote Access]]