Linux ext2/ext3 文件删除恢复工具ext3grep安装使用2010-08-23 18:03:10|分类:默认分类|举报|字号订阅一.安装前系统环境检查(我的实验环境:AS5.22.6.18-92.el5内核)1.)查看所需要的依赖包rpm -qa |grep e2fsprogse2fs...
分类:
其他好文 时间:
2014-06-28 19:29:47
阅读次数:
298
Given a sorted array of integers, find the starting and ending position of a given target value.Your algorithm's runtime complexity must be in the ord...
分类:
其他好文 时间:
2014-06-28 19:23:45
阅读次数:
200
1.首先在命令行输入mysql,看一下本地计算机上是否有mysql。 2.卸载mysql服务: 首先查看安装的rpm的包:rpm –qa |grep mysql 对之前的服务进行删除。rpm –e mysql –server yum –y remove mysql-lib-5.1.52*。 3.下载...
分类:
数据库 时间:
2014-06-28 18:56:02
阅读次数:
628
1、查询是否安装了软件rpm -qa | grep -i 软件名rpm -qa | grep php2、删除已安装的软件包根据第一步显示的软件包名,一个个删除sudo rpm -e -- 包名 # 普通删除模式sudo rpm -e --nodeps 包名 #强力删除模式,如果用上面命令删除时,提示...
分类:
其他好文 时间:
2014-06-28 18:04:55
阅读次数:
209
一般在本地电脑上批量替换文本有许多工具可以做到,比如sublime text ,但大多服务器上都是无图形界面的,为此收集了几条针对linux命令行 实现批量替换文本内容的命令:1.批量查找某个目下文件的包含的内容,例如:# grep -rn "要找查找的文本" ./2.批量查找并替换文件内容。# s...
分类:
系统相关 时间:
2014-06-28 17:11:49
阅读次数:
301
【Unity3D Script Keynote】1、通过GameObject.CreatePrimitive()来创建对象。AddComponent()用于给对象添加一个组件。 2、GameObject.Find()方法中传入对象的在Hierarchy中的路径名,即可获取该对象。 3、通过Des.....
分类:
其他好文 时间:
2014-06-28 16:30:34
阅读次数:
277
Given amxngrid filled with non-negative numbers, find a path from top left to bottom right whichminimizesthe sum of all numbers along its path.Note:Yo...
分类:
其他好文 时间:
2014-06-28 15:55:58
阅读次数:
196
Given an array of integers, every element appears three times except for one. Find that single one.Note:Your algorithm should have a linear runtime co...
分类:
其他好文 时间:
2014-06-28 13:44:09
阅读次数:
188
find手册中对time的解释:以 atime 为例:-atime n File was last accessed n*24 hours ago. When find figures out how many 24-hours periods ago the file was last...
分类:
其他好文 时间:
2014-06-28 12:09:59
阅读次数:
222
Install apache2To execute the install command in terminal:sudo apt-get install apache2Then, we can find that the apache2 has been installed in "/etc/"...
分类:
Web程序 时间:
2014-06-24 09:39:53
阅读次数:
363