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

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hacker News: Front Page
P
Palo Alto Networks Blog
T
ThreatConnect
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
T
True Tiger Recordings
P
Privacy & Cybersecurity Law Blog
B
Blog
IT之家
IT之家
Last Week in AI
Last Week in AI
F
Full Disclosure
Hacker News: Ask HN
Hacker News: Ask HN
C
Comments on: Blog
Microsoft Azure Blog
Microsoft Azure Blog
C
Cybersecurity and Infrastructure Security Agency CISA
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
N
News and Events Feed by Topic
NISL@THU
NISL@THU
腾讯CDC
雷峰网
雷峰网
Security Latest
Security Latest
李成银的技术随笔
M
Microsoft Research Blog - Microsoft Research
L
LangChain Blog
L
Lohrmann on Cybersecurity
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
C
Check Point Blog
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
博客园 - Franky
N
News | PayPal Newsroom
V
V2EX
A
About on SuperTechFans
The Register - Security
The Register - Security
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google Online Security Blog
Google Online Security Blog
MyScale Blog
MyScale Blog
Cisco Talos Blog
Cisco Talos Blog
Vercel News
Vercel News
WordPress大学
WordPress大学
C
Cyber Attacks, Cyber Crime and Cyber Security
The Hacker News
The Hacker News
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
爱范儿
爱范儿
A
Arctic Wolf
L
LINUX DO - 最新话题
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

博客园 - xgqfrms

Dell 显示器 S2419HM 灰屏 &花屏 All In One AI Harness Engineering All In One 电脑外接显示器天梯榜 All In One How to change the speed display unit of GSP from mph to km/h using GoPro Labs All In One WHCA 白宫记者协会 All In One Pascal Editor All In One 主流犬种图解指南 All In One 泡沫喷雾 & 辣椒喷雾 All In One 如何给身份证照片添加水印 All In One GoPro MISSION 1 PRO price All In One 杭州历史天气数据 All In One GoPro MISSION 1 SERIES All In One GoPro telemetry 中的 GPS5 与 GPS9 是什么 All In One NHTSA FARS All In One How to extract raw telemetry data from GoPro videos using FFmpeg All In One Free Vercel Services All In One How to run for loop in Python REPL All In One 使用不同 AI 大模型生成一杯装满的红酒的高脚杯挑战赛 All In One CSS Custom Highlight API All In One OpenCode All In One OpenClaw 设置 cron 定时任务 All In One free MongoDB Cloud API All In One 如何在 Raspberry Pi 安装 OpenClaw All In One free cloud LLM models API All In One Claude Code Free Video Tutorials All In One 如何解决 OpenClaw 升级后导致 feishu plugin 无法使用的问题 All In One Claude Code skills & plugins All In One LLM Benchmark All In One How to fix use the FileZilla FTP upload file error 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, 禁止转载 🈲️,侵权必究⚠️!