在adobe官网下载install_flash_player_11_linux.x86_64.tar.gz;
su
输入密码得到root权限;
tar -xvf install_flash_player_11_linux.x86_64.tar.gz
解压得到插件 libflashplayer.so;
寻找 firefox 安装目录;
whereis firefox
显示...
分类:
其他好文 时间:
2014-06-29 07:31:55
阅读次数:
235
【题目】
Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.
For example:
Given the below binary tree and sum = 22,
5
/ 4 8
/ / 11 13 4
...
分类:
其他好文 时间:
2014-06-20 10:53:08
阅读次数:
181
题目
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 binary t...
分类:
其他好文 时间:
2014-06-07 15:31:32
阅读次数:
179
【题目】
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 binary tree and sum = 22,
5
/ ...
分类:
其他好文 时间:
2014-06-07 13:57:37
阅读次数:
210
题目
Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.
For example:
Given the below binary tree and sum
= 22,
5
...
分类:
其他好文 时间:
2014-06-07 13:47:22
阅读次数:
191
如何修改mysql root密码忘记MySQL
ROOT密码是在MySQ使用中很常见的问题,可是有很多朋友并不会重置ROOT密码,那叫苦啊,特写此文章与大家交流:1、编辑MySQL的配置文件:my.ini一般在MySQL安装目录下有my.ini即MySQL的配置文件。在此配置文件的最后添加如下一行:...
分类:
数据库 时间:
2014-06-06 09:19:50
阅读次数:
327
1 2 OGNL是从ActionContext中获取数据的。 3 4
ActionContext的结构: 5 ValueStack: 6 List:动作类放在此处。取存放在ValueStack中的root的对象的属性,直接写即可
...
分类:
其他好文 时间:
2014-06-05 19:26:57
阅读次数:
471
命令一:rm中的-r参数首先是创建了temp文件,它所属者是xulinux用户,以及xulinux组,权限通过后3句使得任何人不得写,不得读,不得访问该目录;可是在root用户下,通过rm
-r形式使得它强制的删除了temp,强制的访问,强制的读取,强制删除;故而这个命令非常霸气,可以无视权限,且删...
分类:
系统相关 时间:
2014-06-05 16:31:06
阅读次数:
320
假设有一个表,结构如下:root@localhost : yayun 22:59:43>
create table t1 ( -> id int unsigned not null auto_increment, -> id2 int
unsigned not null default ...
分类:
其他好文 时间:
2014-06-05 15:22:16
阅读次数:
240
Given a binary tree, find its maximum depth.The
maximum depth is the number of nodes along the longest path from the root node
down to the farthest le...
分类:
其他好文 时间:
2014-06-05 14:10:38
阅读次数:
304