initialize zLinux disks under zVM

Latest response

Hello everyone, does anyone have a better solution for initializing zLinux disks?
We define the necessary disks for our Linux guests in the zVM and then we carry out the following steps on the zLinux:

With a lot of records to add, that's a lot of work. Has anyone created a similar problem and an automatism or script or a better idea?

Thanks in advance

Greetings Heinz

Commands:
vmcp link lxdisks DE23 219 mr

Die neue Platte wird "online" gesetzt

chccwdev -e NNN (NNN = Virt Addr in VM)

Die neue Platte wird formatiert

dasdfmt -b 4096 -d cdl -p /dev/disk/by-path/ccw-0.0.0NNN

/dev/disk/by-path/ccw-0.0.0NNN ist ein Link auf

/dev/dasdX. Im Folgenden verwenden wir /dev/dasdX.

Es wird eine Partitionstabelle (ein Label) angelegt

fdasd -a /dev/dasdX (X = Linux Dasd-Suffix. Am besten mit ls -rtl /dev suchen !)

Die neue Partition hat nun einen falschen Typ, dieser

wird korrigiert

parted /dev/dasdX
(parted) toggle
Partitionsnummer? 1
Umzukehrendes Flag? raid/lvm? lvm
(parted) quit

Die neue Partition wird für LVM vorbereitet

pvcreate /dev/dasdX1

Das neue physische Volume wird in die Volume-Gruppe eingefügt

vgextend bmdbXNdg /dev/dasdX1

zum Schluss werden die Dasds noch in die /etc/dasd.confs eingetragen

Responses