ChinaUnix.net
相关文章推荐:

linux eth uuid

上次装的一个系统,使用了 SOFT RAID1: sh# cat /proc/mdstat md0 : active raid1 sdc1[0] sdb1[1] sda1[3] 521984 blocks [4/3] [UU_U] md2 : active raid1 sdc2[1] 310994176 blocks [2/1] [_U] md1 : active raid1 sdb2[1] sda2[0] 310994176 blocks [2/2] [UU] unused devices: 开始运行良好。后来换机房,把服务器那过去开始出问题,下面是 /var/log/messages 截取的日志: Nov 26 20:10:37 wd...

by Chowroc - 存储备份 - 2007-12-03 14:15:45 阅读(2684) 回复(2)

raid

相关讨论

GUID (global unique identifier) 是微软对uuid的叫法. uuid( Universal Unique Identifier) HP和RedHat上可以使用uuidgen来生成,solaris上命令:makeuuid 如何通过C++编程取得uuid? 1.安装libuuid库, libuuid.so.1包涵在e2fsprogs里,本人的系统为RedHat7.3,下载ftp://194.199.20.114/linux/redhat/7.3/en/os/i386/RedHat/RPMS/e2fsprogs-1.27-3.i386.rpm 2. 编辑文件uuid.cpp #include ; #include ; #inc...

by vikingpro - Linux论坛 - 2003-10-23 17:03:16 阅读(3933) 回复(0)

请教了!! 在solaris上有没有生成uuid的函数或者是命令?!在HP和RedHat上可以使用uuidgen来生成,但是在solaris上我没有找到!!!

by gongch - Solaris - 2003-06-06 09:20:36 阅读(814) 回复(0)

今天的服务器一直提示 NETDEV WATCHDOG: eth3: transmit timed out eth3: transmit timed out, tx_status 00 status e000. diagnostics: net 0cf6 media 8880 dma 000000a0 fifo 8000 Flags; bus-master 1, dirty 0(0) current 16(0) Transmit list 37794200 vs. f7794200. 0: @f7794200 length 8000005a status 0000005a 1: @f77942a0 length 8000004e status 0000004e 2: @f7794340 length 80000046 status 00000...

by 扫净缘客 - Linux论坛 - 2005-09-26 09:07:06 阅读(686) 回复(2)

我依照下面的教程,red hat 5.3 的版本 然后eth0跟eth1启动时出错,此次做双邦定, 不明白是那里没配置,下面是跟我配置做对比,高人请教 1.编辑虚拟网络接口配置文件,指定网卡IP vi /etc/sysconfig/ network-scripts/ ifcfg-bond0 [root@rhas-13 root]# cp /etc/sysconfig/network-scripts/ifcfg-eth0 ifcfg-bond0 2 #vi ifcfg-bond0 将第一行改成 DEVICE=bond0 # cat ifcfg-bond0 ...

by xfen - 服务器应用 - 2009-04-09 13:52:59 阅读(5648) 回复(3)

eth0,eth1,装完系统后,是/etc/modprobe.conf或/etc/modules.conf决定的alias 但是不知道安装的时候,系统是如何决定谁是0,谁是1的呢 所以每次装完linux双网卡服务器,写完/etc/sysconfig/network-scripts/ifcfg-eth* 我都不确定到底哪根网线对哪个网卡,所以每次都反一下试试 今天也是,认为机架服务器左边网卡是eth0,然后用笔记本交叉线直连上配置机器,但无法登上,无法ping通 最后,才发现eth0其实是右边的网卡(从服务器背...

by kelela - 服务器架设 - 2006-05-06 14:11:13 阅读(1943) 回复(8)

uuid是一种唯一标识,在许多领域作为标识用途。python的uuid模块就是用来生成它的。 闲话不说,python提供的生成uuid的方法一共有4种,分别是: 1.从硬件地址和时间生成 2.从md5算法生成 3.随机生成 4.从SHA-1算法生成 他们在uuid模块里对应uuid1, uuid3, uuid4, uuid5这几个方法,注意没有uuid2。 下面是示例: #-*- encoding: gb2312 -*- import uuid print uuid.uuid1() print uuid.uuid3(uuid.NAMESPACE_DNS, 'testme') ...

by dier - Python文档中心 - 2008-08-24 23:17:47 阅读(1666) 回复(0)

Java的uuid是否适合大规模的并发环境?暂时使用uuid.randomuuid().hashCode()。 在网上搜到几篇使用AtomicLong实现的ID生成器的文章。难道是我的用法有误吗? http://www.jroller.com/eu/entry/implementing_efficinet_id_generator http://www.javablackbelt.com/QuestionDetail.wwa?qidk=15642 http://highscalability.com/files/IdGen.txt Use an AtomicLong: class IdGenerator { private static AtomicLong id = new At...

by Elite - Java文档中心 - 2008-06-16 14:59:19 阅读(2089) 回复(0)

Fstab 文件大家都很熟悉,linux 在启动的时候通过 fstab 中的信息挂载各个分区,一个典型的分区条目就像这样: /dev/sdb5 /mnt/usb vfat utf8,umask=0 0 0 /dev/sda4 为需要挂载的分区,sda4 是 linux 检测硬盘时按顺序给分区的命名,一般来讲,这个名称并不会变化,但是如果你有多块硬盘,硬盘在电脑中的顺序变化的时候,相同的名称可能代表着不同的硬盘分区,如果你是从 USB 设备启动,与其他 USB 设备的插入顺序也会导致分区...

by sun5411 - 存储文档中心 - 2008-03-18 10:10:15 阅读(1119) 回复(0)

请问uuid是什么?

by dong_jh - 存储备份 - 2004-08-22 10:18:15 阅读(939) 回复(1)

哪个大哥熟悉,给介绍一下.谢谢

by 突然的自我 - C/C++ - 2004-08-12 16:03:50 阅读(638) 回复(0)