分类:
2008-08-04 22:04:49
如果系统盘做了mirror,如何查看系统是从哪个盘启动的
如果用lvlnboot –v来查看
#lvlnboot -v
Boot Definitions for Volume Group /dev/vg00:
Physical Volumes belonging in Root Volume Group:
/dev/dsk/c1t2d0 (0/
/dev/dsk/c2t2d0 (0/0/2/
Boot: lvol1 on: /dev/dsk/c1t2d0
/dev/dsk/c2t2d0
Root: lvol3 on: /dev/dsk/c1t2d0
/dev/dsk/c2t2d0
Swap: lvol2 on: /dev/dsk/c1t2d0
在正常情况下系统从/dev/dsk/c1t2d0引导,但如果在系统启动时被打断,然后
手动更改从c2t2d0启动的话,用这种方法判断就不准确了。
我们可以用下边的命令来准确的判断系统到底哪个盘启动的:
# echo boot_string/s | adb /stand/vmunix /dev/kmem
Error from elf64_getehdr(application core file)
Not an Elf file: No Elf header
boot_string:
boot_string: disk(0/
或
# echo boot_string/s | adb /stand/vmunix /dev/mem
Error from elf64_getehdr(application core file)
Not an Elf file: No Elf header
boot_string:
boot_string: disk(0/
这是最准确的一种方法。