# Recursos generales

## Sistemas base

### Manjaro / ArchLinux

```
https://blackarch.org/downloads.html
```

#### Añadir repositorio de BlackArch

Se descarga el script de la página oficial que añadirá los repositorios en el sistema:

```
curl -O https://blackarch.org/strap.sh
chmod +x strap.sh
sudo ./strap.sh
sudo pacman -Syu
```

Y ya se podrían instalar los paquetes de BlackArch.

#### Búsqueda de herramientas

Enumera las herramientas disponibles en el repositorio:

```
$ sudo pacman -Sgg | grep blackarch | cut -d' ' -f2 | sort -u
```

Enumera las categorías disponibles:

```
sudo pacman -Sg | grep blackarch
```

Instala todas las herramientas de una categoría en concreto:

```
sudo pacman -S blackarch-<categoria>
```

Busca una herramienta en concreto:

```
pacman -Ss <package_name>
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://www.xtormin.com/herramientas-comunes/recursos-generales.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
