其他好文[总排行] [月排行] [周排行] [日排行]
Linux kernel 自 2.6.28 开始正式支持新的文件系统 Ext4。 Ext4 是 Ext3 的改进版,修改了 Ext3 中部分重要的数据结构,而不仅仅像 Ext3 对 Ext2 那样,只是增加了一个日志功能而已。Ext4 可以提供更佳的性能和可靠性,还有更为丰富的功能: /. 与 Ext3 兼容。 执行若干条命令,就能从 Ext3 在线迁移到 Ext4,而无须重新格式化磁盘...
分类:其他好文 时间:2014-06-22 19:16:51 阅读:153
在linux vi编辑工具中使用替换命令操作时,会出现明明有匹配查找模式的数据,却报“找不到模式”问题。 原因是vi s///替换操作缺省针对行,若要生效,则需要将光标移动到指定行,再使用s///命令即可。 若要进行批量替换,则使用%s///命令,例如: :%s/192.168.1.8/192.168.20.240/g 其中g表示全局替换。 vi替换命令参考: http...
分类:其他好文 时间:2014-06-22 21:38:47 阅读:562
Ext4 文件系统提供了更佳的性能和可靠性,具有了更为丰富的功能,那么,如何从ext3升级到ext4呢? 首先,我们需要保证系统支持ext4,一般来说,内核版本在2.6.28及以上的版本才支持ext4 其次,如果/boot分区目前是ext3,那么最好保留,因为现在系统上的 grub 很可能不支持 ext4,需要有个commit 的特别版本grub 才能支持 ext4 最后,我们使用以下命令即...
分类:其他好文 时间:2014-06-22 16:19:14 阅读:152
思科三层交换机之下的局域网ra...
分类:其他好文 时间:2014-06-22 18:16:21 阅读:204
Convert Sorted List to Binary Search Tree  Total Accepted: 12283 Total Submissions: 45910My Submissions Given a singly linked list where elements are sorted in ascending order, convert it...
分类:其他好文 时间:2014-06-21 23:57:00 阅读:351
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...
分类:其他好文 时间:2014-06-22 20:59:24 阅读:227
测试了一下在Openstack上使用Multicast。本文是一些测试结果。...
分类:其他好文 时间:2014-06-22 17:56:30 阅读:280
简单的小技巧: 介绍如何在虚拟机VirtualBox 中打开共享文件夹(小技巧,高手勿入)。 To you, maybe too easy ,maybe not. Hope it will help you ....
分类:其他好文 时间:2014-06-22 22:14:41 阅读:221
在使用$.ajax做异步调用的时候,如果success却得不到值 $.ajax({ type:"GET", url:tourl, cache:false, data:"{}", success:function(data){ alert(data); } });   后台这样写的不到值 PrintWr...
分类:其他好文 时间:2014-06-22 18:15:50 阅读:224
VS 使用utf8 编码问题...
分类:其他好文 时间:2014-06-22 16:40:10 阅读:313
1144583144584144585148452
上一页1484515下一页
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!