【文档小记】VSCode 运行、调试需要 sudo 权限程序
简单记录 VSCode 运行、调试需要 sudo 权限的程序的 launch.json 配置。
在 etc/sudoers 中添加用户 sudo 无需密码
1 2 3 4 5 6
| sudo vim /etc/sudoers
%sudo ALL=(ALL:ALL) ALL frank ALL=(ALL:ALL) NOPASSWD:ALL
|
用户 home 目录下添加 gdbasroot 脚本
1 2 3 4 5 6 7 8 9 10
| touch ~/gdbasroot vim ~/gdbasroot
sudo /usr/bin/gdb "$@"
sudo chmod +x ~/gdbasroot
|
修改 launch.json 文件
修改调试路径 miDebuggerPath
:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| { "version": "0.2.0", "configurations": [ { "name": "g++ - Build and debug active file", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/db/nofdb/table/build/sstable_manager_test", "args": [], "linux": { "miDebuggerPath": "/home/frank/gdbasroot", "miDebuggerArgs": "sudo" }, "stopAtEntry": false, "cwd": "${fileDirname}", "environment": [], "externalConsole": false, "MIMode": "gdb", "setupCommands": [ { "description": "Enable pretty-printing for gdb", "text": "-enable-pretty-printing", "ignoreFailures": true } ], "preLaunchTask": "" } ] }
|