Meefik's Blog

Freedom and Open Source

GPE desktop environment setup

23 Jul 2013 | android linuxdeploy

Installing and configuring a desktop environment that is not on the Linux Deploy settings list, using GPE as an example.

linuxdeploy

This requires an installed system, possibly without a desktop environment (in this case Debian Wheezy). Next, you need to connect to the system via SSH and install the environment:

sudo apt-get update
sudo apt-get install tightvncserver x11-xserver-utils xfonts-base \
                     gpe --no-install-recommends -yq
sudo apt-get clean

After that, you need to configure autostart:

mkdir ~/.vnc
chmod 755 ~/.vnc
echo "MPTcXfgXGiY=" | base64 -d > ~/.vnc/passwd
chmod 600 ~/.vnc/passwd
cat << EOF > ~/.vnc/xstartup
XAUTHORITY=\$HOME/.Xauthority
LANG=ru_RU.UTF-8
export XAUTHORITY LANG
echo \$\$ > /tmp/xsession.pid
matchbox-session
EOF
chmod 755 ~/.vnc/xstartup

After this operation, the VNC server and GPE will be installed, and autostart will be configured at the start of the VNC. VNC password will be: changeme

Comments