码迷,mamicode.com
首页 >  
搜索关键字:running    ( 3503个结果
Linux 调度器发展简述
引言进程调度是操作系统的核心功能。调度器只是是调度过程中的一部分,进程调度是非常复杂的过程,需要多个系统协同工作完成。本文所关注的仅为调度器,它的主要工作是在所有 RUNNING 进程中选择最合适的一个。作为一个通用操作系统,Linux 调度器将进程分为三类:交互式进程此类进程有大量的人机交互,因此...
分类:系统相关   时间:2014-09-11 23:41:32    阅读次数:474
64位Win7使用32位系统共享出的网络打印机
打印机服务器(Host):HPLaserJ1020激光打印机,Server2003OS,32bit本机:Win764Bit一直安装不成功,参考下面文章,解决:(原文地址:http://answers.microsoft.com/en-us/windows/forum/windows_7-hardware/cannot-connect-to-network-printer-from-windows-7/256167d6-d6b..
分类:Windows程序   时间:2014-09-11 15:29:17    阅读次数:425
ASP.NET的后台Long-Running任务
首先,不推荐在ASP.NET后台中,启动Long-Running的任务。因为无论是用的Task还是ThreadPool.QueueUserWorkItem,ASP.NET不会知道它们在后台运行,这会产生一些问题,比如:当修改web.config的时候,会触发Appdomain被回收(尽管此时IISweb服务器进程w3wp.exe仍然活着),IIS本..
分类:Web程序   时间:2014-09-09 13:42:39    阅读次数:231
sqoop1.4.5 导入 hive IOException running import job: java.io.IOException: Hive exited with status 1
sqoop 导入 hive hive.HiveImport: Exception in thread "main" java.lang.NoSuchMethodError: org.apache.thrift.EncodingUtils.setBit(BIZ)B ERROR tool.ImportTool: Encountered IOException running import ...
分类:编程语言   时间:2014-09-08 03:15:26    阅读次数:432
ubuntu14.04显卡驱动问题(amd5600k集显7650d)
回到家,进入win7百度了一下,果然是ati显卡驱动问题!按照网上方法,重启电脑进入ubuntu的rescure模式,进入有个选项,显示“The system is running in low-graphics mode.”,果然是ati显卡引起的。
分类:其他好文   时间:2014-09-06 10:58:33    阅读次数:204
Linux进程的睡眠和唤醒简析
COPY FROM:http://www.2cto.com/os/201204/127771.html1 Linux进程的睡眠和唤醒在Linux中,仅等待CPU时间的进程称为就绪进程,它们被放置在一个运行队列中,一个就绪进程的状 态标志位为TASK_RUNNING。一旦一个运行中的进程时间片用完, ...
分类:系统相关   时间:2014-09-05 15:41:41    阅读次数:397
基于python脚本的对拍debug
首先,这是python脚本import os;for i in range(0,20): print ("Case:"+str(i)); print ("randoming"); os.system("randomdata.exe"); print("running righ...
分类:编程语言   时间:2014-09-03 22:35:57    阅读次数:475
WARNING OGG-01223 TCP/IP error 111 (Connection refused)
一:问题描述GGSCI (source_pc) 64> info allProgram Status Group Lag at Chkpt Time Since ChkptMANAGER RUNNING EXTRACT RUNNING EORA_T1 00:00:00 00:00:06 EXTRAC...
分类:其他好文   时间:2014-09-03 16:29:16    阅读次数:263
我写的监控脚本
1#!/bin/bashpid=`ps-ef|greptomcat8082|grep-vgrep|wc-l`port=`netstat-anplt|grep8082|wc-l`path=/usr/tomcat/tomcat8082/bin/startup.shif[$pid=1-a$port-eq1];thenecho"tomcatisrunning"elseecho"tomcat8082isstopedandnowlet‘srunit"sleep3echo"nowrestarttomcat8082"[-x$..
分类:其他好文   时间:2014-09-03 11:26:37    阅读次数:237
Implementing a java agent to instrument code (copy from http://chimpler.wordpress.com/2013/11/05/implementing-a-java-agent-to-instrument-code/)
With a system running 24/7, you have to make sure that it performs well at any time of the day. Several commercial solutions exist to monitor the perf...
分类:编程语言   时间:2014-09-02 21:08:15    阅读次数:338
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!