On Tue, May 28, 2024 at 4:22 PM Corey Faehrmann <[email protected]> wrote:
> Hi Nick, > > > > I changed the SSL Inspection profile on the Firewall to disregard > Guacamole. > > In doing so it does feel a bit more stable but unfortunately received > another one after the change, which means on to the segfaults I go. > > > > Im struggling though to get my Core Dump files to even show up. I will do > some more digging on getting those working, and then will forward the > results. > > Yeah, modern distributions have made it frustratingly hard to configure coredumps to go to a location that you can actually retrieve them from. If you're unable to do that, then you could just run guacd with gdb, when it crashes, grab that stack trace. You'll need to do the following: * Make sure gdb is installed. * Start gdb + guacd: /path/to/gdb /path/to/guacd * Set the fork follow mode to "follow": set follow-fork-mode child * Execute guacd: run * Wait for the segfault, then use "bt" to get the back-trace (stack trace). -Nick >
