Just put my game gameshell together today, had a fiddle around… and accidentally got stuck in command line. I see the CPI screen, “happy hacking” and the prompt.
I’ve rebooted via the power button, and via ssh, but there’s still no UI.
What can I do? Is there a shortcut button I can use when booting?
I’m already connected via SSH. I assumed the load.sh script was enough, but that returns an error, “pygame.error: Unable to open a console terminal” so it seems that’s not the answer.
You may want to put all your additions into a separate file like
~/.bash_aliases, instead of adding them here directly.
See /usr/share/doc/bash-doc/examples in the bash-doc package.
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
enable programmable completion features (you don’t need to enable
this, if it’s already enabled in /etc/bash.bashrc and /etc/profile
sources /etc/bash.bashrc).
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi
if [ -f /tmp/autologin ]
then
rm -f /tmp/autologin
mpd ~/.mpd.conf
startx /home/cpi/launchergo/.xinitrc – -nocursor > /tmp/x.log 2>&1
fi
alias iujk=startx