• New partition sizes in default recipes for d-i

    From Holger Wansing@21:1/5 to All on Sun Sep 15 12:30:01 2024
    Hi Pascal,

    since your work from https://salsa.debian.org/installer-team/partman-auto/-/merge_requests/15
    and
    https://salsa.debian.org/installer-team/partman-auto-lvm/-/merge_requests/5
    has landed in the daily images, I did some testing with different disk sizes; the results can be found in https://people.debian.org/~holgerw/partman-auto__with-MR15-merged/
    separated by BIOS and UEFI.

    While it works fine so far, on glitch came up during testing:

    Using the "separate home+var+tmp" recipe under UEFI variant on a 10G disk results in an error

    "Unable to satisfy all constraints on the partition"
    "Failed to partition the selected disk. This probably happened because there are too many (primary) partitions in the partition table."

    See https://people.debian.org/~holgerw/partman-auto__with-MR15-merged/UEFI/10G-disk__1G-RAM/use-entire-disk__separate-home-var-tmp__error1.png
    https://people.debian.org/~holgerw/partman-auto__with-MR15-merged/UEFI/10G-disk__1G-RAM/use-entire-disk__separate-home-var-tmp__error2.png
    https://people.debian.org/~holgerw/partman-auto__with-MR15-merged/UEFI/10G-disk__1G-RAM/use-entire-disk__separate-home-var-tmp__error3.png

    In the partitioning overview (screenshot 3) the /home partition is
    missing, so this is the one which raises the error apparently.

    However, since this is UEFI, and therefore gpt partition table, the amount
    of partitions (here: 6) should be no issue here.
    Since I was unable to reproduce this issue with d-i images from before these partman-auto changings, it's somehow related to this recipe changes, and
    the message regarding "too many partitions" is wrong.

    As this only happens with a very small disk (10G):
    Do we need to adjust the minimum disk size for this recipe maybe, or similar?



    Holger


    --
    Holger Wansing <[email protected]>
    PGP-Fingerprint: 496A C6E8 1442 4B34 8508 3529 59F1 87CA 156E B076

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Pascal Hambourg@21:1/5 to Holger Wansing on Sun Sep 15 14:50:01 2024
    Hello Holger,

    On 15/09/2024 à 12:27, Holger Wansing wrote:

    Using the "separate home+var+tmp" recipe under UEFI variant on a 10G disk results in an error

    "Unable to satisfy all constraints on the partition"
    "Failed to partition the selected disk. This probably happened because there are too many (primary) partitions in the partition table."
    (...)
    In the partitioning overview (screenshot 3) the /home partition is
    missing, so this is the one which raises the error apparently.

    Also, the /tmp partition size (468MB) is lower that the minimum size
    defined in the EFI "multi" recipe (500MB). The minimum disk size for
    this recipe is 11768MB, so the recipe should not be available on a
    10.7GB (10GiB) disk. I suspect you hit the same bug on an already
    partitioned disk as described in <https://lists.debian.org/debian-boot/2024/08/msg00151.html>.

    Summary: existing reusable partitions (efi and swap) minimum sizes may
    wrongly be ignored when calculating the required minimum disk size even
    when using an entire disk.

    Last time I guess it did not trigger an error because /home could be
    created, athough with the wrong size. This time, there was no free space
    left to create /home at all.

    The bug already existed previously and is totally unrelated with the MR,
    it could be triggered with specific disk sizes. It just happened that
    10GiB is such a specific size for the updated recipes.
    It cannot happen on a disk with no efi nor swap partitions.

    Do we need to adjust the minimum disk size for this recipe maybe, or similar?

    The minimum disk size for a recipe is calculated automatically by
    summing up the minimum partition sizes in the recipe. Changing minimum partition sizes would just change the disk size which triggers the bug.

    You may want to try the fix I prepared but considered not essential
    (useful only on small disks with sizes close to the required minimum
    size). Who would be fool enough to use the multi recipe on a 10GB disk ?

    <https://salsa.debian.org/pham/partman-auto/-/commits/choose_recipe-fixes?ref_type=heads>

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Pascal Hambourg@21:1/5 to Pascal Hambourg on Sun Sep 15 17:00:01 2024
    On 15/09/2024 at 14:39, Pascal Hambourg wrote:

    Summary: existing reusable partitions (efi and swap) minimum sizes may wrongly be ignored when calculating the required minimum disk size even
    when using an entire disk.
    (...)
    You may want to try the fix I prepared (...)

    <https://salsa.debian.org/pham/partman-auto/-/commits/choose_recipe-fixes?ref_type=heads>

    Draft merge request: <https://salsa.debian.org/installer-team/partman-auto/-/merge_requests/17>

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Holger Wansing@21:1/5 to Pascal Hambourg on Sun Sep 15 20:50:01 2024
    Hi,

    Pascal Hambourg <[email protected]> wrote (Sun, 15 Sep 2024 14:39:42 +0200):
    On 15/09/2024 � 12:27, Holger Wansing wrote:

    Using the "separate home+var+tmp" recipe under UEFI variant on a 10G disk results in an error

    "Unable to satisfy all constraints on the partition"
    "Failed to partition the selected disk. This probably happened because there
    are too many (primary) partitions in the partition table."
    (...)
    In the partitioning overview (screenshot 3) the /home partition is
    missing, so this is the one which raises the error apparently.

    Also, the /tmp partition size (468MB) is lower that the minimum size
    defined in the EFI "multi" recipe (500MB). The minimum disk size for
    this recipe is 11768MB, so the recipe should not be available on a
    10.7GB (10GiB) disk. I suspect you hit the same bug on an already partitioned disk as described in <https://lists.debian.org/debian-boot/2024/08/msg00151.html>.

    Summary: existing reusable partitions (efi and swap) minimum sizes may wrongly be ignored when calculating the required minimum disk size even
    when using an entire disk.

    You are right. A test on a freshly generated qemu disk does not trigger
    this bug. (In fact, this recipe is not provided at all.)
    So this is indeed an 'reuse' issue.

    Last time I guess it did not trigger an error because /home could be created, athough with the wrong size. This time, there was no free space left to create /home at all.

    The bug already existed previously and is totally unrelated with the MR,
    it could be triggered with specific disk sizes. It just happened that
    10GiB is such a specific size for the updated recipes.
    It cannot happen on a disk with no efi nor swap partitions.

    Do we need to adjust the minimum disk size for this recipe maybe, or similar?

    The minimum disk size for a recipe is calculated automatically by
    summing up the minimum partition sizes in the recipe. Changing minimum partition sizes would just change the disk size which triggers the bug.

    You may want to try the fix I prepared but considered not essential
    (useful only on small disks with sizes close to the required minimum
    size). Who would be fool enough to use the multi recipe on a 10GB disk ?

    You are of course right here. We cannot make it fool-proof for all and
    every situation.

    <https://salsa.debian.org/pham/partman-auto/-/commits/choose_recipe-fixes?ref_type=heads>


    Holger

    --
    Holger Wansing <[email protected]>
    PGP-Fingerprint: 496A C6E8 1442 4B34 8508 3529 59F1 87CA 156E B076

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Holger Wansing@21:1/5 to Pascal Hambourg on Sun Sep 15 21:00:01 2024
    Hi,

    Pascal Hambourg <[email protected]> wrote (Sun, 15 Sep 2024 16:50:59 +0200):
    On 15/09/2024 at 14:39, Pascal Hambourg wrote:

    Summary: existing reusable partitions (efi and swap) minimum sizes may wrongly be ignored when calculating the required minimum disk size even when using an entire disk.
    (...)
    You may want to try the fix I prepared (...)

    <https://salsa.debian.org/pham/partman-auto/-/commits/choose_recipe-fixes?ref_type=heads>

    Draft merge request: <https://salsa.debian.org/installer-team/partman-auto/-/merge_requests/17>

    I think, we can consider this being a corner case, and therefore leave that
    as is.


    Holger


    --
    Holger Wansing <[email protected]>
    PGP-Fingerprint: 496A C6E8 1442 4B34 8508 3529 59F1 87CA 156E B076

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Pascal Hambourg@21:1/5 to Holger Wansing on Sun Sep 15 22:50:01 2024
    On 15/09/2024 at 20:43, Holger Wansing wrote:

    We cannot make it fool-proof for all and every situation.

    Maybe not, but identified bugs with available fixes should not be left
    unfixed.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Holger Wansing@21:1/5 to All on Mon Sep 16 08:00:01 2024
    Am 15. September 2024 22:48:24 MESZ schrieb Pascal Hambourg <[email protected]>:
    On 15/09/2024 at 20:43, Holger Wansing wrote:

    We cannot make it fool-proof for all and every situation.

    Maybe not, but identified bugs with available fixes should not be left unfixed.

    Sounds senseful.

    I thought I go for some testing then, but sadly the mechanism
    to build mini.iso's from d-i commits seems broken for some
    time.

    Phil: are you aware of this?

    I looks like an issue with the naming/versioning of linux-image,
    but there have been some kernel uploads since then, and
    the problem persists.


    See
    <https://salsa.debian.org/pham/partman-auto/-/pipelines/729206>:



    The following packages have unmet dependencies:

    builddeps:. : Depends: linux-image--amd64 but it is not installable

    E: Unable to correct problems, you have held broken packages.




    Holger


    --
    Sent from /e/ OS on Fairphone3

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Diederik de Haas@21:1/5 to Holger Wansing on Mon Sep 16 10:20:01 2024
    --c8155884b52657fc389fd1616478a3351bd913d41f0617d0b6bf770527ca Content-Transfer-Encoding: quoted-printable
    Content-Type: text/plain; charset=UTF-8

    On Mon Sep 16, 2024 at 7:49 AM CEST, Holger Wansing wrote:
    I thought I go for some testing then, but sadly the mechanism
    to build mini.iso's from d-i commits seems broken for some
    time.

    Phil: are you aware of this?

    I looks like an issue with the naming/versioning of linux-image,
    but there have been some kernel uploads since then, and
    the problem persists.

    See
    <https://salsa.debian.org/pham/partman-auto/-/pipelines/729206>:

    The following packages have unmet dependencies:

    builddeps:. : Depends: linux-image--amd64 but it is not installable

    E: Unable to correct problems, you have held broken packages.

    That looks like the kernel 'ABI' detection is going wrong.

    https://salsa.debian.org/installer-team/debian-installer/-/blob/master/debian/salsa-ci.yml#L43
    would be my guess where 'something' needs to be updated?

    HTH,
    Diederik

    --c8155884b52657fc389fd1616478a3351bd913d41f0617d0b6bf770527ca
    Content-Type: application/pgp-signature; name="signature.asc"

    -----BEGIN PGP SIGNATURE-----

    iHUEABYIAB0WIQT1sUPBYsyGmi4usy/XblvOeH7bbgUCZufmMQAKCRDXblvOeH7b bq2NAQDpL0b4VL212++tHY5SXEbB+U98XEp3gAoa5PCfCayxMwD/RKfh4DUL33PQ Vp9qzC+3mQq8UhOO5xaylFfo1HZ9Qgs=qmka
    -----END PGP SIGNATURE-----

    --c8155884b52657fc389fd1616478a3351bd913d41f0617d0b6bf770527ca--

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Cyril Brulebois@21:1/5 to All on Mon Sep 23 17:00:01 2024
    Hi,

    I've been watching from afar, thanks to everyone involved in trying to
    get that updated.

    Holger Wansing <[email protected]> (2024-09-15):
    As this only happens with a very small disk (10G):
    Do we need to adjust the minimum disk size for this recipe maybe, or similar?

    Testing a local build against unstable, with a regular BIOS-based setup,
    I'm seeing a failure to automatically partition a 5G disk, which I'd
    call a major regression.

    Sure, people can use whatever templates or official Debian images their virtualization environments might provide, but I've seen people upload
    a netinst ISO and install their VMs via d-i, possibly with small disks
    because all they need is installing a specific (set of) package(s) to
    provide a service.

    I'm not sure *where* I'd put the limit, but failing to partition a 5G
    or 10G disk really doesn't seem acceptable to me.


    Cheers,
    --
    Cyril Brulebois ([email protected]) <https://debamax.com/>
    D-I release manager -- Release team member -- Freelance Consultant

    -----BEGIN PGP SIGNATURE-----

    iQIzBAABCgAdFiEEtg6/KYRFPHDXTPR4/5FK8MKzVSAFAmbxgdwACgkQ/5FK8MKz VSCLMA//XGylnLyWU2JkmD/ajzBabvk0HSX9ivvlq2D63IKz6Hgd1sGD6FGf3TCT 8JLO0g5wYWciGjgJeQ9ASWNQBgqlMVWGIQL1O1pZIUc5+mnDhNTsaEPtjOMX9/g4 2b+ykcxDOTcOGuLNeVue40LgUSMUfqo8eu/NKUOV0OMyWm0acq9131UX+WvydYan UADzI5GPh8TXLHguxU16b8ErYZhjHyUuItO311vejSqO5O1KW+R2qtkYv4/giC2l yD05j5ziBBcFevq85QdPX8wbcG6VAA9N+p+mN6U1hbk6dWbUPJxDU0cqWMoMa+pZ sQ/QnTmkqwrObcd6FyeRfM/T+eO/tOn1/Ht6JvkihjQj+JUGuBs0Qg9cLNRi+F8t 8MzVGsZ2kixpLe47B5gtmAQY6pXZz82karcEgrH6N8pWi/XoFhHzLVzZbYr51hsi vPyC63SGeSYAe6RcB4y0SIMvfSrLS60w7AD4F2Li+9JM9hdq/bVZp4LD+86jrdaG m0ZKVJpekdbN701JSSIDjff10lGXqlEYuKHwnJpd5K161D2K01QPTE8VVpO27/1l 4wjiaNJJshoMBr9VhY38KPlil1mXPkynvjnSkJcF7YLDRp2HH3hx0zGiWjFDHlr9 G8JPZ1g/UGbHlOlK3fa+ZJocypvHARvlz+HGfPDGw4kGDtE+sPo=
    =n+9p
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    *
  • From Pascal Hambourg@21:1/5 to Cyril Brulebois on Mon Sep 23 20:10:01 2024
    Hi,

    On 23/09/2024 àat 16:57, Cyril Brulebois wrote:

    Testing a local build against unstable, with a regular BIOS-based setup,
    I'm seeing a failure to automatically partition a 5G disk, which I'd
    call a major regression.

    Which method and recipe did you use ?

    With a 5GB disk, the only available recipe should be "small_disk"
    without LVM. On BIOS setup it requires at least 2.5GB disk space so it
    should not fail on a 5GB disk (I just tested).
    Other recipes require 7.5-12.5GB, so they should not be offered.

    I'm not sure *where* I'd put the limit, but failing to partition a 5G
    or 10G disk really doesn't seem acceptable to me.

    Our assumption was that guided partitioning primarily targeted casual desktop/laptop users who want to install a standard system with a
    desktop environement, so we raised the limits of the "standard" recipes (atomic, home, multi) to enforce this use case. The "small_disk" recipe
    was added to support small disks in other use cases.

    Maybe we went to far ?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Holger Wansing@21:1/5 to Pascal Hambourg on Mon Sep 23 22:50:01 2024
    Hi,

    Pascal Hambourg <[email protected]> wrote (Mon, 23 Sep 2024 19:59:41 +0200):
    On 23/09/2024 �at 16:57, Cyril Brulebois wrote:

    Testing a local build against unstable, with a regular BIOS-based setup, I'm seeing a failure to automatically partition a 5G disk, which I'd
    call a major regression.

    Which method and recipe did you use ?

    With a 5GB disk, the only available recipe should be "small_disk"
    without LVM. On BIOS setup it requires at least 2.5GB disk space so it should not fail on a 5GB disk (I just tested).
    Other recipes require 7.5-12.5GB, so they should not be offered.

    I guess that's just another case of the "reuse" feature leading to
    unexpected results, as in https://lists.debian.org/debian-boot/2024/09/msg00094.html

    MR!17 has been filed to fix this bug. See https://salsa.debian.org/installer-team/partman-auto/-/merge_requests/17

    A test with a freshly generated QEMU disk with 5G size shows no errors here, the only provided recipe is the "small disk (<10G) partitioning scheme", leading to a 4.7G root partition and 701 MB swap.
    The rest of the installation completed without error.



    I'm not sure *where* I'd put the limit, but failing to partition a 5G
    or 10G disk really doesn't seem acceptable to me.

    Our assumption was that guided partitioning primarily targeted casual desktop/laptop users who want to install a standard system with a
    desktop environement, so we raised the limits of the "standard" recipes (atomic, home, multi) to enforce this use case. The "small_disk" recipe
    was added to support small disks in other use cases.

    Maybe we went to far ?

    Looks fine to me as it is...


    Holger


    --
    Holger Wansing <[email protected]>
    PGP-Fingerprint: 496A C6E8 1442 4B34 8508 3529 59F1 87CA 156E B076

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Pascal Hambourg@21:1/5 to Holger Wansing on Mon Sep 23 23:20:01 2024
    Hi,

    On 23/09/2024 at 22:39, Holger Wansing wrote:

    Pascal Hambourg <[email protected]> wrote (Mon, 23 Sep 2024 19:59:41 +0200):
    On 23/09/2024 àat 16:57, Cyril Brulebois wrote:

    Testing a local build against unstable, with a regular BIOS-based setup, >>> I'm seeing a failure to automatically partition a 5G disk, which I'd
    call a major regression.

    Which method and recipe did you use ?

    With a 5GB disk, the only available recipe should be "small_disk"
    without LVM. On BIOS setup it requires at least 2.5GB disk space so it
    should not fail on a 5GB disk (I just tested).
    Other recipes require 7.5-12.5GB, so they should not be offered.

    I guess that's just another case of the "reuse" feature leading to
    unexpected results, as in https://lists.debian.org/debian-boot/2024/09/msg00094.html

    Even when subtracting the reusable swap partition, all the other recipes require more than 5GB so they should not be offered.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Cyril Brulebois@21:1/5 to All on Tue Sep 24 00:50:01 2024
    Holger Wansing <[email protected]> (2024-09-23):
    Pascal Hambourg <[email protected]> (2024-09-23):
    Which method and recipe did you use ?

    Encrypted LVM.

    The default option works though.

    I guess that's just another case of the "reuse" feature leading to
    unexpected results, as in https://lists.debian.org/debian-boot/2024/09/msg00094.html

    No, this is a brand new disk image.


    Cheers,
    --
    Cyril Brulebois ([email protected]) <https://debamax.com/>
    D-I release manager -- Release team member -- Freelance Consultant

    -----BEGIN PGP SIGNATURE-----

    iQIzBAABCgAdFiEEtg6/KYRFPHDXTPR4/5FK8MKzVSAFAmbx7wEACgkQ/5FK8MKz VSDbrQ/8D2odQLmA3R+9lLFy8/ZoSS+Z1eeiy1XWkECzFYitzY4KR2uwKFBF2lMM 5jzNVvI0IO6Psl9PFvafTOlFLaEuBVMBAYH2V315vxGQVa8ubDIibD2743oXiRXD d3JJPhrwPMGFe7FrwcnCTmaoO+JGxau3rkZv7+U6Z7jo0ktTqk6crVAMq8H0hH1L cXTckBXY3i/vWcxMiMOkTo3/okhHGJNN6ymtr77DMUcgocFxEWqOoGTY8irnJK9y +s7zxOPd0XUG4xlZdiwyT4FWhmOYqxGW5jvi3w5xIkXWKsQeFoHMESL4LwKRGhmw pZUtJHQfbp0gDgltrOlP3O7sLZN9T8W3kDrIXfSP6ZUNmGruOuhfn0YP+Xwu3BAU 27ZXwQpJQfRHGQ3UjG/dwTnYyzCVqkM5IbOyOJKTJOjfRcy1/MboZy0bVTaKjCvA WHwsFgGXeu8loxZ79GYijXKr1n4TxvOfHO/QFGUHpJNAZZTNDPln0PYDJ4q1snPj 6fpY1jH8O+nj4sqxJw1BHSgwmjhs6I+SXijG6WQCyvz/As4YwRExbT9Sa2VVQLz3 0uqenpdyJu1hGQR2EDSp9aZmBoHtg/1kAcjMqLN47griE1r/94VsmWN8POcgST5y SpCDIJ/pT3zyT7nLXMic0+o8trnqSEH9q/qI/OvjpInwm/Z5fpg=
    =OW2b
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    *
  • From Pascal Hambourg@21:1/5 to Cyril Brulebois on Tue Sep 24 08:10:01 2024
    On 24/09/2024 at 00:43, Cyril Brulebois wrote:
    Holger Wansing <[email protected]> (2024-09-23):
    Pascal Hambourg <[email protected]> (2024-09-23):
    Which method and recipe did you use ?

    Encrypted LVM.

    The default option works though.

    Ah, the small_disk recipe does not support LVM. It is intended, because
    I considered that using LVM does not make much sense on a < 10GB disk
    and takes more space for the separate /boot. See the part of the
    discussion starting with <https://lists.debian.org/debian-boot/2024/08/msg00149.html>. But I
    overlooked that it also disables encryption which requires LVM...

    Enable LVM with small_disk (again) ?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Holger Wansing@21:1/5 to All on Tue Sep 24 15:50:01 2024
    Am 24. September 2024 08:02:31 MESZ schrieb Pascal Hambourg <[email protected]>:
    On 24/09/2024 at 00:43, Cyril Brulebois wrote:
    Holger Wansing <[email protected]> (2024-09-23):
    Pascal Hambourg <[email protected]> (2024-09-23):
    Which method and recipe did you use ?

    Encrypted LVM.

    The default option works though.

    Ah, the small_disk recipe does not support LVM. It is intended, because I considered that using LVM does not make much sense on a < 10GB disk and takes more space for the separate /boot. See the part of the discussion starting with <https://lists.debian.
    org/debian-boot/2024/08/msg00149.html>. But I overlooked that it also disables encryption which requires LVM...

    Enable LVM with small_disk (again) ?

    +1


    Holger

    --
    Sent from /e/ OS on Fairphone3

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Cyril Brulebois@21:1/5 to All on Tue Sep 24 17:20:01 2024
    Pascal Hambourg <[email protected]> (2024-09-24):
    On 24/09/2024 at 00:43, Cyril Brulebois wrote:
    Holger Wansing <[email protected]> (2024-09-23):
    Pascal Hambourg <[email protected]> (2024-09-23):
    Which method and recipe did you use ?

    Encrypted LVM.

    The default option works though.

    Ah, the small_disk recipe does not support LVM. It is intended, because I considered that using LVM does not make much sense on a < 10GB disk and
    takes more space for the separate /boot. See the part of the discussion starting with <https://lists.debian.org/debian-boot/2024/08/msg00149.html>. But I overlooked that it also disables encryption which requires LVM...

    Enable LVM with small_disk (again) ?

    Yes please.


    Cheers,
    --
    Cyril Brulebois ([email protected]) <https://debamax.com/>
    D-I release manager -- Release team member -- Freelance Consultant

    -----BEGIN PGP SIGNATURE-----

    iQIzBAABCgAdFiEEtg6/KYRFPHDXTPR4/5FK8MKzVSAFAmby160ACgkQ/5FK8MKz VSDrvBAAwbuUrZmTKmNWskTArmLD7/++3PumWlNweek4ySJiaC9kS2BflphnVsyV rYyptc8UzRlKOV/FsgLp3QoIrU70fN4kZT+b04pkzpgtvCZqEiQhjccOk1q/ChgD OUShE+iZ4VwyTGGN1vjhqh9ygUxDyBF3gGpS4AVcUze7MfLwpvYJlfMnTZJnAViX o9s835BUJYYGBbrfGaGbVUsKrVdutTqQJOZRhtW7mjVtx7oNZOuqAcK9gXemCQiZ 7UFjXmQdbzzEUa/uJTl9ynaESduR/SeBlF9a2BOFErNIHUzsQgDLmcKykUmm59+W 0NTx7TmedYqoKnu3LH1t2NWYW2vtUAAlSmbn7ntLAV4OI8OPY9eFHbEbJfpot0g/ j0t5dzW3gqWx6ifCTeIRUhWG8f/RW0udKQ08I1ombJ9WwUnRf/xFyN/CVHiKpJhT gcBLmaIFlBHj5/JbHn1FXOUauOdiryi0cJW2oEtYn7FbreaU1x6+SlMdKIP18FpH t8HRYLdXLIRwbGZJHJeMxmK2jyPNLVrWelc1mT+rxW1hRCxdLRQUuSdTILMYSqDr roqXNdNVG7dlnXF1AlnLtW/lFbt/K9v7SenEVhjtxbYCvtgcn2vHeqIQGRtpEPfL QeMiM0jYfWpfn12AwUzF55381v2XFhw2Sqm1au+UbQO/tezk4N4=
    =PSU5
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    *
  • From Pascal Hambourg@21:1/5 to Cyril Brulebois on Tue Sep 24 23:00:01 2024
    On 24/09/2024 at 17:16, Cyril Brulebois wrote:
    Pascal Hambourg <[email protected]> (2024-09-24):

    Enable LVM with small_disk (again) ?

    Yes please.

    <https://salsa.debian.org/installer-team/partman-auto/-/merge_requests/19>

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Pascal Hambourg@21:1/5 to Diederik de Haas on Thu Sep 26 13:20:02 2024
    Hi,

    On 16/09/2024 at 10:02, Diederik de Haas wrote:
    On Mon Sep 16, 2024 at 7:49 AM CEST, Holger Wansing wrote:
    I thought I go for some testing then, but sadly the mechanism
    to build mini.iso's from d-i commits seems broken for some
    time.

    Phil: are you aware of this?
    (...)
    That looks like the kernel 'ABI' detection is going wrong.

    https://salsa.debian.org/installer-team/debian-installer/-/blob/master/debian/salsa-ci.yml#L43
    would be my guess where 'something' needs to be updated?

    Good catch. Phil just fixed the issue, thanks to him.

    <https://salsa.debian.org/installer-team/debian-installer/-/commit/7575895>

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Cyril Brulebois@21:1/5 to All on Wed Oct 2 12:40:01 2024
    Hi again,

    Cyril Brulebois <[email protected]> (2024-09-23):
    Holger Wansing <[email protected]> (2024-09-15):
    As this only happens with a very small disk (10G):
    Do we need to adjust the minimum disk size for this recipe maybe, or similar?

    Testing a local build against unstable, with a regular BIOS-based
    setup, I'm seeing a failure to automatically partition a 5G disk,
    which I'd call a major regression.

    This time, still testing with a 5G disk, but using the default choice
    (“use entire disk”, without encrypted LVM), I'm getting both Debian
    Desktop environment and GNOME selected, but that doesn't fit: the
    installation aborted mid-way with a weird error about dictionaries
    (French not being found/installed as expected, while the root issue is
    ENOSPC).

    Should that matter, the partitioning scheme is the small disk one (as
    expected given the <10G in parens).


    Cheers,
    --
    Cyril Brulebois ([email protected]) <https://debamax.com/>
    D-I release manager -- Release team member -- Freelance Consultant

    -----BEGIN PGP SIGNATURE-----

    iQIzBAABCgAdFiEEtg6/KYRFPHDXTPR4/5FK8MKzVSAFAmb9IYMACgkQ/5FK8MKz VSCa7g/8CdbQPlSKasy4aPofcJ0iNEqxZt6qYCGPcI4523zyo6tibCGSLe9W3LbN ISwdHPqYrivXyo50J55ozFF6IAQwuoCx+GZcbCdP/a6WP9VjehbSzjSTT1Qtg4PR SwCYzTSehtPz8hqWUoK/Wt9UtwiZ5LUjMqtQXBxUdxlOP344Yql44lU3+Z4tc7zc +xD4bF4RcZRWiCdnushNzfyVu2lk0+dCwe9B0Ztup2/QnjWKOWHV4zgSZWD6Jt7J OtQ9ATYq41swNjXZFA+rnWYsO2BK0F3BYc/Ae2eHjwR1h83Efr2UTs+MR/E6RghE TAnstd3kaXpYS9nhPqOczmN0rGSgyXE6Po+jlwlBRSAj6fueLOSjd0mIUq5MdUI1 VKFaxyseMpJdW7ZxqfRz5ngRFQDjauX8t1H9HLFu6C0E9iuZTJ1I3xN/vU53/hht rKEt6hk15fu3Ir5D+1eb9i8fme7yivdCpJ3OhLZlnx9YkdV0Na5J10qfJwOuFrOG PSDHpzJao5hxiTQ9rMST9mPcWnxpdsrKdwjB/XrfIqrI77t4wG8O/AV44yPYUg4B I7z/HV8Gg4nBkr6qBbwLV0/kvxmyKRrYODcOySZfmrzAgdijf0Vms+UgO5vdag/w /Ce9MN3t73I2iqMvVLhQkkiQ0HZnBD+KuztRWw4pBS7QIAKg3JQ=
    =xY+a
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    *
  • From Holger Wansing@21:1/5 to All on Wed Oct 2 23:00:01 2024
    Hi,

    Am 2. Oktober 2024 12:33:50 MESZ schrieb Cyril Brulebois <[email protected]>:
    Hi again,

    Cyril Brulebois <[email protected]> (2024-09-23):
    Holger Wansing <[email protected]> (2024-09-15):
    As this only happens with a very small disk (10G):
    Do we need to adjust the minimum disk size for this recipe maybe, or
    similar?

    Testing a local build against unstable, with a regular BIOS-based
    setup, I'm seeing a failure to automatically partition a 5G disk,
    which I'd call a major regression.

    This time, still testing with a 5G disk, but using the default choice
    (“use entire disk”, without encrypted LVM), I'm getting both Debian >Desktop environment and GNOME selected, but that doesn't fit: the >installation aborted mid-way with a weird error about dictionaries
    (French not being found/installed as expected, while the root issue is >ENOSPC).

    Should that matter, the partitioning scheme is the small disk one (as >expected given the <10G in parens).

    There's no correlation with partitioning/partition sizes here, I think.
    I guess there has never been any check in tasksel, if the selected
    tasks fit on the disk? (or the other way around: tasksel does not
    filter out tasks, if don't fit on the disk)


    Holger



    --
    Sent from /e/ OS on Fairphone3

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Cyril Brulebois@21:1/5 to All on Wed Oct 2 23:00:01 2024
    Holger Wansing <[email protected]> (2024-10-02):
    There's no correlation with partitioning/partition sizes here, I think.

    That's what I thought as well, but that's the biggest, related change
    I could think of.

    I guess there has never been any check in tasksel, if the selected
    tasks fit on the disk? (or the other way around: tasksel does not
    filter out tasks, if don't fit on the disk)

    Well, those two tasks were not enabled automatically until the last few weeks… (and I've been testing with that particular disk size for many
    release cycles), so *something* changed.


    Cheers,
    --
    Cyril Brulebois ([email protected]) <https://debamax.com/>
    D-I release manager -- Release team member -- Freelance Consultant

    -----BEGIN PGP SIGNATURE-----

    iQIzBAABCgAdFiEEtg6/KYRFPHDXTPR4/5FK8MKzVSAFAmb9s+IACgkQ/5FK8MKz VSAI8w/8CrVdQvJJM4+sgytuGgnsVVkjqJeFOe2zyEmma2p7juCD/PzuwN54v+o7 fwFtVUpn/+W4SmmYPnBmcTlsAmHGL4aO9bnxcxVjFAj+F+wGZiFVZasWSH4c9/gH 4NBCn7TaNvmxe119fVPxbJsu5epzQw51liJFFN2uQ4tL4zqbfTHPOEnc6p95DOYv 1MBOZXSqz7W6eN5rT8g03OARC+IIxN5g4HOnIN/rSiuH6te0aakg+lmyAPj8ZprV laxEHMJdoECfVmB6n8MqMjiHbcGCDwrg6vS02CN1mDANoJySNtt1ylKLQ+ny7IUx UihbCMt3IrtXYfxP1JaiPAycKHZ5OOw2t2R+Yc+jrBvlNKnutnhrjitK4+Jjz75J Lx6UM7KTSRNnMHuCBhGsJ3Yr4qBfSFeYIjsjmZ+1YAoYhg/CsfywR4FwZOt4cX5s c2/gR7Qr97oOaqPzZUzNTsXK/G9U9oa+1AoESdwLT7Ylna0w1t56Ncy9jC+GlEGK q0+9T2vJ6RGoF3jFVohwNPE6ClyDtbEUWWA6oseZcbwugyF9j/pLFLMpumf8QnVv esX9MCAOxfDUXodL/jzTka6feaf/Rs+Ybkd1hhDBAV73a1ddzchj4cVfWVCJmnWR iB1D0F16MPiEBF1zWKOdfFLNeD4qW4FV1mGceLGAleSozsQp40E=
    =Ar4H
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    *
  • From Holger Wansing@21:1/5 to All on Thu Oct 3 03:10:01 2024
    Hi,

    Am 2. Oktober 2024 22:58:13 MESZ schrieb Cyril Brulebois <[email protected]>: >Holger Wansing <[email protected]> (2024-10-02):
    There's no correlation with partitioning/partition sizes here, I think.

    That's what I thought as well, but that's the biggest, related change
    I could think of.

    I guess there has never been any check in tasksel, if the selected
    tasks fit on the disk? (or the other way around: tasksel does not
    filter out tasks, if don't fit on the disk)

    Well, those two tasks were not enabled automatically until the last few >weeks… (and I've been testing with that particular disk size for many >release cycles), so *something* changed.

    There is infact some sort of (incomplete) check for enough disk space
    in tasksel.

    In 2007 there was:

    * Increase the minimum free disk for automatic selection of the desktop task to 3 gb. Needed since the desktop task has grown somewhat, to around 2.5 gb, and since several hundred megabytes are needed for debs in /var (which might be on the same
    partition). 2.5 gb free is tested to currently work in a standard single-partition layout when installing standard+desktop+laptop, so this leaves some room for future bloat, and for localisation and other tasks.

    <https://salsa.debian.org/installer-team/tasksel/-/commit/7648f17bc2b9486cd033663d6611095a7c858b13>

    And that logic in tests/desktop controls indeed, if desktop task
    is pre-selected.
    Maybe it's time to raise that limit once again?


    Of course, one might ask, what has changed in the last few weeks:
    that might be the size of partition (however since you used the
    small_disk recipe, that should only be marginal), or maybe some
    dependencies have changed at some point, so that more packages
    are now included in the default desktop.
    But either way, at the end we will need to raise the limit above by
    1 or 2G anyway, to get this solved IMO.


    Holger


    --
    Sent from /e/ OS on Fairphone3

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Cyril Brulebois@21:1/5 to All on Thu Oct 3 08:30:01 2024
    Holger Wansing <[email protected]> (2024-10-03):
    And that logic in tests/desktop controls indeed, if desktop task
    is pre-selected.
    Maybe it's time to raise that limit once again?

    Yeah, that looks plausible.

    Of course, one might ask, what has changed in the last few weeks:
    that might be the size of partition (however since you used the
    small_disk recipe, that should only be marginal), or maybe some
    dependencies have changed at some point, so that more packages
    are now included in the default desktop.

    But either way, at the end we will need to raise the limit above by
    1 or 2G anyway, to get this solved IMO.

    That would work for me, yes: I think it's better to provide safe
    defaults, and let people who want to have a desktop environment select
    it; maybe they'll get lucky and it'll fit, maybe that won't be the case.

    Seems better than selecting something by default without being sure it
    does fit?


    Cheers,
    --
    Cyril Brulebois ([email protected]) <https://debamax.com/>
    D-I release manager -- Release team member -- Freelance Consultant

    -----BEGIN PGP SIGNATURE-----

    iQIzBAABCgAdFiEEtg6/KYRFPHDXTPR4/5FK8MKzVSAFAmb+OGwACgkQ/5FK8MKz VSDvexAAj+IhP6IbZFIXq0ifADgB4RODG8bx2qWyhRzIzw7vdg0Lz79wuOfFNKFh WfgXtcvxVC3zOiXGRF4Chy4v+8tqWHK+bjhjEPo6u+lCwdfDpONC6FFFPAaBSB8e KwWNR3zfPI2cpRb6TL1ppOwxjPbz8h1B5v/cdsV51wRbOPOKDkdZAgD/tI/Z3Yxe 1QnlbHPJta6ChiTrSdbOL3vuxT9nu2KxBoSDh6NYW8RbYkMhahqM0V9o0zBKhNyq sK19DXSdU1UaCYE7Am66SrowFTx9+CqcRIjoGJNK/jn5TxkHcaoLan4x++TMcpvq by6lNkdhdyTnhpAyY3pCoDN3b5c/2dlh0qzKzmiyHjzL8yopqiJKxIRSa2oW3SCO 99lUlfwXzSvZo1NLX5tYjhcmpaZhpq9k7q5LYgzPrUX0gHVl0lYAoQiIYqgHCChn t5GBTH569oHNGmIDWyZkkNx3AxgK50hel09IHAAkOA8Q08czu3voyBBzGUxeEKDs ZlJ/l+qq12Mn1bL9i8MslGom2+2sdFethtHhmvv4JgYXUBELr3CvSZXlguHMdg2H 8mtkHDdPMFOfttMlx2w72FYKJ9Ey21Dzse+2B4GWEVx9+nglfuSpqc187o6kVRPu EE/0iay7I57LX6v+nAopliNs0ZOfgAZeJ2FukvdIubIV++qWUf0=
    =Taqw
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    *
  • From Holger Wansing@21:1/5 to Cyril Brulebois on Thu Oct 3 12:20:01 2024
    Hi,

    Cyril Brulebois <[email protected]> wrote (Thu, 3 Oct 2024 08:23:43 +0200):
    Holger Wansing <[email protected]> (2024-10-03):
    And that logic in tests/desktop controls indeed, if desktop task
    is pre-selected.
    Maybe it's time to raise that limit once again?

    Yeah, that looks plausible.

    Of course, one might ask, what has changed in the last few weeks:
    that might be the size of partition (however since you used the
    small_disk recipe, that should only be marginal), or maybe some dependencies have changed at some point, so that more packages
    are now included in the default desktop.

    But either way, at the end we will need to raise the limit above by
    1 or 2G anyway, to get this solved IMO.

    That would work for me, yes: I think it's better to provide safe
    defaults, and let people who want to have a desktop environment select
    it; maybe they'll get lucky and it'll fit, maybe that won't be the case.

    Seems better than selecting something by default without being sure it
    does fit?

    Sure.
    Tests show, that raising the limit by 1G to 4G brings back the old behaviour (no desktop task pre-selected), but to be a bit prepared for future growth,
    I would propose to go to 5G here?


    Holger


    --
    Holger Wansing <[email protected]>
    PGP-Fingerprint: 496A C6E8 1442 4B34 8508 3529 59F1 87CA 156E B076

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Cyril Brulebois@21:1/5 to All on Thu Oct 3 12:40:01 2024
    Holger Wansing <[email protected]> (2024-10-03):
    Cyril Brulebois <[email protected]> wrote (Thu, 3 Oct 2024 08:23:43 +0200):
    Seems better than selecting something by default without being sure it
    does fit?

    Sure.
    Tests show, that raising the limit by 1G to 4G brings back the old behaviour (no desktop task pre-selected), but to be a bit prepared for future growth,
    I would propose to go to 5G here?

    That would look good to me, thanks for the tests!


    Cheers,
    --
    Cyril Brulebois ([email protected]) <https://debamax.com/>
    D-I release manager -- Release team member -- Freelance Consultant

    -----BEGIN PGP SIGNATURE-----

    iQIzBAABCgAdFiEEtg6/KYRFPHDXTPR4/5FK8MKzVSAFAmb+cr0ACgkQ/5FK8MKz VSAQ0RAAgJclpDP5YkH9rmZBAwBH+eJUawGfOo7xP2jEVdX9/Cw2ZF/Ozl47koJd jBLWQlZOn1ed08W4JPmeC+kN4em6O8Loy3LhjesyFyLh5uKP9aX4o4xIInf/NpRx Uo0MtDeUN64fxEXAdQSpsHZVNe5r/VETXCPqWpbhvPREcTov/vXAVz0ly+y5u2D0 Jqf57ap5ZjoAQM+MOFgDifHNzy2HCXqvvE/EyZbjH/cCei/t+jZT2Klzc/uqf0EB 5D4CqKnZkT3NnB3rVK+cNg0mufh1/RPNR/zhp02rNOP0shZO27xMM6ZtD3oSxse4 Z3CC2LQBajFD4Kx5VQjCv0N6rPO24+su0FkKZv+ukE4gutfpreUOjJNEfltVmoNb oanZfzhmdOaCv+/U+8YgMde0TxehAlrhJOb/uXo8xoBLzRT2KYLCYSu2uol+B2MK ibv4Y5SLlzWTzCLjE+wOWkWT1R6qPNEMIjU8lE9m7nMcD2XaFjuX3mMTAn2anMKm RH9w626pbsAp9pqNs0rHA4YGUVEtd2fn4LtjTOz+wc5T1K04NlwNKTRrngPJJ2xT f/urLwy6dc30w5sCnUABejonGitQyXUBSIv2CTbBAVhzdZOI4SGu+eTkN1vFgPQ9 LHgLr1pn4gEsNYEGSvb5eWTxcPSeeH9ws9zbbsp875k1zDDjDXE=
    =/qac
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    *
  • From Pascal Hambourg@21:1/5 to Holger Wansing on Thu Oct 3 12:50:01 2024
    Hello,

    On 03/10/2024 at 03:03, Holger Wansing wrote:

    There is infact some sort of (incomplete) check for enough disk space
    in tasksel.

    In 2007 there was:

    * Increase the minimum free disk for automatic selection of the desktop task to 3 gb.

    And that logic in tests/desktop controls indeed, if desktop task
    is pre-selected.
    Maybe it's time to raise that limit once again?

    Of course, one might ask, what has changed in the last few weeks:
    that might be the size of partition

    The previous "atomic" recipe allocated 4GB to the root partition on a
    5GB disk.
    The new "atomic" recipe does not fit in 5GB.
    The new "small_disk" recipe allocates 4.3GB to the root partition on a
    5GB disk.
    When tasksel is executed, 800MB-1GB are used in the target root
    filesystem. I guess the extra size make the difference.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Holger Wansing@21:1/5 to Cyril Brulebois on Thu Oct 3 18:10:01 2024
    Hi,

    Cyril Brulebois <[email protected]> wrote (Thu, 3 Oct 2024 12:32:34 +0200):
    Holger Wansing <[email protected]> (2024-10-03):
    Cyril Brulebois <[email protected]> wrote (Thu, 3 Oct 2024 08:23:43 +0200):
    Seems better than selecting something by default without being sure it does fit?

    Sure.
    Tests show, that raising the limit by 1G to 4G brings back the old behaviour
    (no desktop task pre-selected), but to be a bit prepared for future growth, I would propose to go to 5G here?

    That would look good to me, thanks for the tests!

    Just pushed to git.


    Holger



    --
    Holger Wansing <[email protected]>
    PGP-Fingerprint: 496A C6E8 1442 4B34 8508 3529 59F1 87CA 156E B076

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Pascal Hambourg@21:1/5 to Holger Wansing on Thu Oct 3 22:40:01 2024
    On 03/10/2024 at 12:11, Holger Wansing wrote:

    Tests show, that raising the limit by 1G to 4G brings back the old behaviour (no desktop task pre-selected), but to be a bit prepared for future growth,
    I would propose to go to 5G here?

    FWIW, 5GB is fine with the "multi" recipe minimum root size (7GB).
    Increasing it further may require to update the recipe.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Holger Wansing@21:1/5 to All on Thu Oct 3 22:40:01 2024
    Hi Pascal,

    Am 3. Oktober 2024 22:29:40 MESZ schrieb Pascal Hambourg <[email protected]>:
    On 03/10/2024 at 12:11, Holger Wansing wrote:

    Tests show, that raising the limit by 1G to 4G brings back the old behaviour >> (no desktop task pre-selected), but to be a bit prepared for future growth, >> I would propose to go to 5G here?

    FWIW, 5GB is fine with the "multi" recipe minimum root size (7GB). Increasing it further may require to update the recipe.

    I went with the 5G value, so we should be fine here.


    Holger



    --
    Sent from /e/ OS on Fairphone3

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Holger Wansing@21:1/5 to Cyril Brulebois on Fri Oct 4 19:40:02 2024
    Hi,

    Cyril Brulebois <[email protected]> wrote (Thu, 3 Oct 2024 12:32:34 +0200):
    Holger Wansing <[email protected]> (2024-10-03):
    Cyril Brulebois <[email protected]> wrote (Thu, 3 Oct 2024 08:23:43 +0200):
    Seems better than selecting something by default without being sure it does fit?

    Sure.
    Tests show, that raising the limit by 1G to 4G brings back the old behaviour
    (no desktop task pre-selected), but to be a bit prepared for future growth, I would propose to go to 5G here?

    That would look good to me, thanks for the tests!

    Also there is a test in tests/desktop, if enough RAM is installed, to make sense for a desktop environment to be installed.
    The actual value is 64MB, from the beginning of this logic, thus it's 19 years old.
    So, if less than 64MB of RAM is installed, the desktop task will not be pre-selected.
    Should we update this to real world as well?
    Currently this test does nothing in fact...

    In https://d-i.debian.org/manual/en.amd64/ch03s04.html we recommend at least 2GB of RAM for desktop systems.
    I could think of using this value for the above check as well, or maybe
    the double of it.

    Comments?
    Is it worth the effort at all?


    Holger



    --
    Holger Wansing <[email protected]>
    PGP-Fingerprint: 496A C6E8 1442 4B34 8508 3529 59F1 87CA 156E B076

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Pascal Hambourg@21:1/5 to Holger Wansing on Sat Oct 5 11:00:01 2024
    Hello,

    On 04/10/2024 at 19:38, Holger Wansing wrote:

    Also there is a test in tests/desktop, if enough RAM is installed, to make sense for a desktop environment to be installed.
    The actual value is 64MB, from the beginning of this logic, thus it's 19 years
    old.
    So, if less than 64MB of RAM is installed, the desktop task will not be pre-selected.
    Should we update this to real world as well?

    IMO it should be updated or removed. Keeping obsolete/useless code makes
    no sense.

    In https://d-i.debian.org/manual/en.amd64/ch03s04.html we recommend at least 2GB of RAM for desktop systems.
    I could think of using this value for the above check as well, or maybe
    the double of it.

    Matching the recommended RAM size sounds fair, assuming it is realistic.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Holger Wansing@21:1/5 to Holger Wansing on Wed Oct 16 21:50:01 2024
    Hi kibi,

    Holger Wansing <[email protected]> wrote (Thu, 3 Oct 2024 18:06:27 +0200):
    Hi,

    Cyril Brulebois <[email protected]> wrote (Thu, 3 Oct 2024 12:32:34 +0200):
    Holger Wansing <[email protected]> (2024-10-03):
    Cyril Brulebois <[email protected]> wrote (Thu, 3 Oct 2024 08:23:43 +0200):
    Seems better than selecting something by default without being sure it does fit?

    Sure.
    Tests show, that raising the limit by 1G to 4G brings back the old behaviour
    (no desktop task pre-selected), but to be a bit prepared for future growth,
    I would propose to go to 5G here?

    That would look good to me, thanks for the tests!

    Just pushed to git.

    This has now landed in trixie, and I double-checked that this issue is
    now fixed.

    Thanks for pointing us on this!


    Holger


    --
    Holger Wansing <[email protected]>
    PGP-Fingerprint: 496A C6E8 1442 4B34 8508 3529 59F1 87CA 156E B076

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)