Blob


1 # Oops
3 It seems that Telescope crashed last time! Please consider reporting this bug so it can be fixed.
5 => mailto:@PACKAGE_BUGREPORT@ @PACKAGE_BUGREPORT@
7 When reporting a bug, please include the following information, otherwise it won’t be helpful:
9 * Operating system
10 * Telescope version (i.e. @PACKAGE_STRING@)
11 * how to reproduce the crash, if known
13 If possible, a backtrace (the state of the program when it crashed) contains invaluable data to unveil the source of the bug. Obtaining a backtrace is usually simple, but unfortunately depends on your system.
15 On most system, you should find a file named ‘telescope.core’ or ‘<number>.core’ or just ‘core’ in the directory where you launched telescope (probably your home).
17 Your shell may be configured to disallow coredumps. If
19 > $ ulimit -c
21 prints 0 then you’ll need to enable coredumps using
23 > $ ulimits -c unlimited
25 and try to reproduce the bug again.
27 To open a core file you need to install ‘gdb’ (the GNU debugger) and type
29 > $ gdb telescope path/to/core-file
31 If you’re using a linux distro with systemd (Arch, Fedora, Debian, ...) you have to use coredumpctl to obtain a backtrace. Please refer to the following page on the Arch wiki:
33 > https://wiki.archlinux.org/title/Core_dump
35 in particular the “Examining a core dump” section.
37 At this point you should be at the GDB prompt. Just type ‘bt’, press enter and copy all the output in a mail to @PACKAGE_BUGREPORT@.
39 > (gdb) bt
40 > ...lots of useful information...
41 > (gdb)
43 To quit gdb, just type ‘q’ and enter.
45 Thanks!