Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ron-popov/linux_debugger
Linux debugger
https://github.com/ron-popov/linux_debugger
Last synced: about 1 month ago
JSON representation
Linux debugger
- Host: GitHub
- URL: https://github.com/ron-popov/linux_debugger
- Owner: ron-popov
- Created: 2024-01-10T14:19:38.000Z (almost 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-23T21:35:54.000Z (11 months ago)
- Last Synced: 2024-10-15T00:08:46.612Z (3 months ago)
- Language: C
- Size: 435 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Linux Debugger
### Building and Usage
```bash
make debuggersudo build/debugger
# Choose an example
run build/log_date_to_file
run build/sleep_and_interrupt
run build/hello_world# Disassemble the code
diss
diss 0x40101C# Show opcodes in RIP
diss_raw
diss_raw_addr 0x40101C
diss_raw_addr 0x401010# Set a breakpoint
break 0x401010
break 0x40101C# Continue the flow of the program
cont
```