meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
vm:proxmox:pbs:issues [2025/04/01 14:16] niziakvm:proxmox:pbs:issues [2025/08/12 17:12] (current) niziak
Line 1: Line 1:
 ====== issues ====== ====== issues ======
 +
 +===== failed to get canonical path of =====
 +
 +<code>
 +/usr/sbin/grub-probe: error: failed to get canonical path of `/dev/disk/by-id/scsi-35000000000000278-part3'.
 +</code>
 +
 +From beginning all SATA drives were linked in ''/dev/disk/by-id'' as:
 +  * ''ata-???''
 +  * ''scsi-???''
 +  * ''wwn-???''
 +After inserting first SAS drive to mixed array, Kernel assigns ''scsi-???'' only for SAS drives.
 +So initial zpool configuration was wrong using ''scsi-???' ids.
 +
 +
 +<code bash>
 +zpool status -P rpool
 +
 + NAME                                                            STATE     READ WRITE CKSUM
 + rpool                                                           ONLINE               0
 +   mirror-2                                                      ONLINE               0
 +     /dev/disk/by-partuuid/240b1914-4002-4b48-8644-2cefeee091f2  ONLINE               0
 +     /dev/disk/by-id/scsi-35000000000000278-part3                ONLINE               0
 +
 +zpool offline rpool scsi-35000000000000278-part3
 +zpool detach rpool scsi-35000000000000278-part3
 +zpool attach rpool 240b1914-4002-4b48-8644-2cefeee091f2 wwn-0x5000000000000278-part3
 +</code>
  
 ===== removal pending data  ===== ===== removal pending data  =====