Chinaunix首页 | 论坛 | 博客
  • 博客访问: 3284155
  • 博文数量: 515
  • 博客积分: 5116
  • 博客等级: 大校
  • 技术积分: 4137
  • 用 户 组: 普通用户
  • 注册时间: 2006-09-30 11:24
个人简介

黑马王子就是我! 技术认证:系统分析师,网络规划设计师,网络工程师,信息系统监理师,系统集成项目管理师,初级程序员,MCSE,MCDBA,CCNA 目前主攻虚拟化技术,VPN,系统架构,集群和高可用性等。

文章分类

全部博文(515)

文章存档

2023年(11)

2022年(17)

2021年(19)

2020年(28)

2019年(42)

2018年(53)

2017年(41)

2016年(33)

2015年(43)

2014年(25)

2013年(13)

2011年(6)

2010年(28)

2009年(47)

2008年(55)

2007年(26)

2006年(28)

分类: LINUX

2011-06-02 11:07:44

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)
阅读(4512) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~