码迷,mamicode.com
首页 >  
搜索关键字:context root cannot be empty    ( 74556个结果
51 ubuntu下打开#号提示(切换到root)
?? #号提示是root用户的标志,而ubuntu默认的是普通用户,此时提示是$,并且并不能通过su切换用户命令进行切换,通常来说使用sudo即可完成对应的工作,但是如果在某些情况下希望使用带#的提示符,可以打开一个带超级用户权限的shell alloy@ubuntu:~$ sudo -s [sudo] password for alloy:  root@ubuntu:~#...
分类:其他好文   时间:2014-07-22 23:06:12    阅读次数:281
Linux上机笔记(1)
1 linux 用户相关指令的学习   用户 root   密码----   su 从任何用户切换到root   groupadd   useradd   password  创建用户   groupadd stu11 给系统添加一个用户组stu11   useradd -g stu11 zhang 创建一个用户zhang 并将其添加到stu11用户组   passwd zhang 给...
分类:系统相关   时间:2014-07-22 23:04:33    阅读次数:451
EJB3.0与Spring
总的来看Spring+Hibernate与JPA很相似,它们都是基于pojo的持久化。 Hibernate Session和JPA Entity Manager基本上等价,但是要记住他们的两个重要区别。        Hibernate session是一个实体缓存也是一个ORM引擎的接口。        而JPA中这两个概念是分开的。Persistence context作为缓存而...
分类:编程语言   时间:2014-07-22 23:03:55    阅读次数:379
php--连接数据库【不懂php也能写接口】
写一个php文件,就是配置数据库的,可以直接把下面的代码复制到一个php文件中,让后改一下数据库的路径以及用户名,密码这段代码就可以使用了。 返回的是json数据 一下为代码,当然了也可以根据这些代码封装成函数,增加其重用性。 <?php // phpinfo(); //创建数据库连接 $conn = mysql_connect("127.0.0.1","root","root")...
分类:数据库   时间:2014-07-22 23:03:34    阅读次数:302
is not in the sudoers file解决方法
用sudo时提示"xxx is not in the sudoers file. This incident will be reported.其中XXX是你的用户名,也就是你的用户名没有权限使用sudo,我们只要修改一下/etc/sudoers文件就行了。 下面是修改方法:1)进入超级用户模式。也...
分类:其他好文   时间:2014-05-01 22:46:43    阅读次数:465
byte[] bytes和string转换
publicstaticstringToHexString(byte[]bytes)//0xae00cf=>"AE00CF"{stringhexString=string.Empty;if(bytes!=null){StringBuilderstrB=newStringBuilder();for(i...
分类:其他好文   时间:2014-05-01 19:08:41    阅读次数:334
libpcre.so.1 cannot be found
./nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory...
分类:其他好文   时间:2014-04-30 22:43:38    阅读次数:346
ubuntu 杂谈(六)------ubuntu 开机直接进入root用户
1.打开/etc/lightdm/lightdm.conf这个文件 2.将"autologin-user=wzk"修改为"autologin-user=root"...
分类:其他好文   时间:2014-04-30 22:26:39    阅读次数:252
Teradata Express for VMware
1,按照vmware,导入系统(注意td提供的版本是64位的) 2,linux系统:root/root 3,配置ip: Enter a cop entry in the linux hosts file (/etc/hosts accessible from the linux command line in the VMware console, ie. c:>vi /etc/host...
分类:其他好文   时间:2014-04-30 22:13:39    阅读次数:503
Android弹窗中的spinner异常解决办法
弹窗常用AlertDialog来袜,因为AlertDialog可以很方便的添加所要的项。比如确定/取消按钮,自定义的标题栏、自定义的信息布局等。在自定义布局时,比如我们采用LinearLayout来布局,然后再往LinearLayout中添加一些项,比如TextView、EditText等。这些都很容易实现。 不过,如果添加spinner,可能就会出问题了。找了很久,发现是context引起的。...
分类:移动开发   时间:2014-04-30 22:13:38    阅读次数:422
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!