Received: from mail-ed1-x533.google.com (mail-ed1-x533.google.com [IPv6:2a00:1450:4864:20::533]) by gbr-app-1.alpinelinux.org (Postfix) with ESMTPS id 1F7FB22029A for <~alpine/users@lists.alpinelinux.org>; Tue, 13 Dec 2022 19:35:10 +0000 (UTC) Received: by mail-ed1-x533.google.com with SMTP id e13so19329218edj.7 for <~alpine/users@lists.alpinelinux.org>; Tue, 13 Dec 2022 11:35:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=unixium.com; s=burph; h=to:subject:message-id:date:from:mime-version:from:to:cc:subject :date:message-id:reply-to; bh=KWOUXnPoiE0TBWuokj2zS2Kx6EiMPGgvQtCj4b1VLUI=; b=GLX1Qpl7YdRL6diufw6gTs5crjvimlBW4kJt6c4jFcuVc/8wsClisieqO3bnmSKwhj ztOF6ABw93AMTvaaKYBvgXOyOVfPkY+VwPucyeX5XXx9Bqcb8P5zDj7byqiAkhPOdyaX XNGfZrOUPmjbOUastyMXJhjWaogXfiX5XVy4ZUuxwjcMN+/DGXgKJr+y5hxYycqVMudr 4GljggYWwurxKfaFdHg0QQkdRN73j29fv7K6gAQPAy1WgMBIRLe5X0zCSJaatErDwv9x K2CdDjz2K5BT6HgBIcPUiRP6/SFOm+waYeJ10hGaIascF8md3VuPqzS+lESnelNLpYCv Y61w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=to:subject:message-id:date:from:mime-version:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=KWOUXnPoiE0TBWuokj2zS2Kx6EiMPGgvQtCj4b1VLUI=; b=eYu9LruVW6H6a1GgF9+JPDg9m1TRh8D2q5euGcXCfhFmSrmHMQf8boDz/x2+JW5Fr6 yl79sBNu1rOro1VSxR/xJQxUH1fk0ivy/OmGleTRODIihR/imCa3p5oeA7BecjBRdBlB CNwUjhQlKazwovc8Z39BjTKcad8l9HVFveYNgrmt861ZzdDSnqLy3A77LJ60NBSrTlks 2+A/1wWkm1oxxE6dUZSPbP0IM0W5Vzllf3kwRqyMhF3NHIX1NMvCT1HdPdn/5d/1MY0l heOQSvflpez9q3OEHMsy0qE5Hltb7OD+3R3F5WMGDFDE1ZS8+g7qXKf1d0NqfCizMcwV HOZg== X-Gm-Message-State: ANoB5pn64sFN9ijp4qRpHNv/d62rUrGe7hHNlE1vBsUzTlJpwwAmqcm6 RLASlcyk7JQ+Kei0439UDaUyqCLnQfxHUV/6bydDOowIvqKOXTVI X-Google-Smtp-Source: AA0mqf7rXkWHdATifZ78eT7QGvn97ei0QRjeB4ylX6p6w2kfU5ikbxLO6X82q0Wt2lDMu49HpHhVnLtsh55mlzJYxY8= X-Received: by 2002:aa7:cb98:0:b0:46f:af58:1a2d with SMTP id r24-20020aa7cb98000000b0046faf581a2dmr1602777edt.96.1670960106939; Tue, 13 Dec 2022 11:35:06 -0800 (PST) MIME-Version: 1.0 From: "swg.u.com" Date: Tue, 13 Dec 2022 13:34:55 -0600 Message-ID: Subject: Re: disk/by-uuid not getting setup To: ~alpine/users@lists.alpinelinux.org Content-Type: text/plain; charset="UTF-8" Just following up on this in case anyone else stumbles into this issue. As previously mentioned, "the pool was constructed using partition UUIDs," but I saw neither /dev/disk-uuid or /dev/disk/by-partuuid being constructed on my "sys" mode installed system, beyond the disk/by-uuid for the system boot drive. After poking around for some time, I've got a reasonable workaround. On a v3.17 install, editing /etc/grub.d/20_linux_xen, and making the following modifications: --- 20_linux_xen.old +++ 20_linux_xen @@ -45,7 +45,8 @@ # Default to disabling partition uuid support to maintian compatibility with # older kernels. -GRUB_DISABLE_LINUX_PARTUUID=${GRUB_DISABLE_LINUX_PARTUUID-true} +#GRUB_DISABLE_LINUX_PARTUUID=${GRUB_DISABLE_LINUX_PARTUUID-true} +GRUB_DISABLE_LINUX_PARTUUID=false Then running: $ grub-mkconfig -o /boot/grub/grub.cfg On reboot I do see the /dev/disk/by-partuuid getting automatically populated. Since I don't plan on using a kernel earlier than 3.10 (ref: the GNU GRUB Manual https://www.gnu.org/software/grub/manual/grub/html_node/Simple-configuration.html), I feel reasonably safe breaking "compatibility with older kernels." -- Thom