The workaround I'm using is taken from here: https://support.aqueos.net/index.php?/Knowledgebase/Article/View/your- kernel-version-indicates-a-revision-number-of-255-or-greater
mv /bin/uname /bin/uname.orig and copy in the script below as /bin/uname (with the correct permissions), ---- #!/bin/bash if [[ $1 == "-r" ]] ;then echo '4.9.250' exit else uname.orig "$@" fi -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1962225 Title: preinst check that kernel revision < 255 now does more harm than good To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/glibc/+bug/1962225/+subscriptions -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
