From cd3cbf3d459d125c0add43d0bd24f4512d6b3a07 Mon Sep 17 00:00:00 2001 From: WeSeekAfterKnowledge <66194202+WeSeekAfterKnowledge@users.noreply.github.com> Date: Mon, 29 Mar 2021 05:35:04 -0500 Subject: [PATCH] Update README to show more modern supported Linux versions (#885) * Update README to list more recent versions of Ubuntu * Update list of other supported Linux OSes --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c6205946..cec32cd1 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Pwndbg exists not only to replace all of its predecessors, but also to have a cl ## How? -Installation is straightforward. Pwndbg is best supported on Ubuntu 14.04 with GDB 7.7, and Ubuntu 16.04 with GDB 7.11. +Installation is straightforward. Pwndbg is best supported on Ubuntu 18.04 with GDB 7.11, and Ubuntu 20.04 with GDB 8.1. ```shell git clone https://github.com/pwndbg/pwndbg @@ -35,7 +35,17 @@ cd pwndbg ./setup.sh ``` -If you use any other Linux distribution, we recommend using the latest available GDB built from source. Be sure to pass `--with-python=/path/to/python` to `configure`. +Other Linux distributions are also supported via `setup.sh`, including: + +* Debian-based OSes (via apt-get) +* Fedora and Red Hat (via dnf) +* Clear (via swiped) +* OpenSUSE LEAP (via zypper) +* Arch and Manjaro (via community AUR packages) +* Void (via xbps) +* Gentoo (via emerge) + +If you use any Linux distribution other than Ubuntu, we recommend using the [latest available GDB](https://www.gnu.org/software/gdb/download/) built from source. Be sure to pass `--with-python=/path/to/python` to `./configure`. ## What can I do with that?