• 全部
  • 经验案例
  • 典型配置
  • 技术公告
  • FAQ
  • 漏洞说明
  • 全部
  • 全部
  • 大数据引擎
  • 知了引擎
产品线
搜索
取消
案例类型
发布者
是否解决
是否官方
时间
搜索引擎
匹配模式
高级搜索

IX3000产品在Solaris客户端的特殊配置

2008-12-31 发表
  • 0关注
  • 0收藏 621浏览
粉丝: 关注:

IX3000产品在Solaris客户端的特殊配置

 

一、 组网需求:

二、 组网图:

三、 配置步骤:

 

对于Solaris系统,最常遇到的问题就是创建分区后的容量和实际容量不一致。对于挂给solaris系统的卷,一定要用format命令检查显示的大小是否和实际的SAN资源的大小一致。如果不一致,需要用dd命令对开始的一段区间清0,直到大小一致。

format命令检查SAN资源大小操作如下:

root@solaris1 # format

Searching for disks...done

 

 

AVAILABLE DISK SELECTIONS:

       0. c1t0d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>

          /pci@1c,600000/scsi@2/sd@0,0

       1. c9t36d0 <H3C-H3C ISCSI DISK-v1.0-488.28GB>

          /iscsi/disk@***.***.h3c-.ix3080-125.sunv240-123-00000,0

Specify disk (enter its number): 1

selecting c9t36d0

[disk formatted]

 

 

FORMAT MENU:

        disk       - select a disk

        type       - select (define) a disk type

        partition  - select (define) a partition table

        current    - describe the current disk

        format     - format and analyze the disk

        repair     - repair a defective sector

        label      - write label to the disk

        analyze    - surface analysis

        defect     - defect list management

        backup     - search for backup labels

        verify     - read and display labels

        inquiry    - show vendor, product and revision

        volname    - set 8-character volume name

        !<cmd>     - execute <cmd>, then return

        quit

format> p

 

 

PARTITION MENU:

        0      - change `0' partition

        1      - change `1' partition

        2      - change `2' partition

        3      - change `3' partition

        4      - change `4' partition

        5      - change `5' partition

        6      - change `6' partition

        select - select a predefined table

        modify - modify a predefined partition table

        name   - name the current table

        print  - display the current table

        label  - write partition map and label to the disk

        !<cmd> - execute <cmd>, then return

        quit

partition> p

Current partition table (original):

Total disk sectors available: 2457583582 + 16384 (reserved sectors)

 

Part      Tag    Flag     First Sector          Size          Last Sector

  0       root    wm                34       128.00MB           262177

  1       swap    wu            262178       128.00MB           524321

  2 unassigned    wm                 0            0                0

  3 unassigned    wm                 0            0                0

  4 unassigned    wm                 0            0                0

  5 unassigned    wm                 0            0                0

  6        usr    wm            524322         1.14TB           2457583581

  8   reserved    wm        2457583582         8.00MB           2457599965

 

partition>

设备c9t36d0实际容量只有500G不到,但format显示分区却有1.14TB。此问题通常是由于在存储(IX3000)的一个RAID上创建过1.14TB左右的SAN资源并分配给了Solaris,被删除后又在同一RAID上创建一个更小的SAN资源分配给Solaris,由于卷的头部信息仍然保留了旧的分区信息,从而导致这个现象。解决这个问题需要清掉头部信息后再重新format

root@solaris1 # dd if=/dev/zero of=/dev/rdsk/c9t36d0 bs=1024k count=2048

2048+0 records in

2048+0 records out

root@solaris1 # format

Searching for disks...done

 

c9t36d0: configured with capacity of 488.28GB

 

 

AVAILABLE DISK SELECTIONS:

       0. c1t0d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>

          /pci@1c,600000/scsi@2/sd@0,0

       1. c9t36d0 <H3C-H3C ISCSI DISK-v1.0-488.28GB>

          /iscsi/disk@***.***.h3c-.ix3080-125.sunv240-123-00000,0

Specify disk (enter its number): 1

selecting c9t36d0

[disk formatted]

Disk not labeled.  Label it now? yes

 

 

FORMAT MENU:

        disk       - select a disk

        type       - select (define) a disk type

        partition  - select (define) a partition table

        current    - describe the current disk

        format     - format and analyze the disk

        repair     - repair a defective sector

        label      - write label to the disk

        analyze    - surface analysis

        defect     - defect list management

        backup     - search for backup labels

        verify     - read and display labels

        inquiry    - show vendor, product and revision

        volname    - set 8-character volume name

        !<cmd>     - execute <cmd>, then return

        quit

format> p

 

 

PARTITION MENU:

        0      - change `0' partition

        1      - change `1' partition

        2      - change `2' partition

        3      - change `3' partition

        4      - change `4' partition

        5      - change `5' partition

                                                                                                                                                  6      - change `6' partition

        select - select a predefined table

        modify - modify a predefined partition table

        name   - name the current table

        print  - display the current table

        label  - write partition map and label to the disk

        !<cmd> - execute <cmd>, then return

        quit

partition> p

Current partition table (original):

Total disk sectors available: 1023983582 + 16384 (reserved sectors)

 

Part      Tag    Flag     First Sector          Size          Last Sector

  0       root    wm                34       128.00MB           262177

  1       swap    wu            262178       128.00MB           524321

  2 unassigned    wu                 0            0                0

  3 unassigned    wm                 0            0                0

  4 unassigned    wm                 0            0                0

  5 unassigned    wm                 0            0                0

  6        usr    wm            524322       488.02GB           1023983581

  8   reserved    wm        1023983582         8.00MB           1023999965

使用dd命令清除头部信息后,再用format命令查看已是正常的488.02GB

四、 配置关键点:

?  

若您有关于案例的建议,请反馈:

作者在2009-01-15对此案例进行了修订
0 个评论

该案例暂时没有网友评论

编辑评论

举报

×

侵犯我的权益 >
对根叔知了社区有害的内容 >
辱骂、歧视、挑衅等(不友善)

侵犯我的权益

×

泄露了我的隐私 >
侵犯了我企业的权益 >
抄袭了我的内容 >
诽谤我 >
辱骂、歧视、挑衅等(不友善)
骚扰我

泄露了我的隐私

×

您好,当您发现根叔知了上有泄漏您隐私的内容时,您可以向根叔知了进行举报。 请您把以下内容通过邮件发送到pub.zhiliao@h3c.com 邮箱,我们会尽快处理。
  • 1. 您认为哪些内容泄露了您的隐私?(请在邮件中列出您举报的内容、链接地址,并给出简短的说明)
  • 2. 您是谁?(身份证明材料,可以是身份证或护照等证件)

侵犯了我企业的权益

×

您好,当您发现根叔知了上有关于您企业的造谣与诽谤、商业侵权等内容时,您可以向根叔知了进行举报。 请您把以下内容通过邮件发送到 pub.zhiliao@h3c.com 邮箱,我们会在审核后尽快给您答复。
  • 1. 您举报的内容是什么?(请在邮件中列出您举报的内容和链接地址)
  • 2. 您是谁?(身份证明材料,可以是身份证或护照等证件)
  • 3. 是哪家企业?(营业执照,单位登记证明等证件)
  • 4. 您与该企业的关系是?(您是企业法人或被授权人,需提供企业委托授权书)
我们认为知名企业应该坦然接受公众讨论,对于答案中不准确的部分,我们欢迎您以正式或非正式身份在根叔知了上进行澄清。

抄袭了我的内容

×

原文链接或出处

诽谤我

×

您好,当您发现根叔知了上有诽谤您的内容时,您可以向根叔知了进行举报。 请您把以下内容通过邮件发送到pub.zhiliao@h3c.com 邮箱,我们会尽快处理。
  • 1. 您举报的内容以及侵犯了您什么权益?(请在邮件中列出您举报的内容、链接地址,并给出简短的说明)
  • 2. 您是谁?(身份证明材料,可以是身份证或护照等证件)
我们认为知名企业应该坦然接受公众讨论,对于答案中不准确的部分,我们欢迎您以正式或非正式身份在根叔知了上进行澄清。

对根叔知了社区有害的内容

×

垃圾广告信息
色情、暴力、血腥等违反法律法规的内容
政治敏感
不规范转载 >
辱骂、歧视、挑衅等(不友善)
骚扰我
诱导投票

不规范转载

×

举报说明

提出建议

    +

亲~登录后才可以操作哦!

确定

亲~检测到您登陆的账号未在http://hclhub.h3c.com进行注册

注册后可访问此模块

跳转hclhub

你的邮箱还未认证,请认证邮箱或绑定手机后进行当前操作