pa-risc
12.5.2026

# ll /dev/rdsk
total 0
crw-r----- 1 bin sys 188 0x01f000 May 11 16:17 c1t15d0
crw-r----- 1 bin sys 188 0x025000 May 11 10:55 c2t5d0
crw-r----- 1 bin sys 188 0x03f000 May 11 10:55 c3t15d0
c1t15d0 ist die physische (root-) Platte, die hat eine vg00 und drei lvol's: stand, root und swap. c2t5d0 ist das CD-ROM Laufwerk und c3t15d0 ist die noch leere zukünftige Spiegelplatte.
# pvcreate -B /dev/rdsk/c3t15d0
Physical volume "/dev/rdsk/c3t15d0" has been successfully created.
Ein physiclal volume wird auf der leeren Platte erstellt, wichtig ist "-B" um den Platz für Booter und LIF Header und so zu reservieren, damit man von der Platte booten kann, sollte die erste Platte mal defekt sein.
# vgextend /dev/vg00 /dev/dsk/c3t15d0
Volume group "/dev/vg00" has been successfully extended.
Volume Group configuration for /dev/vg00 has been saved in /etc/lvmconf/vg00.conf
Die so vor-behandelte Platte wird jetzt der Volume Group vg00 hinzugefügt, so das jetzt zwei Platten in der vg00 sind.
# mkboot /dev/rdsk/c3t15d0
Alle für's booten notwendigen Daten werden per mkboot in den oben mit pvcreate erstellten Bootbereich auf der Spiegelplatte kopiert, die Platte ist jetzt bootfähig.
# lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/c3t15d0
The newly allocated mirrors are now being synchronized. This operation will
take some time. Please wait ....
Logical volume "/dev/vg00/lvol1" has been successfully extended.
Volume Group configuration for /dev/vg00 has been saved in /etc/lvmconf/vg00.conf
# lvextend -m 1 /dev/vg00/lvol2 /dev/dsk/c3t15d0
The newly allocated mirrors are now being synchronized. This operation will
take some time. Please wait ....
Logical volume "/dev/vg00/lvol2" has been successfully extended.
Volume Group configuration for /dev/vg00 has been saved in /etc/lvmconf/vg00.conf
# lvextend -m 1 /dev/vg00/lvol3 /dev/dsk/c3t15d0
The newly allocated mirrors are now being synchronized. This operation will
take some time. Please wait ....
Logical volume "/dev/vg00/lvol3" has been successfully extended.
Volume Group configuration for /dev/vg00 has been saved in /etc/lvmconf/vg00.conf
Anschliessend werden die drei logical volumes lvol1, lvol2 und lvol3 auf die neue Spiegelplatte synchronisiert. Je nach Grösse kann das sehr, sehr lange dauern.
# lvlnboot -v
Boot Definitions for Volume Group /dev/vg00:
Physical Volumes belonging in Root Volume Group:
/dev/dsk/c1t15d0 (0/0/1/1.15.0) -- Boot Disk
/dev/dsk/c3t15d0 (0/0/2/1.15.0) -- Boot Disk
Boot: lvol1 on: /dev/dsk/c1t15d0
/dev/dsk/c3t15d0
Root: lvol3 on: /dev/dsk/c1t15d0
/dev/dsk/c3t15d0
Swap: lvol2 on: /dev/dsk/c1t15d0
/dev/dsk/c3t15d0
Dump: lvol2 on: /dev/dsk/c1t15d0, 0

root@rp2470:~# uname -a
Linux rp2470 7.0.4+deb14-parisc64 #1 SMP Debian 7.0.4-1 (2026-05-07) parisc64 GNU/Linux
root@rp2470:~#
- The first "install system" step will fail. Just go back to the menu and
choose "Configure the package manager". The select "Install base system".