[Bug 1942684] Re: Kernel 5.14.X / 5.13.14 fails to boot

2021-12-05 Thread DanglingPointer
Is it a new or old system? What's the last working kernel version for you? Have you considered going back to the official kernel version for your Ubuntu (if it works?)? Another option you may have would be to try disabling that "...SANITZE_ALL" config and rebuild the kernel from kernel.org using

[Bug 1942684] Re: Kernel 5.14.X / 5.13.14 fails to boot

2021-12-05 Thread DanglingPointer
1) Do an $ ls -lah /boot 2) look for config-5.15.6 file and nano into it. That's the config for the kernel that Ubuntu used for building it. 3) ctrl+w and type or paste "CONFIG_UBSAN_TRAP" and hit enter. (paste is ctrl+shift+v) If it doesn't find it, then it is odd that it doesn't work for

[Bug 1942684] Re: Kernel 5.14.X / 5.13.14 fails to boot

2021-12-05 Thread DanglingPointer
Does it have "CONFIG_UBSAN_TRAP" set in the config? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1942684 Title: Kernel 5.14.X / 5.13.14 fails to boot To manage notifications about this bug go to:

[Bug 1942684] Re: Kernel 5.14.X / 5.13.14 fails to boot

2021-11-18 Thread DanglingPointer
Kernel works ok. So as it stands, new 5.15.3 has no "CONFIG_UBSAN_TRAP" in config. So for new kernels you can probably close this bug off as long as they don't reintroduce it. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 1942684] Re: Kernel 5.14.X / 5.13.14 fails to boot

2021-11-18 Thread DanglingPointer
Looks like they may have removed "CONFIG_UBSAN_TRAP" from the kernel config of 5.15.3! Only this is in the config... ``` # CONFIG_UBSAN is not set ``` I'm building it now to see if it is ok and works. -- You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 1942684] Re: Kernel 5.14.X / 5.13.14 fails to boot

2021-11-08 Thread DanglingPointer
Fails for me too 5.15.1 on Penryn, Ivybridge, Haswell and guest VMs on Zen3. I had to rebuild the kernel from kernel.org using the config from Ubuntu Mainline but disabling the debian pem certs and "CONFIG_UBSAN_TRAP". After that it worked on all the above architectures. -- You received this

[Bug 1942684] Re: Kernel 5.14.X / 5.13.14 fails to boot

2021-10-25 Thread DanglingPointer
On another test, using vanilla Ubuntu mainline 5.14.14 on a guest VBOX VM runs ok for about half a day then crashes to black screen. This has happened 4x! Replacing the vanilla Ubuntu mainline 5.14.14 with a custom build of 5.14.14 using point 1 above (see comment 43) has so far worked for 3

[Bug 1942684] Re: Kernel 5.14.X / 5.13.14 fails to boot

2021-10-23 Thread DanglingPointer
Done Point 1) above WORKS on zen3, haswell, and ivybridge. That means disabled 'CONFIG_UBSAN_TRAP' in the kernel config prior to building. Just nano or vim into the ".config" and put a '#' in front of the line to disable it. before running "$ make olddefconfig" I built the kernel using LLVM-13

[Bug 1942684] Re: Kernel 5.14.X / 5.13.14 fails to boot

2021-10-23 Thread DanglingPointer
Tried building 5.14.14 from vanilla upstream https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.14.14.tar.xz using the config from ubuntu mainline config-5.14.14-051414-generic but removing the debian "pem" for a custom kernel build; and... It fails to boot after grub for ivybridge and haswell

[Bug 1926938] Re: Recent mainline packages are built with Hirsuite 21.04, not Focal 20.04 LTS

2021-08-25 Thread DanglingPointer
@Jens Glathe - Good stuff! I wrote down some high-level steps in #32. the mainline kernels from kernel.org have a lot of stuff disabled which will make things "fiddly". Easiest way to enable them for all the new hardware is to download the same mainline ubuntu kernel version even if it is

[Bug 1926938] Re: Recent mainline packages are built with Hirsuite 21.04, not Focal 20.04 LTS

2021-08-25 Thread DanglingPointer
For penryn the -march option is "core2" in that GCC options link. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1926938 Title: Recent mainline packages are built with Hirsuite 21.04, not Focal

[Bug 1926938] Re: Recent mainline packages are built with Hirsuite 21.04, not Focal 20.04 LTS

2021-08-25 Thread DanglingPointer
@tlk,- Ignorance doesn't mean knowledge, it is quite the opposite... DKMS doesn't break because of headers when using clang with lto. The headers are there and complete! Everything complete with well produced binaries from LLVM/Clang. The problem is because programs (not the headers and not

[Bug 1926938] Re: Recent mainline packages are built with Hirsuite 21.04, not Focal 20.04 LTS

2021-08-24 Thread DanglingPointer
configuration (GCC)... $ time KCFLAGS="-march=native -msse2avx -pipe -O3" KCPPFLAGS="-march=native -msse2avx -pipe -O3" make -j$(( $(nproc) + 1 )) deb-pkg LOCALVERSION=-danglingpointer-zen3-optimised This is my build command post CLANG configuration with LTO... time KCFLAGS=&quo

[Bug 1926938] Re: Recent mainline packages are built with Hirsuite 21.04, not Focal 20.04 LTS

2021-08-16 Thread DanglingPointer
You guys mocking around trying to hack headers and wotnot, just build the bloody kernel and you'll have a full kernel without wondering if you broke something by hacking stuff! You could have built the kernel a 100x by now! 1) Just build dwarves from hirsute 2) build libbpf from hirsute 3)

[Bug 1912811] Re: Update dwarves-dfsg in focal to version 1.21 from hirsute

2021-07-20 Thread DanglingPointer
Need this fixed as we're jumping through hoops to get newer kernels into 20.04! -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1912811 Title: Update dwarves-dfsg in focal to version 1.21 from

[Bug 1926938] Re: Recent mainline packages are built with Hirsuite 21.04, not Focal 20.04 LTS

2021-07-20 Thread DanglingPointer
Awesome. I've been building dwarves and libbpf using the c library from 20.04. I believe you are too Tuxinvader. But yes, there are extra hoops to jump over having to do those! If they get it in then that would be a couple less things to boilerplate. Would be good if they fixed DKMS as well

[Bug 1926938] Re: Recent mainline packages are built with Hirsuite 21.04, not Focal 20.04 LTS

2021-07-02 Thread DanglingPointer
If you want to stay with Ubuntu 20.04 LTS with latest stable mainline, you'll need to build it. Otherwise, try openSuse-Tumbleweed or Fedora. I'm sticking with ubuntu so just building my own kernels. Runs faster now as well since it is optimised for my rig specifically now. -- You received

[Bug 1926938] Re: Recent mainline packages are built with Hirsuite 21.04, not Focal 20.04 LTS

2021-06-15 Thread DanglingPointer
Thanks to this "bug", yes it IS a"bug"; thousands of ubuntu users have learnt to compile mainline kernels! I never had to compile a linux kernel until this happened to 5.11.17+! I've always just installed whatever the mainline kernel team built. The silver lining here is that my ivy-bridge

[Bug 1926938] Re: Recent mainline packages are built with Hirsuite 21.04, not Focal 20.04 LTS

2021-05-31 Thread DanglingPointer
What a joke! So how is the community going to contribute, help, and support the mainline kernels for "debug purposes" now? Everyone on LTS that wants mainline will now be forced to compile their own kernels or arbitrarily trust PPAs of unofficial 3rd parties if choosing to stay with Ubuntu.

[Bug 1926938] Re: Recent mainline packages are built with Hirsuite 21.04, not Focal 20.04 LTS

2021-05-25 Thread DanglingPointer
@eitch Try Dougss steps without the aggressive optimisations first so you get the hang of it. Make sure it works and your hardware all works. My steps are a little different to Doug's and perhaps a little more complicated. But once you get the hang of it, it is repeatable and can be

[Bug 1926938] Re: Recent mainline packages are built with Hirsuite 21.04, not Focal 20.04 LTS

2021-05-22 Thread DanglingPointer
PPAs are a mechanism for "moving around raw debs"... ;-) But you have a point, however if all systems are in the same network, it is far much more easier to copy all debs to all servers and sudo dpkg -i./*.deb in automation. If systems are geographically not in the same network and crossing

[Bug 1926938] Re: Recent mainline packages are built with Hirsuite 21.04, not Focal 20.04 LTS

2021-05-21 Thread DanglingPointer
All you guys mocking around with ppas could have compiled 5.12.5 by now 20x! The last working mainline kernel is 5.11.16. Nothing later works when installing into 18.04 LTS. I've been forced to compile each latest kernel since. But because of that predicament, I've now got it down to a fixed

[Bug 1605875] Re: screen lock cycles screens on/off constantly

2020-09-30 Thread DanglingPointer
I have this exact same problem on Ubuntu 18.04.5 After locking the screen, the monitor is cycled on and off after several seconds constantly unless I interact with the keyboard or mouse in which case it doesn't. -- You received this bug notification because you are a member of Ubuntu Bugs,

[Bug 1882890] Re: intel-ucode/06-4e-03 from release 20200609 hangs system in early boot

2020-06-10 Thread DanglingPointer
Ok it worked. 1) I went here: https://launchpad.net/ubuntu/+source/intel-microcode to check what version of intel-microcode to downgrade to. Basically I wanted the previous one that had no issues. 2) I used an ubuntu-live-usb to chroot into my yoga 710-11ISK laptop (intel m3-6Y30) 3) $

[Bug 1882890] Re: intel-ucode/06-4e-03 from release 20200609 hangs system in early boot

2020-06-10 Thread DanglingPointer
I have the exact problem and laptop as @Cole I have chroot into the laptop using an ubuntu-live-usb to figure out what the heck is going on. The microcode that got installed is 3.20200609.0ubuntu0.20.04.0 I am uninstalling now. I'll advise here if it worked. -- You received this bug

[Bug 1724810] Re: 17.10/wayland causing flashes in virtualbox

2019-09-24 Thread DanglingPointer
Just stating here that it currently affects 18.04 and 19.04 as guests on Vbox 6 on Macos (Mac Pro 2018). Flickering white screen happens only with Wayland and not X. X works fine. Guest additions installed as well. VBox extensions installed as well. -- You received this bug notification

[Bug 1643172] Re: source: clamav.securiteinfo.com cannot be resolved

2018-11-09 Thread DanglingPointer
*** This bug is a duplicate of bug 1469915 *** https://bugs.launchpad.net/bugs/1469915 When are we going to get a permanent fix for this? It is Sat Nov 10 2018! -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 1775883] Re: Failed to upgrade 16.04.4 to 18.04. Process aborted

2018-09-01 Thread DanglingPointer
Brian's suggestion solved my problem. This bug can be closed. Apologies for the delay in replying. It was sorted back in June. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1775883 Title: Failed

[Bug 1775883] Re: Failed to upgrade 16.04.4 to 18.04. Process aborted

2018-06-08 Thread DanglingPointer
Will try and reply back here. Thanks for the time looking it up. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1775883 Title: Failed to upgrade 16.04.4 to 18.04. Process aborted To manage

[Bug 1775883] [NEW] Failed to upgrade 16.04.4 to 18.04. Process aborted

2018-06-08 Thread DanglingPointer
Public bug reported: Tried doing an upgrade from 16.04.4 to 18.04 by using the command "sudo do-release-upgrade -d -m -desktop" It failed giving the following errors: (appstreamcli:16680): GLib-CRITICAL **: g_strchug: assertion 'string != NULL' failed (appstreamcli:16680): GLib-CRITICAL **:

[Bug 1643172] Re: source: clamav.securiteinfo.com cannot be resolved

2017-07-25 Thread DanglingPointer
*** This bug is a duplicate of bug 1469915 *** https://bugs.launchpad.net/bugs/1469915 @jonhattan That command doesn't work, the file doesn't exist! The only thing on that path is a README file. -- You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 938751] Re: jpeg images are washed out or colors are skewed

2017-01-16 Thread DanglingPointer
I've got the same problem. Everything is showing with blue tint. I followed the instructions above and ran "$ xprop -root | grep ICC_PROFILE" and it indeed had a profile. Looking at System Settings > Device Colour Profiles; both my monitors had a profile each. I used the remove option.

[Bug 1643172] Re: source: clamav.securiteinfo.com cannot be resolved

2016-12-20 Thread DanglingPointer
How do we remove the source? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1643172 Title: source: clamav.securiteinfo.com cannot be resolved To manage notifications about this bug go to:

[Bug 1506344] Re: Anjuta crashes when opening .ui files

2016-04-25 Thread DanglingPointer
I'm getting the same crash to desktop! When I double click on the UI, Anjuta crashes to desktop. Any ETA on the fix? running sudo Anjuta sorts the problem but I don't want to run Anjuta as root! -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed

Re: [Bug 384828] Re: Add and Remove programs stalled and a pop-up came up saying the indicator applet stopped working and needs to reload the panel. Then System crash-reboot

2009-06-16 Thread DanglingPointer
Mate, go ahead and close it. I haven't exerienced it since. it's been a while but I believe package dependencies caused the issue. If it happens again, I'll put more effort into the debug message. Thanks for your time. regards, Fernando Evgeni Golov wrote: Can you reproduce this bug again?

[Bug 384828] [NEW] Add and Remove programs stalled and a pop-up came up saying the indicator applet stopped working and needs to reload the panel. Then System crash-reboot

2009-06-08 Thread DanglingPointer
Public bug reported: Binary package hint: gtkperf Add and Remove programs stalled and a pop-up came up saying the indicator applet stopped working and needs to reload the panel. Then System crash-reboot ProblemType: Package Architecture: amd64 DistroRelease: Ubuntu 9.04 ErrorMessage:

[Bug 384828] Re: Add and Remove programs stalled and a pop-up came up saying the indicator applet stopped working and needs to reload the panel. Then System crash-reboot

2009-06-08 Thread DanglingPointer
** Attachment added: Dependencies.txt http://launchpadlibrarian.net/27648637/Dependencies.txt ** Attachment added: DpkgTerminalLog.gz http://launchpadlibrarian.net/27648638/DpkgTerminalLog.gz -- Add and Remove programs stalled and a pop-up came up saying the indicator applet stopped