程序与资源管理中作业管理

1631阅读 0评论2011-09-26 
分类:LINUX

1、直接在后台运行命令用& 
  
  1. [root@localhost shell]# cp hello helloo &
  2. [30] 8732
2、将“当前”作业放到后台“暂停”用[Ctrl]+z
  
  1. [root@localhost shell]# vi ~/.bashrc
  2. [33]+ Stopped vim ~/.bashrc
3、观察当前后台的作业状态用jobs
 
  1. [root@localhost shell]# jobs -l
  2. [1] 2764 Stopped vim shiyan
  3. [2] 3075 Stopped vim if2
  4. [3] 3657 Stopped vim ifelifeise
  5. [4] 3658 Stopped vim ifelse2
  6. [5] 3661 Stopped vim ifelifeise
4、将后台作业拿到前台进行处理用fg
    
5、让作业在后台运行用bg
6、管理后台作业用kill
上一篇:系统的设置文件/etc/corntab
下一篇:用GCC 编译环境所需要的软件包环境配置和安装