Time Line | Page 9
Linux下使用md配置软raid
1, 若需要在一块硬盘上创建一个raid5,首先需要将硬盘分区,
Sudo fdisk /dev/sda
2, 将sda盘分成五个分区,然后将此5个分区组成raid5
Sudo mdadm –create /dev/md1 –level=5 –raid-devices=3[......]
用VHDL实现PCI仲裁模块
1 2 3 4 5 6 7 8 | library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all; entity pci_arbi is port( REQH : in std_logic; REQB [......] |
windows live writer中设置wordpress文章别名
闲话休絮!windows live writer中数据域选项即是wordpress文章别名!
iSCSI
什么是iSCSI
http://en.wikipedia.org/wiki/ISCSI
http://searchstorage.techtarget.com/sDefinition/0,,sid5_gci750136,00.html
http://linux-iscsi.[......]
Linux下iscsi客户端open-iscsi
安装open-iscsi
ubuntu下安装命令:sudo apt-get install open-iscsi
或者从这里下载源码:http://www.open-iscsi.org/index.html#download
发现target
iscsiadm -m di[......]
mysql_drop_db
(PHP 4, PHP 5)
mysql_drop_db – 移除数据库。
函数声明
int mysql_drop_db(string database_name, int [link_identifier]);
试图删除和link_identifier关联的整个数据库。[......]
mysql_query
(PHP 4, PHP 5)
mysql_query() 函数执行一条 MySQL 查询。
函数声明
resource mysql_query ( string $query [, resource $link_identifier ] )
mysql_query se[......]
mysql_errno
(PHP 4, PHP 5)
mysql_errno — 返回上一个 MySQL 操作中的错误信息的数字编码
函数声明
int mysql_errno ([ resource $link_identifier ] )
参数
connection 可选。规定 SQL 连接标识符。如[......]
mysql_error
(PHP 3, PHP 4, PHP 5)
mysql_error – 返回上一个 MySQL 操作产生的文本错误信息
函数声明
string mysql_error ( [resource link_identifier] )
返回上一个 MySQL[......]
绿色存储 – 节能技术研究现状
存储系统的节能技术可以分为cache类节能、gear类节能和热点数据优化。
Cache类节能的主要代表为PDC、MACD等。此类系统使用附加的存储设备充做cache,采用一定的算法提高cache命中率。存储设备不适宜频繁开关。少量的cache完成了大量的数据存取工作,增加了[......]