#!/bin/bash#setenvexportLANG="en_US.UTF-8"exportPATH=$PATH:/bin/sbin:/usr/sbin#whetherroottorunninguserif[[$(whoami)!=root]];thenecho"pleasesu-rootrunthescript."fiSERVICE=`whichservice`CHKCONFIG=`whichchkconfig`./etc/init.d/functions#settimeinitTime(){yum-y..
分类:
系统相关 时间:
2014-12-02 00:25:59
阅读次数:
319
Hackers’ Crackdown Input:Standard InputOutput:Standard OutputMiracle Corporations has a number of system services running in a distributed computer sy...
分类:
其他好文 时间:
2014-12-01 23:57:25
阅读次数:
350
Java线程的生命周期 一个线程的产生是从我们调用了start方法开始进入Runnable状态,即可以被调度运行状态,并没有真正开始运行,调度器可以将CPU分配给它,使线程进入Running状态,真正运行其中的程序代码。线程在...
分类:
编程语言 时间:
2014-12-01 12:59:37
阅读次数:
233
使用tftp服务器对cisco 3560 配置备份及恢复 Switch#copy running-config tftp:Address or name of remote host []? 192.168.166.236Destination filename [Switch-confg]? 要确...
分类:
系统相关 时间:
2014-11-30 23:03:37
阅读次数:
330
鼠标事件是在用户移动鼠标光标或者使用任意鼠标键点击时触发的。 (1):click事件:click事件于用户在元素敲击鼠标左键,并在相同元素上松开左键时触发。 $('p').click(function(){ alert('click function is running !'); }); (2):...
分类:
Web程序 时间:
2014-11-29 17:21:20
阅读次数:
219
概述 也不晓得为什么,编译eclipse,设置打开,就自动报错: An internal error occurred during: "Running Android Lint"solution打开 eclipse根目录下的 'eclipse.ini'文件,将有'-Xms'和'-Xmx'的两行进....
分类:
移动开发 时间:
2014-11-29 14:31:29
阅读次数:
867
新建了一个项目发现模拟器只有iPhone6,于是添加了其余的模拟器但是在运行项目的时候出现An error was encountered while running(Domain=LaunchSerivcesError, Code=0)解决办法是重启模拟器点击模拟器菜单中的Reset Conten...
分类:
移动开发 时间:
2014-11-28 19:46:57
阅读次数:
285
#Thread #1 is running hereThread.new{ #Thread #2 runs this code}#Thread #1 runs this codeThread.new的同义词是Thread.start和Thread.for代码块中的最后一个表达式的值是线程的值,可以....
分类:
编程语言 时间:
2014-11-28 18:12:35
阅读次数:
198
使用多线程的方式1、函数式:使用threading模块threading.Thread(e.g target name parameters) 1 import time,threading 2 def loop(): 3 print("thread %s is running..." % ...
分类:
编程语言 时间:
2014-11-28 16:02:20
阅读次数:
267
一.线程生命周期 线程的5种状态: 新建(New) ,就绪(Runnable),运行(Running),阻塞(Blocked),死亡(Dead) 线程生命周期图: 二.线程池 1.为什么要使用线程池: (1).提高性能 系统启动一个新线程的成本是比较高的,而使...
分类:
编程语言 时间:
2014-11-28 14:11:08
阅读次数:
178