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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
Y
Y Combinator Blog
博客园 - 【当耐特】
V
Visual Studio Blog
GbyAI
GbyAI
V
V2EX
P
Proofpoint News Feed
Microsoft Azure Blog
Microsoft Azure Blog
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
A
About on SuperTechFans
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
N
Netflix TechBlog - Medium
aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
量子位
MongoDB | Blog
MongoDB | Blog
有赞技术团队
有赞技术团队
人人都是产品经理
人人都是产品经理
Stack Overflow Blog
Stack Overflow Blog
小众软件
小众软件

噜啦 - Linux笔记本

du和ls查看文件大小不同的原因 - 噜啦 du和ls查看文件大小不同的原因 - 噜啦 服务管理工具 systemctl - 噜啦 服务管理工具 systemctl - 噜啦 进程的控制与进程之间的关系 - 噜啦 ps 和 top 命令查看进程 - 噜啦 ps 和 top 命令查看进程 - 噜啦 Grub 配置文件介绍以及忘记root密码的解决方法 - 噜啦 Grub 配置文件介绍以及忘记root密码的解决方法 - 噜啦 CentOS 手动升级/安装内核 - 噜啦 CentOS 手动升级/安装内核 - 噜啦 网络管理和配置文件 - 噜啦 网络管理和配置文件 - 噜啦 网络故障排除命令 - 噜啦 网络故障排除命令 - 噜啦 route 查看路由 - 噜啦 route 查看路由 - 噜啦 ifconfig 网络管理 - 噜啦 ifconfig 网络管理 - 噜啦
进程的控制与进程之间的关系 - 噜啦
博主: 噜啦 · 2020-05-18 · via 噜啦 - Linux笔记本

进程的控制与进程之间的关系

  • 发布时间:
  • 1759 次浏览
  • 244字数
  • 分类: Linux笔记本
  1. 首页
  2. 正文  

调整进程优先级
nice -n [脚本路径]

运行脚本后,查看进程信息
top -n [pid]

调整运行中进程的优先级
renice -n [pid]

后台运行进程

bash sh &
或者
./sh &

使用jobs查看任务

当前台进程占用资源过高,可使用ctrl + z挂起(Stopped)

使用fg [任务编号]切换至前台运行,bg [任务编号]切换到后台运行(Running)

赞赏作者

如果觉得我的文章对你有用,请随意赞赏

进程的控制与进程之间的关系

 •