GDB
View breakpoints
Remove breakpoint
Set breakpoint on memory address
GDB Server
setting up a gdb server can be very useful for embedded systems.
it is nice to have plugins for gdb like GEF that you cannot bring with you on the embedded system. This is a good use case for gdb-server and then connecting with your gdb client which can have the plugins you want to assist VR
start the server attaching to a process that is running
connect with your client
you can now run all your normal gdb commands!
Last updated