Descargar juegos de Myrient (myrient.erista.me) — soporte para No-Intro, Redump, y más. Usar para bajar ROMs de NES, SNES, N64, GameCube, PS1, PS2, Xbox, Genesis, Saturn, Dreamcast, GBA, DS, 3DS, PSP, Atari, TurboGrafx, Neo Geo, y más. Se guardan en ~/descargas/roms/
Descarga juegos de Myrient — el repositorio más completo de ROMs.
~/descargas/roms/
├── No-Intro/
│ ├── Nintendo - Nintendo Entertainment System (2019)/
│ ├── Nintendo - Super Nintendo Entertainment System/
│ ├── Nintendo - Nintendo 64/
│ ├── Nintendo - Nintendo GameCube/
│ ├── Nintendo - Nintendo Wii (Decrypted)/
│ ├── Nintendo - Nintendo 3DS (Decrypted)/
│ ├── Nintendo - Nintendo DS/
│ ├── Nintendo - Game Boy/
│ ├── Nintendo - Game Boy Color/
│ ├── Nintendo - Game Boy Advance/
│ ├── Sega - Mega Drive - Genesis/
│ ├── Sega - Saturn/
│ ├── Sega - Dreamcast/
│ ├── Sony - PlayStation/
│ ├── Sony - PlayStation 2/
│ ├── Sony - PlayStation Portable/
│ ├── Atari - 2600/
│ ├── NEC - PC Engine - TurboGrafx-16/
│ └── Neo Geo/
├── Redump/
│ ├── Sony - PlayStation 2/
│ ├── Sega - Dreamcast/
│ ├── Nintendo - Nintendo GameCube/
│ └── ...
└── Toshiba - arcade/
NES: https://myrient.erista.me/files/No-Intro/Nintendo%20-%20Nintendo%20Entertainment%20System%20(2019)/
SNES: https://myrient.erista.me/files/No-Intro/Nintendo%20-%20Super%20Nintendo%20Entertainment%20System/
N64: https://myrient.erista.me/files/No-Intro/Nintendo%20-%20Nintendo%2064/
GameCube: https://myrient.erista.me/files/No-Intro/Nintendo%20-%20Nintendo%20GameCube/
Wii: https://myrient.erista.me/files/No-Intro/Nintendo%20-%20Nintendo%20Wii%20(Decrypted)/
3DS: https://myrient.erista.me/files/No-Intro/Nintendo%20-%20Nintendo%203DS%20(Decrypted)/
DS: https://myrient.erista.me/files/No-Intro/Nintendo%20-%20Nintendo%20DS/
GBA: https://myrient.erista.me/files/No-Intro/Nintendo%20-%20Game%20Boy%20Advance/
GBC: https://myrient.erista.me/files/No-Intro/Nintendo%20-%20Game%20Boy%20Color/
GB: https://myrient.erista.me/files/No-Intro/Nintendo%20-%20Game%20Boy/
PS1: https://myrient.erista.me/files/No-Intro/Sony%20-%20PlayStation/
PSP: https://myrient.erista.me/files/No-Intro/Sony%20-%20PlayStation%20Portable/
Genesis: https://myrient.erista.me/files/No-Intro/Sega%20-%20Mega%20Drive%20-%20Genesis/
Saturn: https://myrient.erista.me/files/No-Intro/Sega%20-%20Saturn/
Dreamcast: https://myrient.erista.me/files/No-Intro/Sega%20-%20Dreamcast/
Atari2600: https://myrient.erista.me/files/No-Intro/Atari%20-%202600/
TurboGrafx: https://myrient.erista.me/files/No-Intro/NEC%20-%20PC%20Engine%20-%20TurboGrafx-16/
NeoGeo: https://myrient.erista.me/files/No-Intro/SNK%20-%20Neo%20Geo/
PS2: https://myrient.erista.me/files/Redump/Sony%20-%20PlayStation%202/
Dreamcast: https://myrient.erista.me/files/Redump/Sega%20-%20Dreamcast/
GameCube: https://myrient.erista.me/files/Redump/Nintendo%20-%20Nintendo%20GameCube/
Saturn: https://myrient.erista.me/files/Redump/Sega%20-%20Saturn/
curl -s "https://myrient.erista.me/files/No-Intro/Nintendo%20-%20Super%20Nintendo%20Entertainment%20System/" | grep -oP 'href="[^"]*\.zip"' | sed 's/href="//;s/"//'
# Crear carpeta destino
mkdir -p ~/descargas/roms/No-Intro/Nintendo\ -\ Super\ Nintendo\ Entertainment\ System/
# Descargar (reemplazar URL y nombre del archivo)
curl -L -o "~/descargas/roms/No-Intro/Nintendo - Super Nintendo Entertainment System/NombreDelJuego.zip" \
"https://myrient.erista.me/files/No-Intro/Nintendo%20-%20Super%20Nintendo%20Entertainment%20System/NombreDelJuego.zip"
# URL base
BASE_URL="https://myrient.erista.me/files/No-Intro/Nintendo%20-%20Super%20Nintendo%20Entertainment%20System"
DEST="~/descargas/roms/No-Intro/Nintendo - Super Nintendo Entertainment System"
mkdir -p "$DEST"
# Obtener lista de archivos y descargar
curl -s "$BASE_URL/" | grep -oP 'href="[^"]*\.(zip|7z|rar)"' | sed 's/href="//;s/"//' | while read file; do
filename=$(basename "$file")
if [ ! -f "$DEST/$filename" ]; then
echo "Descargando: $filename"
curl -L -o "$DEST/$filename" "$BASE_URL/$filename"
else
echo "Ya existe: $filename"
fi
done
# Instalar wget si no está
# En Ubuntu/Debian: sudo apt install wget
wget -r -np -nH --cut-dirs=3 -A zip,7z,rar \
"https://myrient.erista.me/files/No-Intro/Nintendo%20-%20Super%20Nintendo%20Entertainment%20System/" \
-P ~/descargas/roms/
curl -L -o ~/descargas/roms/nes/Mega_Man_2.zip "https://myrient.erista.me/files/No-Intro/Nintendo%20-%20Nintendo%20Entertainment%20System%20(2019)/Mega_Man_2.zip"
curl -L -o ~/descargas/roms/ps2/Shadow_of_the_Colossus.zip "https://myrient.erista.me/files/Redump/Sony%20-%20PlayStation%202/Shadow%20of%20the%20Colossus.zip"
for game in "The_Legend_of_Zelda_The_Wind_Waker" "Super_Mario_Sunshine" "Metroid_Prime"; do
curl -L -o ~/descargas/roms/gamecube/${game}.zip \
"https://myrient.erista.me/files/No-Intro/Nintendo%20-%20Nintendo%20GameCube/${game}.zip"
done