Advertisement
metalx1000

Playstation Games on Rertroarch

Mar 21st, 2024 (edited)
495
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.12 KB | None | 0 0
  1. mkdir -p $HOME/.config/retroarch/system
  2. cd $HOME/.config/retroarch/system
  3.  
  4. # get bios
  5. wget -c 'https://archive.org/download/rr-sony-playstation-u/bios/dtlh3000.7z'
  6. wget -c 'https://archive.org/download/rr-sony-playstation-u/bios/dtlh3002.7z'
  7. wget -c 'https://archive.org/download/rr-sony-playstation-u/bios/scph1001.7z'
  8. wget -c 'https://archive.org/download/rr-sony-playstation-u/bios/scph101.7z'
  9. wget -c 'https://archive.org/download/rr-sony-playstation-u/bios/scph5000.7z'
  10. wget -c 'https://archive.org/download/rr-sony-playstation-u/bios/scph5500.7z'
  11. wget -c 'https://archive.org/download/rr-sony-playstation-u/bios/scph5501.7z'
  12. wget -c 'https://archive.org/download/rr-sony-playstation-u/bios/scph5502.7z'
  13. wget -c 'https://archive.org/download/rr-sony-playstation-u/bios/scph7000.7z'
  14. wget -c 'https://archive.org/download/rr-sony-playstation-u/bios/scph7001.7z'
  15. wget -c 'https://archive.org/download/rr-sony-playstation-u/bios/scph7003.7z'
  16. wget -c 'https://archive.org/download/rr-sony-playstation-u/bios/scph7502.7z'
  17.  
  18. # extract
  19. for i in *.7z;do 7z e $i && rm $i;done
  20.  
  21. # get roms
  22. https://gitlab.com/-/snippets/3690760
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement