上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 53 下一页
摘要: 元资料(Metadata),又称元数据、诠释资料、中继资料后设资料,为描述资料的资料(data about data),主要是描述资料属性(property)的资讯,用来支持如指示储存位置、历史资料、资源寻找、文件记录等功能。元资料算是一种电子式目录,为了达到编制目录的目的,必须在描述并收藏资料的内 阅读全文
posted @ 2016-04-07 14:56 圆旭 阅读(331) 评论(0) 推荐(0) 编辑
摘要: tinyint格式: TINYINT[(M)] [UNSIGNED] [ZEROFILL] M默认为4 Tinyint占用1字节的存储空间,即8位(bit)。 带符号的范围是-128到127。无符号的范围是0到255。 tinyint(4) tinyint(80) 的确都是一样的,4,80对存储和精 阅读全文
posted @ 2016-04-07 10:05 圆旭 阅读(2614) 评论(0) 推荐(1) 编辑
摘要: A lesser known trick is that mod_php maps stderr to the Apache log. And, there is a stream for that, so file_put_contents('/path/to/file.log', $foo . 阅读全文
posted @ 2016-04-05 18:01 圆旭 阅读(791) 评论(0) 推荐(0) 编辑
摘要: question: tinycore在boot时, 运行bootlocal.sh脚本,其中有局域网通信的部分,一直跑不通,测试了一下才知道是运行bootlocal.sh的阶段,网络可能没有配置好,ip地址尚未分配。 answer: 将如下代码放置于网络通信的代码前边,此代码的作用是等待网卡配置好,一 阅读全文
posted @ 2016-04-01 15:44 圆旭 阅读(470) 评论(0) 推荐(0) 编辑
摘要: sudo systemctl list-unit-files 阅读全文
posted @ 2016-03-29 09:31 圆旭 阅读(2242) 评论(0) 推荐(0) 编辑
摘要: 转自: http://jingyan.baidu.com/article/425e69e6aeede8be14fc1675.html 阅读全文
posted @ 2016-03-25 16:38 圆旭 阅读(140) 评论(0) 推荐(0) 编辑
摘要: Continuous integration (CI) is the practice, in software engineering, of merging all developer working copies to a shared mainline several times a day 阅读全文
posted @ 2016-03-24 15:47 圆旭 阅读(301) 评论(0) 推荐(0) 编辑
摘要: vi /etc/inittab 可以看到这样两行: # To set a default target, run:# systemctl set-default TARGET.target 故: sudo systemctl set-default multi-user.target 即可 转自:  阅读全文
posted @ 2016-03-24 14:20 圆旭 阅读(260) 评论(0) 推荐(0) 编辑
摘要: Use git rm foo to stage the file for deletion. (This will also delete the file from the file system, if it hadn't been previously deleted. It can, of 阅读全文
posted @ 2016-03-23 11:04 圆旭 阅读(371) 评论(0) 推荐(0) 编辑
摘要: 我们先写一个简单的脚本,执行以后再解释各个变量的意义 # touch variable # vi variable 脚本内容如下: #!/bin/sh echo "number:$#"echo "scname:$0"echo "first :$1"echo "second:$2"echo "argu 阅读全文
posted @ 2016-03-22 16:47 圆旭 阅读(156) 评论(0) 推荐(0) 编辑
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 53 下一页