Time Line | Page 9

Page 9/18...678910111213...

Linux下使用md配置软raid

2011-04-08 19:26 / Linux / no comment / 62 views /

1, 若需要在一块硬盘上创建一个raid5,首先需要将硬盘分区,

Sudo fdisk /dev/sda

2, 将sda盘分成五个分区,然后将此5个分区组成raid5

Sudo mdadm –create /dev/md1 –level=5 –raid-devices=3[......]

more…

用VHDL实现PCI仲裁模块

2011-04-07 14:26 / Hardware / no comment / 36 views /
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 [......]

more…

windows live writer中设置wordpress文章别名

2011-04-06 03:24 / WordPress / no comment / 67 views /

闲话休絮!windows live writer中数据域选项即是wordpress文章别名!

iSCSI

2011-04-06 02:59 / Storage / no comment / 40 views /

什么是iSCSI

http://en.wikipedia.org/wiki/ISCSI
http://searchstorage.techtarget.com/sDefinition/0,,sid5_gci750136,00.html
http://linux-iscsi.[......]

more…

Linux下iscsi客户端open-iscsi

2011-04-06 02:32 / Linux / no comment / 323 views /

安装open-iscsi

ubuntu下安装命令:sudo apt-get install open-iscsi
或者从这里下载源码:http://www.open-iscsi.org/index.html#download

发现target

iscsiadm -m di[......]

more…

mysql_drop_db

2011-04-01 21:49 / PHP / no comment / 14 views /

(PHP 4, PHP 5)

mysql_drop_db – 移除数据库。

函数声明

int mysql_drop_db(string database_name, int [link_identifier]);

试图删除和link_identifier关联的整个数据库。[......]

more…

mysql_query

2011-04-01 21:47 / PHP / no comment / 34 views /

(PHP 4, PHP 5)

mysql_query() 函数执行一条 MySQL 查询。

函数声明

resource mysql_query ( string $query [, resource $link_identifier ] )

mysql_query se[......]

more…

mysql_errno

2011-04-01 21:46 / PHP / no comment / 23 views /

(PHP 4, PHP 5)

mysql_errno — 返回上一个 MySQL 操作中的错误信息的数字编码

函数声明

int mysql_errno ([ resource $link_identifier ] )

参数

connection 可选。规定 SQL 连接标识符。如[......]

more…

mysql_error

2011-04-01 21:44 / PHP / no comment / 24 views /

(PHP 3, PHP 4, PHP 5)

mysql_error –  返回上一个 MySQL 操作产生的文本错误信息

函数声明

string mysql_error ( [resource link_identifier] )

返回上一个 MySQL[......]

more…

绿色存储 – 节能技术研究现状

2011-03-18 16:02 / Storage / 3 comments / 173 views /

存储系统的节能技术可以分为cache类节能、gear类节能和热点数据优化。

Cache类节能的主要代表为PDC、MACD等。此类系统使用附加的存储设备充做cache,采用一定的算法提高cache命中率。存储设备不适宜频繁开关。少量的cache完成了大量的数据存取工作,增加了[......]

more…

Page 9/18...678910111213...