在linux中出现there are stopped jobs 的解决方法
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
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/ZHB_McCoy/archive/2008/07/06/2619349.aspx
相关文档:
1. HCI层协议概述:
HCI提供一套统一的方法来访问Bluetooth底层。如图所示:
从图上可以看出,Host Controller Interface(HCI) 就是用来沟通Host和Module。Host通常就是PC, Module则是以各种物理连接形式(USB,serial,pc-card等)连接到PC上的bluetooth Dongle。
在Host这一端:application,SDP,L2cap等协议 ......
Service Discovery Protocol(SDP)提供一种能力,让应用程序有方法发现哪种服务可用以及这种服务的特性。
服务发现协议(SDP或Bluetooth SDP)在蓝牙协议栈中对蓝牙环境中的应用程序有特殊的含意,发现哪个服务是可用的和确定这些可用服务的特征。SDP定义了bluetooth client发现可用bluetooth server服务和它们的特征的方法。 ......
===============================================================================
= 欢 迎 阅 读 《 V I M 教 程 》 —— 版本 ......
ln
[root@www ~]# ln [-sf] 來源檔 目標檔
選項與參數:
-s :如果不加任何參數就進行連結,那就是hard link,至於 -s 就是symbolic link
-f :如果 目標檔 存在時,就主動的將目જ ......
1. 检查Oracle的进程
$ ps -ef|grep "ora_"|grep -v grep
oracle 5998 1 0 11:15:59 ? 0:01 ora_j000_PPRD10
oracle 2968 1  ......