@thirdeyedynamo said in How to Change directories in Retropie Rasbian:
pi@retropie:~$ cd/RetroPie/roms
You are missing a space and you are already in the directory :
/home/pi
So we go from there, try :
pi@retropie:~$ cd RetroPie/roms
The long version would be :
pi@retropie:~$ cd /home/pi/RetroPie/roms
You can also do :
pi@retropie:~$ cd ~/RetroPie/roms
(~/ is the home path /home/pi if the user is pi)
You can use the tab key you know to fill it up, something like this :
cd Ret<tab>/ro<tab>
There are a lot of linux bash tutorials on the internet.
My advice is to read these.