如何使用“sudo"调试程序在 VSCODE 中

2021-12-17 00:00:00 visual-studio-code c c++

我正在尝试在 VSCODE 中调试程序.该程序需要以 root 身份或在 Ubuntu 上使用sudo"启动.实现这一目标的最佳方法是什么?示例启动配置会有所帮助.谢谢.

I am trying to debug a program in VSCODE. The program needs to be launched as root or with "sudo" on Ubuntu. What's the best way to achieve this? An example launch configuration would be helpful. Thanks.

推荐答案

我做了以下事情:

  1. 在例如创建一个名为gdb"的脚本我的主目录,包含:pkexec/usr/bin/gdb "$@"
  2. 使其可执行
  3. 修改 VSCode 中的 launch.json 以通过添加miDebuggerPath"来调用脚本(显然相应地更改用户名):

...
            "externalConsole": false,
            "miDebuggerPath": "/home/<username>/gdb",
            "MIMode": "gdb",
...

  1. 在调试时,使用 top 等来验证进程是否以 root 身份运行.
  1. whilst debugging, use top or such like to verify the process is running as root.

应该够了.

相关文章