Hab auf meinem Cubietruck dieses Imange installiert:
Cubietruck _Debian_3.2_jessie_3.4.105 (SD-Karte/SATA)
soweit -so gut
SSh - funktioniert
Remote funktioniert auch mit Remmina / tightvncserver
Hab Mate mit Marco installiert, was jetzt laüft (remote)aber später nicht laufen soll.
Zuerst möchte ich folgendes Problem Lösen:
wenn ich mich über SSH an der Konsole einlogge kommt folgendes:
Code: Alles auswählen
Load: 0.00, 0.04, 0.13 - Board: 37.8°C - Drive: 39°C - Memory: 1764Mb
-bash: warning: setlocale: LC_ALL: cannot change locale (de_DE)
Code: Alles auswählen
root@cubietruck:~# update-locale LANG=\"de_DE.UTF-8\" LANGUAGE=\"de_DE:de:en_GB:en\"
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = "de_DE",
LC_ALL = "de_DE",
LC_MESSAGES = "POSIX",
LANG = "de_DE"
are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
*** update-locale: Error: invalid locale settings: LC_MESSAGES=POSIX LANG="de_DE.UTF-8" LANGUAGE="de_DE:de:en_GB:en"
root@cubietruck:~# mc
was aber nicht funktioniert.
in /etc/enviroment steht folgendes:
Code: Alles auswählen
LANG=de_DE
export LANG
LANGUAGE=de_DE
export LANGUAGE
LC_ALL=de_DE
export LC_ALL
Code: Alles auswählen
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
if [ "`id -u`" -eq 0 ]; then
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
else
PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games"
fi
export PATH
if [ "$PS1" ]; then
if [ "$BASH" ] && [ "$BASH" != "/bin/sh" ]; then
# The file bash.bashrc already sets the default PS1.
# PS1='\h:\w\$ '
if [ -f /etc/bash.bashrc ]; then
. /etc/bash.bashrc
fi
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi
if [ -d /etc/profile.d ]; then
for i in /etc/profile.d/*.sh; do
if [ -r $i ]; then
. $i
fi
done
unset i
fi
source /etc/environment
gibt es samt x11 - Ordner nicht.
habt ihr eine Idee, was fehlt oder falch ist?