我试图将调试符号下载到Debian OS,我做了一些研究并看到了这个网址:https://wiki.debian.org/HowToGetABacktrace,但我不知道要下载它的包的名称。请帮帮我。
答案 0 :(得分:1)
这取决于您要调试的应用程序。假设您要调试/bin/ls
。
首先,您需要找出提供此文件的包:
$ dpkg -S /bin/ls
coreutils: /bin/ls
包名称为coreutils
。接下来,您需要按照https://wiki.debian.org/HowToGetABacktrace#Installing_the_debugging_symbols中的说明为此软件包安装调试符号。它应该是coreutils-dbgsym
或coreutils-dbg
包。因此,安装调试符号包的命令将是以下之一:
# apt-get install coreutils-dbgsym
或
# apt-get install coreutils-dbg