Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Problem mit Umlauten
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German)
View previous topic :: View next topic  
Author Message
ayin
n00b
n00b


Joined: 29 Mar 2007
Posts: 17

PostPosted: Thu Apr 05, 2007 12:32 pm    Post subject: Problem mit Umlauten Reply with quote

Hallo!

Ich habe schon wieder mal ein kleines Problem mit der deutschen Lokalisierung. Ich bin ganz genau vorgegangen wie in diesem How To sowie diesem hier
Jetzt ist folgendes Problem: Ich hab zwar annähernd eine deutsche Tastatur, nur zeugt er keine Umlaute an. Sprich alle Tasten funktionieren richtig, blos wenn ich "ö" drücke bekomme ich ein [ und bei ä bekomme ich ein ].
Wie komme ich zu meinen Umlauten?

meine /etc/locale.gen
Code:
de_DE ISO-8859-1
de_DE@euro ISO-8859-15


meine /etc/conf.d/consolefont
Code:
CONSOLEFONT="lat9w-16"
CONSOLETRANSLATION="8859-15_to_uni"


meine /etc/conf.d/keymaps
Code:
KEYMAP="de-latin1-nodeadkeys"



Ich hab jetzt echt keine Ahnung, warum die Umlaute nicht angezeigt werden.
Back to top
View user's profile Send private message
Knieper
l33t
l33t


Joined: 10 Nov 2005
Posts: 846

PostPosted: Thu Apr 05, 2007 2:06 pm    Post subject: Re: Problem mit Umlauten Reply with quote

ayin wrote:

meine /etc/locale.gen
Code:
de_DE ISO-8859-1
de_DE@euro ISO-8859-15


Kein utf8. (rc-conf -> unicode="no" gesetzt?)

Quote:

Code:
CONSOLETRANSLATION="8859-15_to_uni"


Also doch utf8?

Ein wenig inkonsistent. Nochmal den i18n-Guide lesen.
Back to top
View user's profile Send private message
frank_tireur
n00b
n00b


Joined: 31 Mar 2007
Posts: 17

PostPosted: Thu Apr 05, 2007 2:11 pm    Post subject: Reply with quote

Hallo

Welchen zeichensatz möchtest du jetzt verwenden? utf-8 oder ISO-8859-15? den ersten link, den du gepostet hast, ist eine anleitung für umstellung auf utf8, das andere HowTo verwendet eben den ISO Zeichensatz. Wenn du denn ISO-Zeichensatz verwenden willst (was ich annehme anhand deiner locale.gen), dann kommetier in der /etc/conf.d/consolefont die zeile consoletranslation aus.

Gruß Frank
Back to top
View user's profile Send private message
ayin
n00b
n00b


Joined: 29 Mar 2007
Posts: 17

PostPosted: Fri Apr 06, 2007 7:18 am    Post subject: Reply with quote

Es is zum verzeweifeln, egal was ich versuche es will und will keine Umlaute.
Egal ob ich auf UTF8 oder ISO-8859 umstelle, es ändert sich nichts am Tastaturlayout. Habt ihr vielleicht sonst eine Idee?
Back to top
View user's profile Send private message
musv
Advocate
Advocate


Joined: 01 Dec 2002
Posts: 3366
Location: de

PostPosted: Fri Apr 06, 2007 7:51 am    Post subject: Re: Problem mit Umlauten Reply with quote

ayin wrote:
Ich hab zwar annähernd eine deutsche Tastatur, nur zeugt er keine Umlaute an. Sprich alle Tasten funktionieren richtig, blos wenn ich "ö" drücke bekomme ich ein [ und bei ä bekomme ich ein ].
Wie komme ich zu meinen Umlauten?


Also wenn ich jetzt ganz grob einen Blick auf meine Tastatur werfe und da das ö und ä sehe, und bei Dir an dieser Stelle ein [ und ] erscheint, dann kommt mir da irgendwie ganz schnell der Gedanke, daß das gar nicht an UTF oder iso liegen kann, sondern daß nur nur irgendwie ein "anderes" Tastaturlayout erwischt haben mußt.

Ok, gehen wir mal der Reihe nach durch (für ISO):
/etc/locale.gen und /etc/conf.d/keymaps sehen gut aus
/etc/conf.d/consolefont
Code:

CONSOLEFONT="lat9-16"
#CONSOLETRANSLATION="8859-1_to_uni"

Setz mal bei Dir den Kommentar vor zweiteres

Was kommt bei Dir, wenn du locale eingibst? Sollte sowas sein in der Art:
Code:

LANG=de_DE@euro
LC_CTYPE="de_DE@euro"
LC_NUMERIC="de_DE@euro"
LC_TIME="de_DE@euro"
LC_COLLATE="de_DE@euro"
LC_MONETARY="de_DE@euro"
LC_MESSAGES="de_DE@euro"
LC_PAPER="de_DE@euro"
LC_NAME="de_DE@euro"
LC_ADDRESS="de_DE@euro"
LC_TELEPHONE="de_DE@euro"
LC_MEASUREMENT="de_DE@euro"
LC_IDENTIFICATION="de_DE@euro"
LC_ALL=de_DE@euro

Wenn nicht, dann das in /etc/env.d/02locales ändern:
Code:

LANG="de_DE@euro"
LANGUAGE="de_DE@euro"
LC_ALL="de_DE@euro"
GDM_LANG="de_DE@euro"


Falls du irgendwas geändert hast, führ mal ein env-update aus, das hat bei mir schon manchmal Wunder gewirkt. (Danach keymaps + consolefont restarten -> siehe unten)

Ansonsten:
Sind keymaps + consolefonts gestartet?
Code:

/etc/init.d/keymaps status
/etc/init.d/consolefont status
Back to top
View user's profile Send private message
Knieper
l33t
l33t


Joined: 10 Nov 2005
Posts: 846

PostPosted: Fri Apr 06, 2007 7:58 am    Post subject: Reply with quote

/etc/env.d/02locale
Code:

LC_CTYPE="de_DE@euro.ISO-8859-15"


/etc/locale.gen
Code:

en_US ISO-8859-1
en_US.UTF-8 UTF-8

en_GB.UTF-8 UTF-8
en_GB ISO-8859-1

de_DE.UTF-8 UTF-8
de_DE ISO-8859-1
de_DE@euro ISO-8859-15


/etc/conf.d/consolefont
Code:

CONSOLEFONT="lat9w-16"


/etc/conf.d/keymaps
Code:

KEYMAP="de-latin1-nodeadkeys"
SET_WINDOWKEYS="yes"
EXTENDED_KEYMAPS=""
DUMPKEYS_CHARSET=""


/etc/rc.conf
Code:

UNICODE="no"


Hilfreich waere es evtl. auch den Typ Deiner Tastatur zu kennen.
Back to top
View user's profile Send private message
ayin
n00b
n00b


Joined: 29 Mar 2007
Posts: 17

PostPosted: Fri Apr 06, 2007 8:38 am    Post subject: Reply with quote

Code:
#CONSOLETRANSLATION="8859-1_to_uni"

Das hab ich jetzt auch gesetzt

ein locale | grep -i LC_ liefert mir überall
LC_xxxx="de_DE.utf8"

meine /etc/env.d/02locale sieht momentan so aus:

Code:
LANG="de_DE.utf8"
LC_ALL="de_DE.utf8"
GDM_LANG="de_DE.utf8"


Quote:
Ansonsten:
Sind keymaps + consolefonts gestartet?

Ja, sind beide gestartet


Ok, das heisst also, ich hab eine Mischung aus ISO-8859 und UTF, Peinlich :(

also ich stelle mal um auf ISO-8859-1 und schaue was passiert:
Also alles umgestellt, ein env-update; source /etc/profile gemacht, zur Sicherheit ein reboot. Und was kommt als Ergebnis? Es hat sich nichts geändert :(


Quote:
Hilfreich waere es evtl. auch den Typ Deiner Tastatur zu kennen.

Das ist ein Microsoft Wireless Comfort Keyboard 1.0A


Edit: Ich hab gerade was entdeckt in meiner /etc/rc.conf
Code:
KEYMAP="de"
CONSOLEFONT="lat9w-16"
EXTENDED_KEYMAP="windowkeys"

Hats vielleicht damit was zu tun?
Back to top
View user's profile Send private message
ayin
n00b
n00b


Joined: 29 Mar 2007
Posts: 17

PostPosted: Tue Apr 10, 2007 5:23 am    Post subject: Reply with quote

Habt ihr denn keine Idee mehr, warum meine Umlaute nicht gehen?
Back to top
View user's profile Send private message
a.forlorn
Guru
Guru


Joined: 12 Aug 2005
Posts: 412
Location: Ulm, Germany

PostPosted: Tue Apr 10, 2007 5:43 am    Post subject: Reply with quote

Wo denn? In der Konsole oder in Gnome/KDE ?
_________________
Gentoo update is sometimes harder than it should.
Back to top
View user's profile Send private message
ayin
n00b
n00b


Joined: 29 Mar 2007
Posts: 17

PostPosted: Tue Apr 10, 2007 6:33 am    Post subject: Reply with quote

Ich habs weder in der Konsole noch in der KDE. In der KDE kann ich aber damit leben, ich bräuchte es wirklich nur dringend in der Konsole.
Back to top
View user's profile Send private message
ayin
n00b
n00b


Joined: 29 Mar 2007
Posts: 17

PostPosted: Fri Apr 13, 2007 10:08 am    Post subject: Reply with quote

Tja, leider konnte ich das Problem noch immer nicht lösen. Wisst ihr, warum Gentoo meine Tasten Ö Ä und Ü nicht mag? Alles andere geht ja wunderbar. Bis auf diese drei Tasten. Das ist im deutschsprachigen Raum extrem lästig.
Back to top
View user's profile Send private message
ChrisJumper
Advocate
Advocate


Joined: 12 Mar 2005
Posts: 2403
Location: Germany

PostPosted: Fri Apr 13, 2007 10:38 am    Post subject: Reply with quote

Hi ayin,

ich werde das Gefühl nicht los das du das Englische Tastatur-Layout irgendwo aktiviert hast...

Funktioniert wirklich alles bis auf Ä Ö Ü ? Gehen auch / ß und die Zeichen über den Zahlen
Code:
1234567890ß
!"§$%&/()=?

ohne probleme?


Evt. hast du bei KDE oder Gnome ja eine anders Keyboard-Layout aktiviert. Oder in der
Datei /etc/X11/xorg.conf deine Tastatur falsch eingestellt.

Vielleicht postest du einfach mal den Keyboard-Abschnitt.
So schaut meiner aus:

Code:
Section "InputDevice"

    Identifier  "Keyboard1"
    Driver      "kbd"

# For most OSs the protocol can be omitted (it defaults to "Standard").
# When using XQUEUE (only for SVR3 and SVR4, but not Solaris),
# uncomment the following line.

#    Option     "Protocol"      "Xqueue"

    Option "AutoRepeat" "500 30"
    Option "XkbModel"   "microsoftpro"
    Option "XkbLayout"  "de"

EndSection


Probier auch noch mal die Einstellungen durch, welche Knieper eben empfohlen hat!

Viel Erfolg bei der Ursachenforschung!
Back to top
View user's profile Send private message
ayin
n00b
n00b


Joined: 29 Mar 2007
Posts: 17

PostPosted: Fri Apr 13, 2007 10:45 am    Post subject: Reply with quote

Ich habe alle Einstellungen so wie Knieper es gesagt hat. das geht konform

Die Tastenzeigt er mir so an:

Code:

1234567890\
!"§$%&/()=?



Bei /etc/X11/xorg.conf steht folgendes:

Code:

Section "InputDevice"
  Identifier "Keyboard0"
  Driver "kbd"
  Option "Xkblayout" "de"
  Option "CoreKeyboard"
  Option "Xkbrules" "xorg"
  Option "XkbModel" "pc104"
  Option "XkbOptions" "grp:toggle,grp_led:scroll"
  Option "XkbVariant" ",winkeys"
  EndSection
Back to top
View user's profile Send private message
nikaya
Veteran
Veteran


Joined: 13 May 2006
Posts: 1471
Location: Germany

PostPosted: Fri Apr 13, 2007 4:24 pm    Post subject: Reply with quote

Code:
 Option "XkbModel" "pc104"

Versuche es mal mit "pc105".
_________________
Notes on Dhamma
How to waste your time: look for an explanation of consciousness, ask to know what feeling is. (Nanavira Thera)
Back to top
View user's profile Send private message
ayin
n00b
n00b


Joined: 29 Mar 2007
Posts: 17

PostPosted: Mon Apr 16, 2007 5:50 am    Post subject: Reply with quote

Danke für deinen Tipp, aber ich bräuchte eigenhtlich viel dringender eine Lösung für die Konsole.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum