1.命令+& 让命令在后台运行2.ctrl+z 将正在运行的程序放到后台,并且暂停程序3.jobs jobs可查看放到后台执行的程序,jobs -l显示后台程序的PID等详细信息 jobs查看的程序的运行状态:running, stopped, Terminated running 表示正...
分类:
系统相关 时间:
2015-05-31 12:12:20
阅读次数:
194
使用grunt serve运行时遇到一问题:y@y:ydkt$ grunt serveRunning "serve" taskRunning "clean:server" (clean) taskCleaning .tmp...OKRunning "env:all" (env) taskRunnin...
分类:
其他好文 时间:
2015-05-30 10:34:36
阅读次数:
138
网上有很多manifest的版本,mingw与vs系列也有不同的解决方案,不管那么多,我是使用这篇文章解决这个问题的:So it turns out that I had another bug that caused the non-elevated running branch to run i...
分类:
其他好文 时间:
2015-05-30 00:40:55
阅读次数:
479
线程有5种状态:新建状态,就绪状态,运行状态,阻塞状态,死亡状态。线程池也有5种状态;然而,线程池不同于线程,线程池的5种状态是:RUNNING, SHUTDOWN, STOP, TIDYING, TERMINATED。线程池的拒绝策略,是指当任务添加到线程池中被拒绝,而采取的处理措施。当任务添加到线程池中之所以被拒绝,可能是由于:第一,线程池异常关闭。第二,任务数量超过线程池的最大限制。线程池共包括4种拒绝策略,它们分别是:AbortPolicy, CallerRunsPolicy, DiscardOld...
分类:
编程语言 时间:
2015-05-29 21:50:47
阅读次数:
197
问题及代码:
#include
#include
#include
using namespace std;
enum vehicleStaus {rest, running}; //车辆状态:泊车、行进
class vehicle //车辆类
{
protected:
int maxSpeed; //最大车速
int currentSpee...
分类:
其他好文 时间:
2015-05-29 18:20:38
阅读次数:
140
一、1、关闭selinux及防火墙2、在/etc/hosts文件里加入ip及对应的主机名。3、修改配置文件:zabbix.conf.php /opt/data/apache2/htdocs/zabbix/conf/zabbix.conf.php --zabbix web目录下面编辑zabbix.co...
分类:
其他好文 时间:
2015-05-29 17:33:03
阅读次数:
208
Many system administrators make a practice of using GNU Screen or tmux to manage jobs running in the terminal. If you have a long-running job that you...
分类:
其他好文 时间:
2015-05-28 14:02:19
阅读次数:
146
1:开始测试tpcc_start -h server_host -P port -d database_name -u mysql_user \ -p mysql_password -w warehouses -c connections -r warmup_time \ -l running_ti...
分类:
数据库 时间:
2015-05-26 20:39:44
阅读次数:
181
一、关闭防火墙1.先查看防火墙状态[root@bogon~]#systemctlstatusfirewalldfirewalld.service-firewalld-dynamicfirewalldaemonLoaded:loaded(/usr/lib/systemd/system/firewalld.service;enabled)Active:active(running)since一2015-05-2522:53:54CST;3min18sagoMainPID:979(f..
分类:
系统相关 时间:
2015-05-26 06:52:42
阅读次数:
301
1.首先明确igraph能做什么,为何使用。
2.安装。
3.测试。
Installing collected packages: python-igraph
Running setup.py install for python-igraph
Successf...
分类:
编程语言 时间:
2015-05-25 20:28:04
阅读次数:
895