Ubuntu启动,卡在checking battery statALT +
F1或者CTRL+ALT+F6切换到命令行【CTRL+ALT+F7返回界面】执行sudo gdm start后就可以正常登录了如果还是不行就执行命令sudo
apt-get install gdm安装一下,重新启动,正常进入...
分类:
其他好文 时间:
2014-05-27 02:21:08
阅读次数:
357
private void Time(int i) { Stopwatch sw = new
Stopwatch(); sw.Start(); Thread.Sleep(i); s...
分类:
其他好文 时间:
2014-05-27 01:15:43
阅读次数:
342
pthread_join 函数是会阻塞主线程的,这会让很多java程序员不适应。因为在java中
start以后一个线程就执行执行了。主线程不会被阻塞。而在linux中 join是会阻塞的。那么如何使用join的时候
不阻塞主线程呢。我给出了一个解决方法。#include #include void...
分类:
编程语言 时间:
2014-05-24 05:59:40
阅读次数:
571
#include#include#include#includeusing namespace
std;int bigswap(char* a,int start,int end){ while(start<end) {
swap(a[start],a[end]); ...
分类:
其他好文 时间:
2014-05-24 04:53:54
阅读次数:
208
一、前后台代码:Global.cs:using
System.Web.Routing;。。。void Application_Start(object sender, EventArgs e) { //
在应用程序启动时运行的代码 //RegisterRoutes(); RegisterRoutes...
分类:
Web程序 时间:
2014-05-24 04:47:43
阅读次数:
295
服务器端:监听器 lsnrctl启动监听 lsnrctl start
[LISTENER]查看监听 lsnrctl status 或者 lsnrctl serviceC:\Documents and
Settings\Administrator>lsnrctl serviceLSNRCTL for ...
分类:
数据库 时间:
2014-05-24 02:26:13
阅读次数:
340
PowerShell中有Measure-Command命令用于测量进程运行时间,和Unix下time命令的作用相似。Measure-Command
{ start-process command "argument" -wait }比如,Measure-Command { start-process...
错误:Server Tomcat v6.0 Server at localhost was
unable to start within 45 seconds错误提示就是我们限定了部署的时间导致的错误。修改
workspace\.metadata\.plugins\org.eclipse.wst.s...
分类:
编程语言 时间:
2014-05-19 17:43:39
阅读次数:
280
Given a list, rotate the list to the right
bykplaces, wherekis non-negative.For
example:Given1->2->3->4->5->NULLandk=2,return4->5->1->2->3->NULL.start...
分类:
其他好文 时间:
2014-05-19 16:25:44
阅读次数:
234
http://blog.163.com/xxciof/blog/static/7978132720095193113752/
oracle中 connect by prior 递归算法 Oracle中start with...connect by prior子句用法 connect
by 是结构化查...
分类:
数据库 时间:
2014-05-19 14:45:10
阅读次数:
321