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

推荐订阅源

博客园_首页
J
Java Code Geeks
博客园 - 聂微东
量子位
C
Check Point Blog
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
B
Blog
罗磊的独立博客
腾讯CDC
GbyAI
GbyAI
博客园 - 【当耐特】
A
About on SuperTechFans
M
MIT News - Artificial intelligence
U
Unit 42
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
S
SegmentFault 最新的问题
有赞技术团队
有赞技术团队

博客园 - xgqfrms

xgqfrms, cnblogs, blogs xgqfrms, cnblogs, blogs xgqfrms, cnblogs, blogs xgqfrms, cnblogs, blogs xgqfrms, cnblogs, blogs xgqfrms, cnblogs, blogs xgqfrms, cnblogs, blogs xgqfrms, cnblogs, blogs xgqfrms, cnblogs, blogs xgqfrms, cnblogs, blogs xgqfrms, cnblogs, blogs xgqfrms, cnblogs, blogs xgqfrms, cnblogs, blogs xgqfrms, cnblogs, blogs xgqfrms, cnblogs, blogs xgqfrms, cnblogs, blogs xgqfrms, cnblogs, blogs xgqfrms, cnblogs, blogs xgqfrms, cnblogs, blogs xgqfrms, cnblogs, blogs Remotion Video Maker All In One git worktree All In One Tesla 的车机使用什么技术来渲染汽车模型的? 宜家 VEVELSTAD 维维斯托床架 All In One macOS sysmond bug All In One Three.js All In One The COF of LCD Monitor All In One Dell 显示器 S2419HM 灰屏 &花屏 All In One AI Harness Engineering All In One 电脑外接显示器天梯榜 All In One
Pandoc All In One
xgqfrms · 2026-04-17 · via 博客园 - xgqfrms

Pandoc All In One

Pandoc a universal document converter

image

https://pandoc.org/

https://github.com/jgm/pandoc

Linux 进程管理命令与信号

image

进程命令

命令 描述
& 在后台执行命令,允许用户继续使用终端。
ps 显示系统上正在运行的活动进程信息。
pstree 以树状结构显示进程层级关系。
kill 向进程发送信号以终止或中断进程。
killall 杀死所有匹配指定进程名的进程。
pkill 根据名称或其他属性向进程发送信号以终止或中断进程。
trap 允许你指定 shell 脚本可以捕获和响应的 Linux 信号。
pgrep 根据条件查找正在运行程序的进程 ID。
nice 允许用户管理进程优先级的命令。
renice 用于更改正在运行进程的 nice 值(优先级)。
jobs 列出当前 shell 会话中的活动作业。
bg 将作业发送到后台运行。
fg 将作业带到前台运行。
nohup 用于运行即使终端关闭也会继续运行的进程。
screen 在单个 shell 会话中管理多个终端会话。
tmux 允许用户在单个窗口中创建和管理多个终端会话的终端复用器。
top 实时提供系统资源使用情况和活动进程信息。
htop 一个交互式的系统监控/进程管理器。
btop++ 另一个具有更多功能的交互式进程查看器。
bottom 又一个跨平台的图形进程/系统监控器。
glances 系统监控仪表盘。
gtop 基于图形界面的系统监控仪表盘。
procs 用 Rust 编写的 ps 命令的现代替代品。
lsof 列出打开的文件及其对应的进程。
ps aux 显示所有活动进程的详细信息。
systemctl 控制系统服务和系统服务管理器。

Linux 信号

信号 描述
SIGHUP 1 挂起进程
SIGINT 2 中断进程
SIGQUIT 3 停止进程
SIGKILL 9 强制终止进程
SIGTERM 15 尽可能终止进程
SIGSTOP 17 无条件暂停进程,但不终止
SIGTSTP 18 暂停进程,但不终止
SIGCONT 19 继续已停止的进程

要列出所有可用的 Linux 进程信号,可以运行 trap 或 kill 命令并加上 -l 选项。例如:

$ kill -l

或使用 trap 命令

$ trap -l

demos

from markdown to png

# 生成一张包含这些中文描述的图片
$ pandoc linux-process-commands-zh.md -o linux-process-commands-zh.png --from markdown --to png --dpi=200 --output=linux-process-commands-zh.png

image

# 要列出所有可用的 Linux 进程信号,可以运行 trap 或 kill 命令并加上 -l 选项。
$ kill -l
HUP INT QUIT ILL TRAP ABRT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM URG STOP TSTP CONT CHLD TTIN TTOU IO XCPU XFSZ VTALRM PROF WINCH INFO USR1 USR2
$ trap -l

image

markdown to pdf

https://md2pdf.netlify.app/

refs



©xgqfrms 2012-2021

www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!

原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!