免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 4178 | 回复: 10
打印 上一主题 下一主题

急急....请教各位大哥怎么在linux8.0下使用PowerVault 100T DAT72 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-10-12 23:11 |只看该作者 |倒序浏览
我的服务器Dell™ PowerEdge™ 2800的,系统是RH8.0,怎么才能找到我的磁带机呀。急急.

论坛徽章:
0
2 [报告]
发表于 2006-10-13 00:27 |只看该作者
首先将磁带机连接在服务器上,DELL PE的服务器中SCSI卡的类型一般为Adaptec 或者LSI.当磁带机连接之后加电并启动服务器,这时首先确认系统在SCSI检测时是否发现该磁带机,如果发现则证明磁带机物理连接正常,如果没有发现则需要检查磁带机接口,SCSI线缆或者主板SCSI接口。如果一切正常则在操作系统启动时会自动检测新的硬件,当屏幕弹出对话框询问是否配置此新硬件时选择Yes。这时系统会将检测到的硬件加载到内核当中。当进入系统后在命令行提示中输入以下命令:#dmesg | more ,找到是否出现st0。如果出现则系统已经识别磁带机,这时可以使用tar 或者cpio进行备份。Linux系统中磁带机的设备文件的/dev/st0,st1…… 或者 nst0,nst0…….。检测磁带机是否能正常工作:

#mt –f /dev/st0 rewind

如果磁带机的读写灯闪。可以使用以下命令进行备分:

#tar cvf /dev/st0 /home

Tapeware软件的安装:

首先以root登录,将tapeware光盘放入光区,使用以下命令:

#mount /dev/cdrom /mnt/cdrom 回车

#cd /mnt/cdrom 回车

# ./install 回车

进入软件安装界面,按照屏幕提示安装此软件,软件安装的缺省目录为 /usr/local/tapeware.

Cd /local/tapeware 通过运行此目录下的两个文件可以进入Tapewre软件

在console下使用tapeware。需运行:
#cd /usr/local/tapeware/ 回车

# ./twadmin 回车

在X-windows中运行tapeware。需运行:
    #cd /usr/local/tapeware/ 回车

    # ./twxadmin.

以上是关于磁带机和软件的安装。

论坛徽章:
0
3 [报告]
发表于 2006-10-13 09:27 |只看该作者
在止录dev下有st0....st9等等文件
当我执行
tar -cvf /dev/st0 /home/test 时
出现如下错误
tar: /dev/st0: Cannot open: 没有那个设备
tar: Error is not recoverable: exiting now

[ 本帖最后由 qjlpn 于 2006-10-13 13:58 编辑 ]

论坛徽章:
0
4 [报告]
发表于 2006-10-13 14:22 |只看该作者
原帖由 qjlpn 于 2006-10-13 09:27 发表
在止录dev下有st0....st9等等文件
当我执行
tar -cvf /dev/st0 /home/test
出现如下错误
tar: /dev/st0: Cannot open: 没有那个设备
tar: Error is not recoverable: exiting now




tar -cvf /dev/st0 /home/test你确定一下参数加对了么,,好像多了一个“-”啊?

论坛徽章:
0
5 [报告]
发表于 2006-10-13 18:10 |只看该作者
兄弟:我使用
tar cvf /dev/st0 /home/test
出现如下信息
tar: /dev/st0: Cannot open: 没有那个设备
tar: Error is not recoverable: exiting now



mt –f /dev/st0 rewind
出现

/dev/st0: No such device

论坛徽章:
0
6 [报告]
发表于 2006-10-13 23:24 |只看该作者
如果你执行#mt –f /dev/st0 rewind   带机没有出现指示灯闪烁说明你得此带机都还没有被RH8识别到啊,,,,是物理连接得问题还是你没有MOUNT呢?

论坛徽章:
0
7 [报告]
发表于 2006-10-14 08:25 |只看该作者
请问怎么个mount法,可否给个例子

论坛徽章:
0
8 [报告]
发表于 2006-10-14 18:26 |只看该作者
#加载st基本模块
vi rc.local
/sbin/insmod    st
#变更可用lun为255
vi modules.conf or
/etc/modprobe.conf
alias scsi_hostadapter0 qla2300
options scsi_mod max_scsi_luns=255 scsi_allow_ghost_devices=1

vi grub.conf
eg:kernel /vmlinuz-2.4.21-37.ELsmp ro root=LABEL=/ max_scsi_luns=25
#创建多个sg设备,以免sg数目的不足
cd /dev
ls sg*
mknod sgN c 21 N

#在/proc/scsi/scsi内添加多个登录项,以适配新的设备(临时性)
echo " Looking for scsi devices......."
for ((a=0;a<=15;a++))
do
   for ((b=0;b<=15;b++))
   do
      for ((c=0;c<=15;c++))
      do
         for ((d=0;d<=15;d++))
         do
           echo "scsi add-single-device $a $b $c $d" > /proc/scsi/scsi
         done
      done
   done
done
echo "Done"
重起

论坛徽章:
0
9 [报告]
发表于 2006-10-15 14:09 |只看该作者
兄弟帮我看下,我的磁带机上来了没有。我不太会看这东东

scsi卡是找到了,scsi0,scsi1

就是找不到什么st0之类的东东



Linux version 2.4.21-4.ELsmp (bhcompile@daffy.perf.redhat.com) (gcc version 3.2.3 20030502 (Red Hat Linux 3.2.3-20))

#1 SMP Fri Oct 3 17:52:56 EDT 2003

BIOS-provided physical RAM map:

BIOS-e820: 0000000000000000 - 00000000000a0000 (usable)

BIOS-e820: 0000000000100000 - 00000000dffc0000 (usable)

BIOS-e820: 00000000dffc0000 - 00000000dffcfc00 (ACPI data)

BIOS-e820: 00000000dffcfc00 - 00000000dffff000 (reserved)

BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)

BIOS-e820: 00000000fec00000 - 00000000fec90000 (reserved)

BIOS-e820: 00000000fed00000 - 00000000fed00400 (reserved)

BIOS-e820: 00000000fee00000 - 00000000fee10000 (reserved)

BIOS-e820: 00000000ffb00000 - 0000000100000000 (reserved)

BIOS-e820: 0000000100000000 - 00000001ffffe000 (usable)

BIOS-e820: 00000001ffffe000 - 0000000200000000 (reserved)

BIOS-e820: 0000000200000000 - 0000000220000000 (usable)

7808MB HIGHMEM available.

896MB LOWMEM available.

found SMP MP-table at 000fe710

hm, page 000fe000 reserved twice.

hm, page 000ff000 reserved twice.

hm, page 000f0000 reserved twice.

On node 0 totalpages: 2228224

zone(0): 4096 pages.

zone(1): 225280 pages.

zone(2): 1998848 pages.

ACPI: Searched entire block, no RSDP was found.

ACPI: RSDP located at physical address c00fd5b0

RSD PTR  v0 [DELL  ]

__va_range(0xfd5c4, 0x6: idx=33 mapped at fffdd000

ACPI table found: RSDT v1 [DELL   PE BKC   0.1]

__va_range(0xfd620, 0x24): idx=33 mapped at fffdd000

__va_range(0xfd620, 0x74): idx=33 mapped at fffdd000

ACPI table found: FACP v1 [DELL   PE BKC   0.1]

__va_range(0xfd694, 0x24): idx=33 mapped at fffdd000

__va_range(0xfd694, 0xe0): idx=33 mapped at fffdd000

ACPI table found: APIC v1 [DELL   PE BKC   0.1]

__va_range(0xfd694, 0xe0): idx=33 mapped at fffdd000

LAPIC (acpi_id[0x0001] id[0x0] enabled[1])

CPU 0 (0x0000) enabledProcessor #0 Unknown CPU [15:4] APIC version 20



LAPIC (acpi_id[0x0002] id[0x6] enabled[1])

CPU 1 (0x0600) enabledProcessor #6 Unknown CPU [15:4] APIC version 20



LAPIC (acpi_id[0x0003] id[0x1] enabled[1])

CPU 2 (0x0100) enabledProcessor #1 Unknown CPU [15:4] APIC version 20



LAPIC (acpi_id[0x0004] id[0x7] enabled[1])

CPU 3 (0x0700) enabledProcessor #7 Unknown CPU [15:4] APIC version 20



LAPIC (acpi_id[0x0005] id[0x2] enabled[0])

CPU 4 (0x0200) disabled

LAPIC (acpi_id[0x0006] id[0x4] enabled[0])

CPU 5 (0x0400) disabled

LAPIC (acpi_id[0x0007] id[0x3] enabled[0])

CPU 6 (0x0300) disabled

LAPIC (acpi_id[0x0008] id[0x5] enabled[0])

CPU 7 (0x0500) disabled

LAPIC_NMI (acpi_id[0x0001] polarity[0x1] trigger[0x1] lint[0x1])

LAPIC_NMI (acpi_id[0x0002] polarity[0x1] trigger[0x1] lint[0x1])

LAPIC_NMI (acpi_id[0x0003] polarity[0x1] trigger[0x1] lint[0x1])

LAPIC_NMI (acpi_id[0x0004] polarity[0x1] trigger[0x1] lint[0x1])

LAPIC_NMI (acpi_id[0x0005] polarity[0x1] trigger[0x1] lint[0x1])

LAPIC_NMI (acpi_id[0x0006] polarity[0x1] trigger[0x1] lint[0x1])

LAPIC_NMI (acpi_id[0x0007] polarity[0x1] trigger[0x1] lint[0x1])

LAPIC_NMI (acpi_id[0x0008] polarity[0x1] trigger[0x1] lint[0x1])

INT_SRC_OVR (bus[0] irq[0x0] global_irq[0x2] polarity[0x0] trigger[0x0])

INT_SRC_OVR (bus[0] irq[0x9] global_irq[0x9] polarity[0x1] trigger[0x3])

IOAPIC (id[0x8] address[0xfec00000] global_irq_base[0x0])

IOAPIC (id[0x9] address[0xfec80000] global_irq_base[0x20])

IOAPIC (id[0xa] address[0xfec83000] global_irq_base[0x40])

IOAPIC (id[0xb] address[0xfec81000] global_irq_base[0x60])

8 CPUs total

Local APIC address fee00000

__va_range(0xfd774, 0x24): idx=33 mapped at fffdd000

__va_range(0xfd774, 0x50): idx=33 mapped at fffdd000

ACPI table found: SPCR v1 [DELL   PE BKC   0.1]

__va_range(0xfd7c4, 0x24): idx=33 mapped at fffdd000

__va_range(0xfd7c4, 0x3: idx=33 mapped at fffdd000

ACPI table found: HPET v1 [DELL   PE BKC   0.1]

ACPI: Unsupported table HPET

__va_range(0xfd7fc, 0x24): idx=33 mapped at fffdd000

__va_range(0xfd7fc, 0x3c): idx=33 mapped at fffdd000

ACPI table found: MCFG v1 [DELL   PE BKC   0.1]

ACPI: Unsupported table MCFG

Enabling the CPU's according to the ACPI table

Intel MultiProcessor Specification v1.4

    Virtual Wire compatibility mode.

OEM ID: DELL     Product ID: PE 016E      APIC at: 0xFEE00000

I/O APIC #8 Version 32 at 0xFEC00000.

I/O APIC #9 Version 32 at 0xFEC80000.

I/O APIC #10 Version 32 at 0xFEC81000.

I/O APIC #11 Version 32 at 0xFEC83000.

Processors: 4

xAPIC support is present

Enabling APIC mode: Flat.        Using 4 I/O APICs

Kernel command line: ro root=LABEL=/

Initializing CPU#0

Detected 3790.895 MHz processor.

Console: colour VGA+ 80x25

Calibrating delay loop... 7549.74 BogoMIPS

Memory: 8247812k/8912896k available (1683k kernel code, 135924k reserved, 1318k data, 224k init, 7470840k highmem)

Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)

Inode cache hash table entries: 524288 (order: 10, 4194304 bytes)

Mount cache hash table entries: 512 (order: 0, 4096 bytes)

Buffer cache hash table entries: 1048576 (order: 10, 4194304 bytes)

Page-cache hash table entries: 1048576 (order: 10, 4194304 bytes)

CPU: Trace cache: 12K uops<6>CPU: Physical Processor ID: 0

Intel machine check architecture supported.

Intel machine check reporting enabled on CPU#0.

CPU:     After generic, caps: bfebfbff 20100000 00000000 00000000

CPU:             Common caps: bfebfbff 20100000 00000000 00000000

Enabling fast FPU save and restore... done.

Enabling unmasked SIMD FPU exception support... done.

Checking 'hlt' instruction... OK.

POSIX conformance testing by UNIFIX

mtrr: v1.40 (20010327) Richard Gooch (rgooch@atnf.csiro.au)

mtrr: detected mtrr type: Intel

CPU: Trace cache: 12K uops<6>CPU: Physical Processor ID: 0

Intel machine check reporting enabled on CPU#0.

CPU:     After generic, caps: bfebfbff 20100000 00000000 00000000

CPU:             Common caps: bfebfbff 20100000 00000000 00000000

CPU0: Intel(R) Xeon(TM) CPU 3.80GHz 3epping 0a

per-CPU timeslice cutoff: 0.00 usecs.

task migration cache decay timeout: 10 msecs.

enabled ExtINT on CPU#0

ESR value before enabling vector: 00000000

ESR value after enabling vector: 00000000

Booting processor 1/1 eip 2000

Initializing CPU#1

masked ExtINT on CPU#1

ESR value before enabling vector: 00000000

ESR value after enabling vector: 00000000

Calibrating delay loop... 7575.96 BogoMIPS

CPU: Trace cache: 12K uops<6>ACPI tables and CPU MSR values mismatch about cpu number

CPU: Physical Processor ID: 3

Intel machine check reporting enabled on CPU#1.

CPU:     After generic, caps: bfebfbff 20100000 00000000 00000000

CPU:             Common caps: bfebfbff 20100000 00000000 00000000

CPU1: Intel(R) Xeon(TM) CPU 3.80GHz stepping 0a

Booting processor 2/6 eip 2000

Initializing CPU#2

masked ExtINT on CPU#2

ESR value before enabling vector: 00000000

ESR value after enabling vector: 00000000

Calibrating delay loop... 7575.96 BogoMIPS

CPU: Trace cache: 12K uops<6>CPU: Physical Processor ID: 0

Intel machine check reporting enabled on CPU#2.

CPU:     After generic, caps: bfebfbff 20100000 00000000 00000000

CPU:             Common caps: bfebfbff 20100000 00000000 00000000

CPU2: Intel(R) Xeon(TM) CPU 3.80GHz stepping 0a

Booting processor 3/7 eip 2000

Initializing CPU#3

masked ExtINT on CPU#3

ESR value before enabling vector: 00000000

ESR value after enabling vector: 00000000

Calibrating delay loop... 7575.96 BogoMIPS

CPU: Trace cache: 12K uops<6>CPU: Physical Processor ID: 3

Intel machine check reporting enabled on CPU#3.

CPU:     After generic, caps: bfebfbff 20100000 00000000 00000000

CPU:             Common caps: bfebfbff 20100000 00000000 00000000

CPU3: Intel(R) Xeon(TM) CPU 3.80GHz stepping 0a

Total of 4 processors activated (30277.63 BogoMIPS).

ENABLING IO-APIC IRQs

Setting 8 in the phys_id_present_map

...changing IO-APIC physical APIC ID to 8 ... ok.

Setting 9 in the phys_id_present_map

...changing IO-APIC physical APIC ID to 9 ... ok.

Setting 10 in the phys_id_present_map

...changing IO-APIC physical APIC ID to 10 ... ok.

Setting 11 in the phys_id_present_map

...changing IO-APIC physical APIC ID to 11 ... ok.

init IO_APIC IRQs

IO-APIC (apicid-pin) 8-0, 8-3, 8-7, 8-10, 8-11, 8-13, 8-22, 9-0, 9-3, 9-8, 9-9, 9-10, 9-11, 9-12, 9-13, 9-15, 9-16, 9-17, 9-18, 9-19, 9-20, 9-21, 9-22, 9-23, 10-12, 10-13, 10-14, 10-15, 10-16, 10-17, 10-18, 10-19, 10-20, 10-21, 10-22, 10-23, 11-2, 11-3, 11-4, 11-5, 11-6, 11-7, 11-8, 11-9, 11-10, 11-11, 11-12, 11-13, 11-14, 11-15, 11-16, 11-17, 11-18, 11-19, 11-20, 11-21, 11-22, 11-23 not connected.

..TIMER: vector=0x31 pin1=2 pin2=0

number of MP IRQ sources: 62.

number of IO-APIC #8 registers: 24.

number of IO-APIC #9 registers: 24.

number of IO-APIC #10 registers: 24.

number of IO-APIC #11 registers: 24.

testing the IO APIC.......................



IO APIC #8......

.... register #00: 08000000

.......    : physical APIC id: 08

.......    : Delivery Type: 0

.......    : LTS          : 0

.... register #01: 00178020

.......     : max redirection entries: 0017

.......     : PRQ implemented: 1

.......     : IO APIC version: 0020

.... register #02: 00178020

.......     : arbitration: 00

An unexpected IO-APIC was found. If this kernel release is less than

three months old please report this to linux-smp@vger.kernel.org

.... IRQ redirection table:

NR Log Phy Mask Trig IRR Pol Stat Dest Deli Vect:   

00 000 00  1    0    0   0   0    0    0    00

01 00F 0F  0    0    0   0   0    1    1    39

02 00F 0F  0    0    0   0   0    1    1    31

03 000 00  1    0    0   0   0    0    0    00

04 00F 0F  0    0    0   0   0    1    1    41

05 00F 0F  0    0    0   0   0    1    1    49

06 00F 0F  0    0    0   0   0    1    1    51

07 000 00  1    0    0   0   0    0    0    00

08 00F 0F  0    0    0   0   0    1    1    59

09 00F 0F  0    0    0   0   0    1    1    61

0a 000 00  1    0    0   0   0    0    0    00

0b 000 00  1    0    0   0   0    0    0    00

0c 00F 0F  0    0    0   0   0    1    1    69

0d 000 00  1    0    0   0   0    0    0    00

0e 00F 0F  0    0    0   0   0    1    1    71

0f 00F 0F  0    0    0   0   0    1    1    79

10 00F 0F  1    1    0   1   0    1    1    81

11 00F 0F  1    1    0   1   0    1    1    89

12 00F 0F  1    1    0   1   0    1    1    91

13 00F 0F  1    1    0   1   0    1    1    99

14 00F 0F  1    1    0   1   0    1    1    A1

15 00F 0F  1    1    0   1   0    1    1    A9

16 000 00  1    0    0   0   0    0    0    00

17 00F 0F  1    1    0   1   0    1    1    B1



IO APIC #9......

.... register #00: 09000000

.......    : physical APIC id: 09

.......    : Delivery Type: 0

.......    : LTS          : 0

.... register #01: 00178020

.......     : max redirection entries: 0017

.......     : PRQ implemented: 1

.......     : IO APIC version: 0020

.... register #02: 09000000

.......     : arbitration: 09

.... IRQ redirection table:

NR Log Phy Mask Trig IRR Pol Stat Dest Deli Vect:   

00 000 00  1    0    0   0   0    0    0    00

01 00F 0F  1    1    0   1   0    1    1    B9

02 00F 0F  1    1    0   1   0    1    1    C1

03 000 00  1    0    0   0   0    0    0    00

04 00F 0F  1    1    0   1   0    1    1    C9

05 00F 0F  1    1    0   1   0    1    1    D1

06 00F 0F  1    1    0   1   0    1    1    D9

07 00F 0F  1    1    0   1   0    1    1    E1

08 000 00  1    0    0   0   0    0    0    00

09 000 00  1    0    0   0   0    0    0    00

0a 000 00  1    0    0   0   0    0    0    00

0b 000 00  1    0    0   0   0    0    0    00

0c 000 00  1    0    0   0   0    0    0    00

0d 000 00  1    0    0   0   0    0    0    00

0e 00F 0F  1    1    0   1   0    1    1    E9

0f 000 00  1    0    0   0   0    0    0    00

10 000 00  1    0    0   0   0    0    0    00

11 000 00  1    0    0   0   0    0    0    00

12 000 00  1    0    0   0   0    0    0    00

13 000 00  1    0    0   0   0    0    0    00

14 000 00  1    0    0   0   0    0    0    00

15 000 00  1    0    0   0   0    0    0    00

16 000 00  1    0    0   0   0    0    0    00

17 000 00  1    0    0   0   0    0    0    00



IO APIC #10......

.... register #00: 0A000000

.......    : physical APIC id: 0A

.......    : Delivery Type: 0

.......    : LTS          : 0

.... register #01: 00178020

.......     : max redirection entries: 0017

.......     : PRQ implemented: 1

.......     : IO APIC version: 0020

.... register #02: 0A000000

.......     : arbitration: 0A

.... IRQ redirection table:

NR Log Phy Mask Trig IRR Pol Stat Dest Deli Vect:   

00 00F 0F  1    1    0   1   0    1    1    32

01 00F 0F  1    1    0   1   0    1    1    3A

02 00F 0F  1    1    0   1   0    1    1    42

03 00F 0F  1    1    0   1   0    1    1    4A

04 00F 0F  1    1    0   1   0    1    1    52

05 00F 0F  1    1    0   1   0    1    1    5A

06 00F 0F  1    1    0   1   0    1    1    62

07 00F 0F  1    1    0   1   0    1    1    6A

08 00F 0F  1    1    0   1   0    1    1    72

09 00F 0F  1    1    0   1   0    1    1    7A

0a 00F 0F  1    1    0   1   0    1    1    82

0b 00F 0F  1    1    0   1   0    1    1    8A

0c 000 00  1    0    0   0   0    0    0    00

0d 000 00  1    0    0   0   0    0    0    00

0e 000 00  1    0    0   0   0    0    0    00

0f 000 00  1    0    0   0   0    0    0    00

10 000 00  1    0    0   0   0    0    0    00

11 000 00  1    0    0   0   0    0    0    00

12 000 00  1    0    0   0   0    0    0    00

13 000 00  1    0    0   0   0    0    0    00

14 000 00  1    0    0   0   0    0    0    00

15 000 00  1    0    0   0   0    0    0    00

16 000 00  1    0    0   0   0    0    0    00

17 000 00  1    0    0   0   0    0    0    00



IO APIC #11......

.... register #00: 0B000000

.......    : physical APIC id: 0B

.......    : Delivery Type: 0

.......    : LTS          : 0

.... register #01: 00178020

.......     : max redirection entries: 0017

.......     : PRQ implemented: 1

.......     : IO APIC version: 0020

.... register #02: 0B000000

.......     : arbitration: 0B

.... IRQ redirection table:

NR Log Phy Mask Trig IRR Pol Stat Dest Deli Vect:   

00 00F 0F  1    1    0   1   0    1    1    92

01 00F 0F  1    1    0   1   0    1    1    9A

02 000 00  1    0    0   0   0    0    0    00

03 000 00  1    0    0   0   0    0    0    00

04 000 00  1    0    0   0   0    0    0    00

05 000 00  1    0    0   0   0    0    0    00

06 000 00  1    0    0   0   0    0    0    00

07 000 00  1    0    0   0   0    0    0    00

08 000 00  1    0    0   0   0    0    0    00

09 000 00  1    0    0   0   0    0    0    00

0a 000 00  1    0    0   0   0    0    0    00

0b 000 00  1    0    0   0   0    0    0    00

0c 000 00  1    0    0   0   0    0    0    00

0d 000 00  1    0    0   0   0    0    0    00

0e 000 00  1    0    0   0   0    0    0    00

0f 000 00  1    0    0   0   0    0    0    00

10 000 00  1    0    0   0   0    0    0    00

11 000 00  1    0    0   0   0    0    0    00

12 000 00  1    0    0   0   0    0    0    00

13 000 00  1    0    0   0   0    0    0    00

14 000 00  1    0    0   0   0    0    0    00

15 000 00  1    0    0   0   0    0    0    00

16 000 00  1    0    0   0   0    0    0    00

17 000 00  1    0    0   0   0    0    0    00

IRQ to pin mappings:

IRQ0 -> 0:2

IRQ1 -> 0:1

IRQ4 -> 0:4

IRQ5 -> 0:5

IRQ6 -> 0:6

IRQ8 -> 0:8

IRQ9 -> 0:9

IRQ12 -> 0:12

IRQ14 -> 0:14

IRQ15 -> 0:15

IRQ16 -> 0:16

IRQ17 -> 0:17

IRQ18 -> 0:18

IRQ19 -> 0:19

IRQ20 -> 0:20

IRQ21 -> 0:21

IRQ23 -> 0:23

IRQ25 -> 1:1

IRQ26 -> 1:2

IRQ28 -> 1:4

IRQ29 -> 1:5

IRQ30 -> 1:6

IRQ31 -> 1:7

IRQ38 -> 1:14

IRQ48 -> 2:0

IRQ49 -> 2:1

IRQ50 -> 2:2

IRQ51 -> 2:3

IRQ52 -> 2:4

IRQ53 -> 2:5

IRQ54 -> 2:6

IRQ55 -> 2:7

IRQ56 -> 2:8

IRQ57 -> 2:9

IRQ58 -> 2:10

IRQ59 -> 2:11

IRQ72 -> 3:0

IRQ73 -> 3:1

.................................... done.

Using local APIC timer interrupts.

calibrating APIC timer ...

..... CPU clock speed is 3790.8560 MHz.

..... host bus clock speed is 199.5187 MHz.

cpu: 0, clocks: 1995187, slice: 399037

CPU0<T0:1995184,T1:1596144,D:3,S:399037,C:1995187>

cpu: 1, clocks: 1995187, slice: 399037

cpu: 3, clocks: 1995187, slice: 399037

cpu: 2, clocks: 1995187, slice: 399037

CPU1<T0:1995184,T1:1197104,D:6,S:399037,C:1995187>

CPU2<T0:1995184,T1:798048,D:25,S:399037,C:1995187>

CPU3<T0:1995184,T1:399024,D:12,S:399037,C:1995187>

cpu_sibling_map[0] = 2

cpu_sibling_map[1] = 3

cpu_sibling_map[2] = 0

cpu_sibling_map[3] = 1

mapping CPU#0's runqueue to CPU#2's runqueue.

mapping CPU#1's runqueue to CPU#3's runqueue.

zapping low mappings.

Process timing init...done.

Starting migration thread for cpu 0

Starting migration thread for cpu 1

Starting migration thread for cpu 2

Starting migration thread for cpu 3

PCI: PCI BIOS revision 2.10 entry at 0xfbe4e, last bus=16

PCI: Using configuration type 1

PCI: Probing PCI hardware

PCI: Ignoring BAR0-3 of IDE controller 00:1f.1

Transparent bridge - Intel Corp. 82801BA/CA/DB/EB PCI Bridge

PCI: Using IRQ router PIIX [8086/24d0] at 00:1f.0

PCI->APIC IRQ transform: (B0,I2,P0) -> 16

论坛徽章:
0
10 [报告]
发表于 2006-10-15 14:10 |只看该作者
PCI->APIC IRQ transform: (B0,I3,P0) -> 16

PCI->APIC IRQ transform: (B0,I4,P0) -> 16

PCI->APIC IRQ transform: (B0,I5,P0) -> 16

PCI->APIC IRQ transform: (B0,I6,P0) -> 16

PCI->APIC IRQ transform: (B0,I29,P0) -> 16

PCI->APIC IRQ transform: (B0,I29,P1) -> 19

PCI->APIC IRQ transform: (B0,I29,P2) -> 18

PCI->APIC IRQ transform: (B0,I29,P3) -> 23

PCI->APIC IRQ transform: (B2,I14,P0) -> 38

PCI->APIC IRQ transform: (B5,I4,P0) -> 58

PCI->APIC IRQ transform: (B5,I4,P1) -> 59

PCI->APIC IRQ transform: (B11,I7,P0) -> 72

PCI->APIC IRQ transform: (B12,I8,P0) -> 73

PCI->APIC IRQ transform: (B16,I13,P0) -> 18

isapnp: Scanning for PnP cards...

isapnp: No Plug & Play device found

Linux NET4.0 for Linux 2.4

Based upon Swansea University Computer Society NET3.039

Initializing RT netlink socket

apm: BIOS not found.

Total HugeTLB memory allocated, 0

Starting kswapd

allocated 32 pages and 32 bhs reserved for the highmem bounces

VFS: Disk quotas vdquot_6.5.1

aio_setup: num_physpages = 557056

aio_setup: sizeof(struct page) = 60

Hugetlbfs mounted.

Detected PS/2 Mouse Port.

pty: 2048 Unix98 ptys configured

Serial driver version 5.05c (2001-07-0 with MANY_PORTS MULTIPORT SHARE_IRQ SERIAL_PCI ISAPNP enabled

ttyS0 at 0x03f8 (irq = 4) is a 16550A

Real Time Clock Driver v1.10e

NET4: Frame Diverter 0.46

RAMDISK driver initialized: 256 RAM disks of 8192K size 1024 blocksize

Uniform Multi-Platform E-IDE driver Revision: 7.00beta4-2.4

ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx

ICH5: IDE controller at PCI slot 00:1f.1

PCI: Enabling device 00:1f.1 (0005 -> 0007)

ICH5: chipset revision 2

ICH5: not 100% native mode: will probe irqs later

    ide0: BM-DMA at 0xfc00-0xfc07, BIOS settings: hdaMA, hdb:pio

    ide1: BM-DMA at 0xfc08-0xfc0f, BIOS settings: hdc:pio, hdd:pio

hda: HL-DT-ST DVD-ROM GDR-8084N, ATAPI CD/DVD-ROM drive

ide0 at 0x1f0-0x1f7,0x3f6 on irq 14

ide-floppy driver 0.99.newide

ide-floppy driver 0.99.newide

md: md driver 0.90.0 MAX_MD_DEVS=256, MD_SB_DISKS=27

md: Autodetecting RAID arrays.

md: autorun ...

md: ... autorun DONE.

pci_hotplug: PCI Hot Plug PCI Core version: 0.5

Initializing Cryptographic API

NET4: Linux TCP/IP 1.0 for NET4.0

IP: routing cache hash table of 131072 buckets, 1024Kbytes

TCP: Hash tables configured (established 524288 bind 65536)

Linux IP multicast router 0.06 plus PIM-SM

Initializing IPsec netlink socket

NET4: Unix domain sockets 1.0/SMP for Linux NET4.0.

RAMDISK: Compressed image found at block 0

Freeing initrd memory: 328k freed

VFS: Mounted root (ext2 filesystem).

SCSI subsystem driver Revision: 1.00

scsi0 : Adaptec AIC7XXX EISA/VLB/PCI SCSI HBA DRIVER, Rev 6.2.36

        <Adaptec 3960D Ultra160 SCSI adapter>

        aic7899: Ultra160 Wide Channel A, SCSI Id=7, 32/253 SCBs



scsi1 : Adaptec AIC7XXX EISA/VLB/PCI SCSI HBA DRIVER, Rev 6.2.36

        <Adaptec 3960D Ultra160 SCSI adapter>

        aic7899: Ultra160 Wide Channel B, SCSI Id=7, 32/253 SCBs



Starting timer : 0 0

blk: queue f67d5a18, I/O limit 524287Mb (mask 0x7fffffffff)

Starting timer : 0 0

megaraid: v2.10.10.1 (Release Date: Thu Jan 27 16:19:44 EDT 2005)

megaraid: found 0x1028:0x0013:bus 2:slot 14:func 0

scsi2:Found MegaRAID controller at 0xf8871000, IRQ:38

megaraid: [521X:H430] detected 1 logical drives.

megaraid: supports extended CDBs.

megaraid: channel[0] is raid.

megaraid: channel[1] is raid.

scsi2 : LSI Logic MegaRAID 521X 254 commands 16 targs 5 chans 7 luns

Starting timer : 0 0

scsi2: scanning scsi channel 0 for logical drives.

  Vendor: MegaRAID  Model: LD 0 RAID5  349G  Rev: 521X

  Type:   Direct-Access                      ANSI SCSI revision: 02

Starting timer : 0 0

blk: queue f67d5818, I/O limit 4294967295Mb (mask 0xffffffffffffffff)

scsi2: scanning scsi channel 1 for logical drives.

scsi2: scanning scsi channel 2 for logical drives.

scsi2: scanning scsi channel 3 for logical drives.

scsi2: scanning scsi channel 4 [P0] for physical devices.

  Vendor: PE/PV     Model: 1x8 SCSI BP       Rev: 1.0

  Type:   Processor                          ANSI SCSI revision: 02

Starting timer : 0 0

blk: queue f67d5618, I/O limit 4294967295Mb (mask 0xffffffffffffffff)

scsi2: scanning scsi channel 5 [P1] for physical devices.

Attached scsi disk sda at scsi2, channel 0, id 0, lun 0

SCSI device sda: 715571200 512-byte hdwr sectors (366372 MB)

Partition check:

sda: sda1 sda2 sda3 sda4 < sda5 sda6 >

Journalled Block Device driver loaded

kjournald starting.  Commit interval 5 seconds

EXT3-fs: mounted filesystem with ordered data mode.

Freeing unused kernel memory: 224k freed

usb.c: registered new driver usbdevfs

usb.c: registered new driver hub

usb-uhci.c: $Revision: 1.275 $ time 18:08:43 Oct  3 2003

usb-uhci.c: High bandwidth mode enabled

PCI: Setting latency timer of device 00:1d.0 to 64

usb-uhci.c: USB UHCI at I/O 0x8ce0, IRQ 16

usb-uhci.c: Detected 2 ports

usb.c: new USB bus registered, assigned bus number 1

hub.c: USB hub found

hub.c: 2 ports detected

PCI: Setting latency timer of device 00:1d.1 to 64

usb-uhci.c: USB UHCI at I/O 0x8cc0, IRQ 19

usb-uhci.c: Detected 2 ports

usb.c: new USB bus registered, assigned bus number 2

hub.c: USB hub found

hub.c: 2 ports detected

PCI: Setting latency timer of device 00:1d.2 to 64

usb-uhci.c: USB UHCI at I/O 0x8ca0, IRQ 18

usb-uhci.c: Detected 2 ports

usb.c: new USB bus registered, assigned bus number 3

hub.c: USB hub found

hub.c: 2 ports detected

usb-uhci.c: v1.275:USB Universal Host Controller Interface driver

PCI: Setting latency timer of device 00:1d.7 to 64

ehci-hcd 00:1d.7: Intel Corp. 82801EB USB2

ehci-hcd 00:1d.7: irq 23, pci mem f88ca000

usb.c: new USB bus registered, assigned bus number 4

ehci-hcd 00:1d.7: enabled 64bit PCI DMA

PCI: 00:1d.7 PCI cache line size set incorrectly (0 bytes) by BIOS/FW.

PCI: 00:1d.7 PCI cache line size corrected to 128.

ehci-hcd 00:1d.7: USB 2.0 enabled, EHCI 1.00, driver 2003-Jan-22

hub.c: USB hub found

hub.c: 6 ports detected

usb.c: registered new driver hiddev

usb.c: registered new driver hid

hid-core.c: v1.8.1 Andreas Gal, Vojtech Pavlik <vojtech@suse.cz>

hid-core.c: USB HID support drivers

mice: PS/2 mouse device common for all mice

EXT3 FS 2.4-0.9.19, 19 August 2002 on sd(8,3), internal journal

Adding Swap: 8193108k swap-space (priority -1)

hub.c: connect-debounce failed, port 1 disabled

hub.c: new USB device 00:1d.7-3, assigned address 2

hub.c: USB hub found

hub.c: 2 ports detected

kjournald starting.  Commit interval 5 seconds

EXT3 FS 2.4-0.9.19, 19 August 2002 on sd(8,2), internal journal

EXT3-fs: mounted filesystem with ordered data mode.

kjournald starting.  Commit interval 5 seconds

EXT3 FS 2.4-0.9.19, 19 August 2002 on sd(8,1), internal journal

EXT3-fs: mounted filesystem with ordered data mode.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP