OwlArch

Software

🔙 Go back home

GDB - GNU Debugger

Introduction

GDB (GNU Debugger) is a powerful debugging tool for Unix and Linux systems. It allows users to inspect program execution, set breakpoints, and analyze errors.

Features

Installation

  1. Open a terminal.
  2. Install GDB using the following command:

    sudo pacman -S gdb
    

Install verification

To check if GDB has been installed correctly, run:

   gdb --version

If the version number is displayed, the installation was successful.

Uninstall

To remove GDB from your system, use:

   sudo pacman -Rns gdb

Usage

GDB provides multiple functionalities for debugging programs. Some basic commands include:

Official documentation & More Info

Contributing

If you want to contribute to GDB, check out the GDB development mailing list for guidelines.

Support

For support and troubleshooting, visit the GDB Bugzilla or the GDB mailing list.

License

GDB is released under the GNU General Public License (GPL).


🔙 Frida 🔜 Ghidra