`
文章列表
最近由于需要使用到Red Hat Enterprise Linux 4做测试,于是就准备在虚拟机上安装一个CentOS 4做模拟测试 虚拟机选择VirtualBox 但安装的时候总是出现 input/output error during read on /dev/hde 选择ignore,可以继续安装,但安装完成后不能启动 找了很久的原因,发现是 问题是磁盘/dev/sda,而且grub是安装在/dev/hde上 查看虚拟机的磁盘,发现我创建的25G磁盘是SATA控制器下的磁盘,且类型为AHCI模式 解决方法是 在 设置->存储->SATA控制器-> ...

Arduino

Arduino,是一个开源的单板机控制器,采用了基于开放源代码的软硬件平台,构建于开放源代码 simple I/O 接口版,并且具有使用类似Java,C 语言的Processing/Wiring开发环境。
MariaDB is a community-developed branch of the MySQL database, the impetus being the community maintenance of its free status under the GNU GPL, as opposed to any uncertainty of MySQL license status under its current ownership by Oracle. The intent also being to maintain high fidelity with MySQL, ens ...

Fluidinfo

Fluidinfo, formerly named FluidDB until early 2011, is an online cloud data store based on an attribute-value centric data model.[1] Fluidinfo is written in Python and characterized by a publicly writeable schema-less database that provides a query language, a fine-grained permissions model and promo ...

OAuth

OAuth is an open standard for authorization. It allows users to share their private resources (e.g. photos, videos, contact lists) stored on one site with another site without having to hand out their credentials, typically supplying username and password tokens instead. Each token grants access to a ...

Netduino

Start building electronics projects with Netduino, the popular open source hardware platform that’s captured the imagination of makers and hobbyists worldwide. This easy-to-follow book provides the step-by-step guidance you need to experiment with Netduino and the .NET Micro Framework.
鸟哥私房菜1-第11章:认识Bash Shell read declare/typeset array ulimit user limit echo ${vbird##/*/} 删除所有//之间数据 echo ${vbird#/*/} 删除第一个//之间数据 echo ${vbird%%/*/} 从后面删除所有//之间数据 这样匹配,需要最后一个字符是/ echo ${vbird%%/*} 从后面删除所有/*之间数据 echo ${vbird%/*} 从后面删除第一个有/*之间数据 echo ${vbird/testing/TEST} 用TEST替换testing(仅仅第一个) ...
weblogic管理服务器和受管服务器:    域包含一个称为“管理服务器”的特殊 WebLogic Server 实例,它是您配置和管理域中所有资源的中心点,一个域有仅只有一个管理服务器实例。    在生产环境中,应将 Web 应用程序、EJB 和其他资源部署到受管服务器上,管理服务器只应用于配置和管理目的。    多台受管服务器可以组成一个“群集”,这样可以使用单个管理服务器来简化对受管服务器实例的管理,现时还可以平衡负载并为关键应用程序提供故障转移保护。 组织域的基本考虑因素:    a) 应用程序的逻辑划分。例如,可以用一个域来专门提供最终用户功能(例如购物车),而将另一个域专用于后端 ...
awk 适合于文本处理和报表生成,它还有许多精心设计的特性,允许进行需要特殊技巧程序设计。与某些语言不同,awk 的语法较为常见。它借鉴了某些语言的一些精华部分,如 C 语言、python 和 bash(虽然在技术上,awk 比 python 和 bash 早创建)。awk 是那种一旦学会了就会成为您战略编码库的主要部分的语言。 第一个 awk 让我们继续,开始使用 awk,以了解其工作原理。在命令行中输入以下命令: $ awk '{ print }' /etc/passwd 您将会见到 /etc/passwd 文件的内容出现在眼前。现在,解释 awk 做了些什么。调用 awk 时,我们指定 ...

cut 用法

我们经常会遇到需要取出分字段的文件的某些特定字段,例如 /etc/password就是通过":"分隔各个字段的。可以通过cut命令来实现。例如,我们希望将系统账号名保存到特定的文件,就可以: cut -d: -f 1 /etc/passwd > /tmp/users -d用来定义分隔符,默认为tab键,-f表示需要取得哪个字段,这里表示取得分割后的第1列 cut -d: -f 2 /etc/passwd > /tmp/users 这里表示取得分割后的第2列 当然也可以通过cut取得文件中每行中特定的几个字符,例如: cut -c3-5 /etc/passwd 就 ...
--顺序事务 --设置顺序事务既可以确保用户取得特定时间点的数据,又可以执行DML语句 --会话A SET TRANSACTION ISOLATION LEVEL SERIALIZABLE; select employee_id,first_name,last_name,email from employees where first_name='zou'; --会话B update employees set last_name='2' where employee_id=2; --会话A select employee_id,first_name,last_name,email from e ...
1.下载,解压 2.定义MAVEN_HOME 3.PATH中添加%MAVEN_HOME%\bin 4.运行mvn -version 5.在C:\Documents and Settings\Administrator\.m2\下添加settings.xml文件 6.执行各种mvn命令
1.下载hsqldb 2.解压hsqldb 3.选定要创建的数据库名字,比如mydb,在根目录下创建mydb目录 4.在mydb目录下建立runmydb.bat文件,内容如下: java -cp ..\lib\hsqldb.jar org.hsqldb.Server -database.0 mydb -dbname.0 xdb 执行命令后,将会在当前文件夹下创建一个数据库mydb,别名(用于访问数据库)是xdb,如果存在mydb数据库,将会打开它 5.在mydb目录下建立managemydb.bat文件,内容如下: java -cp ../lib/hsqldb.jar org.hsqldb.ut ...
Global site tag (gtag.js) - Google Analytics