So I just installed the latest version of PiPlay. I know i can SSH into the pi using pi and raspberry as user/pass. But how do i log in using root? Whats the standard pass for that?
ssh won't let you log in as root, it's a security thing. You would have to go in and override the settings. You can just use 'sudo' in front of any command and to do pretty much anything. or if you type your command in and forget sudo (ex. $rm -r /some/folder) you can rerun that previous command with sudo by using '!!', so it would look like 'sudo !!'