0

This website is teaching me how to install retroarch. http://ubuntuhandbook.org/index.php/2013/11/install-retroarch-emulator-ppa-ubuntu/ I enter the first line in the terminal, the one that installs the PPA. "add-apt-repository ppa:hunter-kaller/ppa" And in return, I get this: "Error: must run as root" I am quite confused. Help?

1 Answers1

1

All the commands mentioned should be run as root, you can do this by prefixing the commands with sudo - so you need to run these instead:

sudo add-apt-repository ppa:libretro/stable
sudo apt-get update
sudo apt-get install retroarch libretro*

Sort of simple explaination of sudo here, more complicated one here
Please comment if you feel you have better examples.

Wilf
  • 30,732