LAMP指的Linux(操作系统)、ApacheHTTP服务器,MySQL解压mysql绿色软件包[root@host2lamp]#tar-zxvfmysql-5.6.15-linux-glibc2.5-x86_64.tar.gz-C/usr/local[root@host2lamp]#groupaddmysql[root@host2lamp]#useradd-r-gmysqlmysql[root@host2lamp]#cd/usr/local[root@host2sr..
分类:
其他好文 时间:
2014-06-02 14:13:49
阅读次数:
288
BugzillaforCentOS5.4制作人,陈浩时间:2014.4.25原创文件夹BugzillaforCentOS5.4
一、装系统 1)新建虚拟机15G硬盘,512M内存 2)选择CentOS64-bit(依据自己版本号情况选择) 3)网络选择桥接网络,已方便兴许网络操作
4)开启电源,安装...
分类:
其他好文 时间:
2014-06-02 14:04:41
阅读次数:
313
如果你在工作中需要使用到线程,或是需要在多线程环境下编程,那么了解线程的生命周期(Life Cycle of Thread)以及线程的状态(Thread States)是很有必要的。
正如我们在上一篇文章中了解到的,通过实现Runnable接口或是继承Thread类,我们可以创建一个Java线程类。如果想要启动线程,我们需要创建一个线程类,然后调用它的start()方法来执行run()中...
分类:
编程语言 时间:
2014-06-02 07:07:17
阅读次数:
288
^[1][3-8]+\\d{9}^首字母[1]必须是1,方格可以去掉吧。。[3-8]第二个数字为3-8之间+加表示至少一个[3-8]\\d表示数字{9}表示9个,就是9个数字。using
System;using System.Collections.Generic;using System.Run...
分类:
移动开发 时间:
2014-06-02 02:11:42
阅读次数:
394
让我们开始来从入门了解一下 Java
的并发编程。本文主要介绍如何开始创建线程以及管理线程池,在 Java 语言中,一个最简单的线程如下代码所示:Runnable runnable = new
Runnable(){ public void run(){ System.out.prin...
分类:
编程语言 时间:
2014-06-02 01:39:42
阅读次数:
263
public abstract
classWindowextendsObjectjava.lang.Object?android.view.WindowClass
OverviewAbstract base class for a top-level window look and behavior...
1. 用UltraISO,将CentOS写入U盘,然后将两个CentOS
iso文件也拷贝到u盘中,由于u盘FAT32的限制,需要调整第一个iso文件的尺寸,剪切到4GB以内即可拷贝进u盘2. 用u盘安装,没啥好说,3.
拔下u盘,重启动后,出现missing operation system的错误...
分类:
其他好文 时间:
2014-06-02 00:31:22
阅读次数:
360
用root登陆,安装mysqlyum -y install mysql-server ←
安装MySQLSetting up Install Processyum -y install php-mysql ← 安装php-mysqlSetting
up Install Process然后,配置MyS...
分类:
数据库 时间:
2014-06-02 00:00:33
阅读次数:
418
/**
* @author gao
*/
package gao.org;
public class RunnableDemo implements Runnable{
@Override
public void run() {
// TODO Auto-generated method stub
for(int i=0;i<10;i++){
System.out.pri...
分类:
编程语言 时间:
2014-06-01 18:12:33
阅读次数:
441
现在才开始着手写点Nodejs 东西.之前都是在ubuntu系统和centos系统下进行编程的,现在来了点兴趣,
搞下windows下的Nodejs 编程开发.主要是为了方便.
Don`t share your happiness with the one who don`t care about you .
I hope you are not the one.
好了,首先我们到官方网站...