博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在linux中出现there are stopped jobs 的解决方法
阅读量:5102 次
发布时间:2019-06-13

本文共 1062 字,大约阅读时间需要 3 分钟。

 

Dealing with Stopped Jobs
Sometimes when you try to logout, you'll get a message saying there are "stopped jobs". These stopped jobs are programs or processes which have been suspended by a ^Z (Ctrl - Z) command. You have to either make the job active again, or get it running properly in the "background" before you can logout.
Stopping a program is useful if you want to temporarily suspend working on one program so you can do something else.
To see a list of stopped jobs, type:
jobs
You will see a list of the stopped programs. Here's an example showing a stopped "learn" session:
[1] + Stopped learn
You can kill this stopped job by typing:
kill %1 (where %1 is the number of the job
to be killed>
Or you can make the program active again by typing:
fg %1 (where %1 is the number of the job)
fg stands for foreground. (You are bringing the program from suspended status back to the foreground.) Once brought back to the foreground, you can continue the program or quit in a normal manner.

转载于:https://www.cnblogs.com/weaver1/archive/2012/10/17/2727310.html

你可能感兴趣的文章
好玩的-记最近玩的几个经典ipad ios游戏
查看>>
MySQL更改默认的数据文档存储目录
查看>>
PyQt5--EventSender
查看>>
Sql Server 中由数字转换为指定长度的字符串
查看>>
Java 多态 虚方法
查看>>
Unity之fragment shader中如何获得视口空间中的坐标
查看>>
万能的SQLHelper帮助类
查看>>
tmux的简单快捷键
查看>>
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
Html5 离线页面缓存
查看>>
《绿色·精简·性感·迷你版》易语言,小到不可想象
查看>>
Android打包key密码丢失找回
查看>>
VC6.0调试技巧(一)(转)
查看>>
类库与框架,强类型与弱类型的闲聊
查看>>
webView添加头视图
查看>>
php match_model的简单使用
查看>>
在NT中直接访问物理内存
查看>>
Intel HEX 文件格式
查看>>
SIP服务器性能测试工具SIPp使用指导(转)
查看>>
php_扑克类
查看>>