??
#号提示是root用户的标志,而ubuntu默认的是普通用户,此时提示是$,并且并不能通过su切换用户命令进行切换,通常来说使用sudo即可完成对应的工作,但是如果在某些情况下希望使用带#的提示符,可以打开一个带超级用户权限的shell
alloy@ubuntu:~$ sudo -s
[sudo] password for alloy:
root@ubuntu:~#...
分类:
其他好文 时间:
2014-07-22 23:06:12
阅读次数:
281
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
写一个php文件,就是配置数据库的,可以直接把下面的代码复制到一个php文件中,让后改一下数据库的路径以及用户名,密码这段代码就可以使用了。
返回的是json数据
一下为代码,当然了也可以根据这些代码封装成函数,增加其重用性。
<?php
// phpinfo();
//创建数据库连接
$conn = mysql_connect("127.0.0.1","root","root")...
分类:
数据库 时间:
2014-07-22 23:03:34
阅读次数:
302
1.卸载ibus输入法: sudo apt-get remove ibus
sudo为取得root权限的意思,Ubuntu系统默认root账户关闭,很多操作需要取得root 权限才可以进行
killall ibus-daemon
sudo apt-get purge ibus ibus-gtk ibus-gtk3 ibus-pinyin* ibus-sunpinyin i...
分类:
其他好文 时间:
2014-07-22 23:01:34
阅读次数:
312
用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
一.开发环境
eclipse+tomcat+struts-2.2.3
eclipse下载地址:http://www.eclipse.org/downloads/
tomcat下载地址:http://tomcat.apache.org/download-70.cgi
struts下载地址:http://struts.apac...
分类:
其他好文 时间:
2014-04-30 22:45:39
阅读次数:
404
服务器端采用struts2来处理文件上传。
所需环境:
jquery.js
ajaxfileupload.js
struts2所依赖的jar包
及struts2-json-plugin-2.1.8.1.jar
编写文件上传的Action
package com.ajaxfile.action;
import java.io.File;
import java.io.Fi...
分类:
其他好文 时间:
2014-04-30 22:43:38
阅读次数:
392
1.打开/etc/lightdm/lightdm.conf这个文件
2.将"autologin-user=wzk"修改为"autologin-user=root"...
分类:
其他好文 时间:
2014-04-30 22:26:39
阅读次数:
252
${name}
${parent.name}
${description}
删除
修改
上面的删除与修改都需要通过OGNL表达式为其指定一个id,这个id其实是在list显示的时候已经通过ognl表达式算好了的,当点击删除时,就会去请求
department_delete?id=xxx在请求到这个ac...
分类:
其他好文 时间:
2014-04-30 22:14:38
阅读次数:
365
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