Python GDB

vx_guanchaoguo0發表於2024-09-14

安裝

apt install gdb

檢視跟蹤資訊

strace -T -tt -e trace=all -p pid

檢視程序開啟的檔案

lsof -p pid

gdb

gdb -p pid

檢視上下文

py-list

堆疊

py-bt
py-bt-full

變數

py-print
py-locals

上下幀

py-up
py-down