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
One of my Ubuntu systems would pop up the following message multiple times after logging in:System program problem detectedDo you want to report the p...
分类:
其他好文 时间:
2014-06-24 10:18:19
阅读次数:
360
流程====1. 了解实验细节2. 分析源代码3. 初步实现4. 最终实现了解实验细节----####需要修改的文件与修改后的目的1. extent_server.cc 实现四个操作,分别是put(key, value), get(key), remove(key), getattr(key)需要考...
分类:
其他好文 时间:
2014-06-24 09:48:35
阅读次数:
204
比如apt-cache show geditapt-cache show vim说明:由于图形化界面方法(如Add/Remove... 和Synaptic Package Manageer)比较简单,所以这里主要总结在终端通过命令行方式进行的软件包安装、卸载和删除的方法。一、Ubuntu中软件安装方...
分类:
其他好文 时间:
2014-06-24 08:54:14
阅读次数:
338
extent_server实现四个操作,分别是put(key, value), get(key), remove(key), getattr(key)需要考虑时间,文件长度等属性yfs_clientextent_client 作为成员变量inum 成员变量,文件的标示符 //为什么这是一个成员变量,...
分类:
其他好文 时间:
2014-06-23 07:03:31
阅读次数:
311
在struts映射中重复出现的模式
动作方法
描述
下一个动作方法
add
为save准备网页
save
save
提交INSERT
list
edit
为update准备网页
update
update
提交UPDATE
list
destroy
为remove准备网页
remove
remov...
分类:
其他好文 时间:
2014-06-22 19:41:19
阅读次数:
194
Given a sorted linked list, delete all duplicates such that each element appear only once.For example, Given 1->1->2, return 1->2. Given 1->1->2->3->3...
分类:
其他好文 时间:
2014-06-21 07:30:11
阅读次数:
157
Given an array and a value, remove all instances of that value in place and return the new length.The order of elements can be changed. It doesn't mat...
分类:
其他好文 时间:
2014-06-21 07:17:47
阅读次数:
210
How to remove a network bridge in Windows Server 2008 R2症状:删除网桥的时候,按理说应该在“网络连接”中选择要被删除的网桥,右键点击,然后选择“删除”。但是实际操作中发现网桥很难删掉。有时候会报告“没有权限”错误,有时候报告“一个未知错误”,有...
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.Do not allocate extra space for...
分类:
其他好文 时间:
2014-06-20 21:48:33
阅读次数:
254