トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS

#contentsx

**Link [#oc9beccd]
[[HMCのDVDドライブを使用してLinux導入をする際の考慮点>http://www-06.ibm.com/jp/domino01/mkt/cnpages7.nsf/page/default-0030DD9B?OpenDocument]]

[[Novell導入ガイド>http://www.novell.com/ja-jp/documentation/sles11/book_sle_deployment/?page=/ja-jp/documentation/sles11/book_sle_deployment/data/sec_zseries_prep.html]]

**障害対応 [#wd02666e]
-[[メモリダンプ取得手順(SADUMP)>Installmemo/zLinux/SADUMP]]
**DASD [#g8f63560]
***z/VMへのATTACH [#o123d067]
zLinuxに認識させるには、まずz/VMのユーザーにDASDをATTCHする。Linux上からvmcp経由でCPコマンドを発行させてもよい。
 # vmcp  attach 2A0A \*
 DASD 2A0A ATTACHED TO MCS201 2A0A WITH DEVCTL PAV BASE

***Online化とDASDフォーマット [#ea1d0b76]
-Online
Linuxでdeviceとして認識するにはDASDをonlineにする必要がある。
 # chccwdev -e 0.0.2A0A
 Setting device 0.0.2a0a online
 Done
-DASD Lowレベルフォーマット
さらにLowレベルフォーマットを行う必要がある。
 # dasdfmt -f /dev/dasdn -l 2A0A -b 4096
 Drive Geometry: 10017 Cylinders * 15 Heads =  150255 Tracks
 
 I am going to format the device /dev/dasdn in the following way:
    Device number of device : 0x2a0a
    Labelling device        : yes
    Disk label              : VOL1
    Disk identifier         : 2A0A
    Extent start (trk no)   : 0
    Extent end (trk no)     : 150254
    Compatible Disk Layout  : yes
    Blocksize               : 4096
 
 --->> ATTENTION! <<---
 All data of that device will be lost.
 Type "yes" to continue, no will leave the disk untouched: yes
 Formatting the device. This may take a while (get yourself a coffee).
 Finished formatting the device.
 Rereading the partition table... ok
-パーティション作成
認識させたDASDを1パーティションとして使用する場合はfdasdコマンドでパーティションを作成する。
 # fdasd -a /dev/dasdn
 reading volume label ..: VOL1
 reading vtoc ..........: ok
 
 auto-creating one partition for the whole disk...
 writing volume label...
 writing VTOC...
 rereading partition table...


**Network [#tba6fdc2]
〜準備中〜
**Tips [#u1836a77]
***DASDのread failed error [#l494217d]
Q.z/VMからDASDをAttachしLinux上でもdasdfmtできるが、その後LVMにPVをアサインするとread failed errorが発生する。
 # vgcreate datavg /dev/dasdb1 /dev/dasdc1 /dev/dasdd1
  /dev/dasdb: read failed after 0 of 2048 at 0: Invalid argument
  /dev/dasdc: read failed after 0 of 2048 at 0: Invalid argument
  /dev/dasdd: read failed after 0 of 2048 at 0: Invalid argument

A.対象DASDをdetachし、z/VM上でCPFMTXAにて再フォーマ後を行う