Hibernate介绍Hibernate是一种Java语言下的对象关系映射解决方案。它是使用GNU宽通用公共许可证发行的自由、开源的软件。它为面向对象的领域模型到传统的关系型数据库的映射,提供了一个使用方便的框架。Hibernate相关文档http://www.open-open.com/open2...
分类:
系统相关 时间:
2014-06-25 13:10:45
阅读次数:
249
linux命令strings,其man信息如下:strings(1) GNU Development Tools strings(1)NAME strings - 显示文件中的可打印字符总览 (SYNOPSIS) strings [-a|-|--all] [-f|--print-file-name]...
分类:
系统相关 时间:
2014-06-25 09:28:50
阅读次数:
304
a little riak book 的无聊总结
#!/bin/bash
# Riak HTTP interface stays true to their intent: 1xx Informational, 2xx Success,
# 3xx Further Action, 4xx Client Error, 5xx Server Error
### put
PORT=10...
分类:
其他好文 时间:
2014-06-25 08:22:11
阅读次数:
178
关于本文档
GNU C编译器针对ARM RISC处理器,提供了内联汇编支持。利用这一非常酷炫的特性,我们可以用来优化软件代码中的关键部分,或者可以使用针对特定处理的汇编处理指令。
本文假定,你已经熟悉ARM汇编语言。本文不是一篇ARM汇编教程,也不是C语言教程。...
分类:
移动开发 时间:
2014-06-25 07:54:57
阅读次数:
354
example: ./netspeed eth0
1 #!/bin/bash
2
3 INTERVAL="1" # update interval in seconds
4
5 if [ -z "$1" ]; then
6 echo
7 echo usage: $0 [network-interface]
8 echo
9 echo ...
分类:
系统相关 时间:
2014-06-25 07:24:00
阅读次数:
213
#!/bin/bash
echo"这个是系统初始化脚本,请慎重运行!"
input_fun()
{
OUTPUT_VAR=$1
INPUT_VAR=""
while[-z$INPUT_VAR];do
read-p"$OUTPUT_VAR"INPUT_VAR
done
echo$INPUT_VAR
}
input_again()
{
MYHOSTNAME=$(input_fun"pleaseinputthehostname:")
DOMAINNAME=$(input_fun"p..
分类:
其他好文 时间:
2014-06-25 06:16:37
阅读次数:
345
1 #!/bin/bash 2 3 # Create a log file of the build as well as displaying the build on the tty as it runs 4 exec > >(tee build_gstreamer.log) 5 exe...
分类:
其他好文 时间:
2014-06-25 00:44:22
阅读次数:
324
上接(BASH脚本编程之拷贝系统库文件50)重新编辑grub为静默模式:1.vim/mnt/boot/grub/grub.confdefault=0timeout=3titleNickLinux(2.6.18)kernel/vmlinuzroroot/dev/hda2quietinitrd/initrd.gz如何实现终端提示信息:2.复制宿主机文件:cp/etc/issue/mnt/sysroot/etc/3.重新编..
分类:
系统相关 时间:
2014-06-24 16:46:22
阅读次数:
341
#vimpost-commit#!/bin/bash
REPOS="$1"
REV="$2"
SVNLOOK="/usr/bin/svnlook"
echo"`date+%F`">>/tmp/post.log
echo"REPOS=$1REV=$2">>/tmp/post.log
echo-e"\$@=$@#">>/tmp/post.log
echo-e"`date+%F`end\n">>/tmp/post.log
$SVNLOOKchanged"$REPOS..
分类:
其他好文 时间:
2014-06-24 16:38:56
阅读次数:
282
#!/bin/bash
#
#Time:2014-06-23
#Author:ftlynx
#Function:useNET-SNMPgetNICtrafficonnagios.
Usage(){
echo"Usage:check_traffic.sh[options]"
echo" -H HostIP."
echo" -P net-snmpcommunitystring."
echo" -N NICName."
echo" -W nagioswarningvalue.Format:200,300..
分类:
移动开发 时间:
2014-06-24 16:10:35
阅读次数:
224