windows 2008 R2转移五大角色 regsvr32 schmmgmt Active
Directory架构 架构主机 Active Directory域和信任关系 域命令主机 Active Directory用户和计算机
PDC模拟器、RID主机、基础架构主机CMD->ntd...
分类:
其他好文 时间:
2014-05-19 19:35:30
阅读次数:
273
一、 安装JDK从ORACLE官网下载适用于LINUX系统下的JDK(官网地址:
http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html);切换系统登录账户为root,命令如下:
s...
分类:
系统相关 时间:
2014-05-19 18:10:55
阅读次数:
499
脚本名:power.sh脚本内容:Shell代码 #!/bin/sh username3=$1
dir_name2=$2 # get existing directory file_path=$dir_name2 while true do if [ -d
$fil...
分类:
系统相关 时间:
2014-05-18 18:49:24
阅读次数:
319
1、我会命令adb uninstall 先卸载我们有签名的安装包。
2、用开发模式在手机上运行我们的应用。
3、然后测试就把手机拿走了,就用应用管理器把我们的应用卸载了。
4、继续装我们的开发包,死活也装不了。我拿到手机也没有办法。试了很久,差点就要root手机了,但是手机又不是我的,没有办法root。
5、网上提供此资料
http://xusaomaiss.javaeye.c...
分类:
移动开发 时间:
2014-05-18 14:04:32
阅读次数:
271
python创建二叉树,源代码如下:
#!/usr/bin/python
class node():
def __init__(self,k=None,l=None,r=None):
self.key=k;
self.left=l;
self.right=r;
def create(root):
a=raw_input('enter a key:');
if a is '#...
分类:
编程语言 时间:
2014-05-18 09:27:13
阅读次数:
384
#include
#include
#include //system(); 这个指令需要用到此头文件
#include //toupper要用到
void main()
{
char letter;
do{
printf("A Display directory listling\n");
printf("B Display disk information\n");
...
分类:
其他好文 时间:
2014-05-18 06:46:07
阅读次数:
292
对于本题,想到一个中序遍历后,判别是否为回文串的方法,却WA多次
class Solution {
public:
vector vectorValue;
void inOrder(TreeNode* root)
{
if(root!=NULL)
{
inOrder(root->left);...
分类:
其他好文 时间:
2014-05-18 06:38:58
阅读次数:
294
mysqldumpslow报错:Died at /usr/local/mysql/bin/mysqldumpslow line 161, 总结:是因为top数目太多了,mysqldumpslow遍历不过来的缘故。/usr/local/mysql/bin/mysqldumpslow -s -t 15 /root/db01-102-slow.log 1,把r去掉试试,还是报错,参数不识别。[root@...
分类:
数据库 时间:
2014-05-18 04:40:51
阅读次数:
456
1、
??
Path Sum
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.
For example:
Given the below...
分类:
其他好文 时间:
2014-05-18 03:25:06
阅读次数:
301
修改mysql用户密码目录mysqladmin命令UPDATE user 语句SET
PASSWORD
语句root密码丢失的情况(待验证)mysqladmin命令(回目录)格式如下(其中,USER为用户名,PASSWORD为新密码):mysqladmin -u
USER -p password P...
分类:
数据库 时间:
2014-05-17 23:04:43
阅读次数:
396