(FileStream、StreamWriter 、StreamReader 、File、FileInfo、Directory、DirectoryInfo、Path、Encoding)C#文件与流(FileStream、StreamWriter 、StreamReader 、File、FileInf...
分类:
其他好文 时间:
2014-06-25 22:36:54
阅读次数:
262
[root@localhost ipvsadm-1.26]# makemake -C libipvsmake[1]: Entering directory `/usr/local/soft/ipvsadm-1.26/libipvs'gcc -Wall -Wunused -Wstrict-protot...
分类:
其他好文 时间:
2014-06-25 22:30:05
阅读次数:
1074
http://blog.csdn.net/byane/article/details/6928519传统的文件系统中,需要维护目录的层次结构,使用dentry,inode,directory等复杂结构保存元数据的信息;而面对更多定制文件系统的需求,越来越多的系统考虑使用key-value形式保存文件...
分类:
数据库 时间:
2014-06-25 22:22:15
阅读次数:
404
JNDI(Java Naming and Directory Interface)既java命名和服务接口。...
分类:
编程语言 时间:
2014-06-25 08:07:09
阅读次数:
206
os严格上是软件,为计算机提供资源和app运行环境. 特称为内核.
内核的接口被成为system call;然后库函数对system call进行了封装;shell是特殊app,为运行其他程序提供了一个接口.
shell是个命令行解释器,读取输入,执行命令.
unix文件系统是由directory和file组成.目录起点成为root,名字是/.
文件属性指类型\大小\所有者\权限以及修改时...
分类:
其他好文 时间:
2014-06-25 07:03:11
阅读次数:
292
碰到一个shell中函数调用的小问题,记录一下。
shell中函数有三种调用方式,一种是在文件前面定义函数,然后在下面直接调用;一种是通过载入shell,在shell中直接调用;第三种是将函数写入文件,然后在其他shell中调用函数。
这里写一下关于第三种方法的例子:
is_it_a_directory()
{
if [ $# -lt 1 ];then
echo "is_it_a_dir...
分类:
其他好文 时间:
2014-06-24 20:17:56
阅读次数:
195
apt-get install lib32z1 如果libz.so.1: cannot open shared object file: No such file or directory在/etc/ld.so.conf中加入/usr/lib 增加类库所有路径 /sbin/ldconfig –v」来...
分类:
其他好文 时间:
2014-06-23 07:44:47
阅读次数:
306
可以用如下的C#代码可验证这个上限值。
// --------------------------------------------------------------------------------------------------------------------
//
// Respect the work.
//
//
// The program.
//
//...
启动Tomcat后出现严重: Error starting static Resources java.lang.IllegalArgumentException: Document base D:\Program Files\apache-tomcat-6.0.35\webapps\jqz does not exist or is not a readable directory
这种错误可能...
分类:
编程语言 时间:
2014-06-22 15:27:58
阅读次数:
3817
在Bootstrap中使用
$url = constant ( "APPLICATION_PATH" ) . DIRECTORY_SEPARATOR . 'configs' . DIRECTORY_SEPARATOR . 'application.ini';
$dbconfig = new Zend_Config_Ini ( $url, "mysql" );
// $db = Zen...
分类:
数据库 时间:
2014-06-22 07:52:08
阅读次数:
205