You are not logged in.
Pages: 1
Offline
Have you set your locale in /etc/rc.conf ?
Offline
I have "LOCALE="en_US.utf8"" in rc.conf & have uncommented
en_GB.UTF-8
en_GB ISO-8859-1
en_US ISO-8859-1
en_US.UTF-8 UTF-8
en_AU.UTF-8 UTF-8
en_AU ISO-8859-1
in locale.gen
cheers
Offline
check your /etc/profile for the right export LC= variable
Offline
Thanks Andy, checked my /etc/profile it has;
export LC_COLLATE="C"
Is that correct or should it be something else ? Note that my /etc/profile is identical to the Arch build on another pc I have & K3b doesn`t complain about it.
Offline
my full /etc/profile for reference;
#
# /etc/profile
#
export PATH="/bin:/usr/bin:/sbin:/usr/sbin:/usr/X11R6/bin:/opt/bin"
export MANPATH="/usr/man:/usr/X11R6/man"
export LESSCHARSET="latin1"
export INPUTRC="/etc/inputrc"
export LESS="-R"
export LC_COLLATE="C"
export COLUMNS LINES
export PS1='[\u@\h \W]\$ '
export PS2='> '
umask 022
if [ "$TERM" = "xterm" -o "$TERM" = "xterm-color" -o "$TERM" = "rxvt" -o "$TERM" = "xterm-xfree86" ]; then
PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}\007"'
fi
# load profiles from /etc/profile.d
# (to disable a profile, just remove execute permission on it)
if [ `ls -A1 /etc/profile.d/ | wc -l` -gt 0 ]; then
for profile in /etc/profile.d/*.sh; do
if [ -x $profile ]; then
. $profile
fi
done
unset profile
fi
# End of file
Offline
hi, i'm new to arch linux and i was having the same problem until today.
heres the solution:
- edit /opt/kde/share/config/kdm/kdmrc
- put this line into the [General] section (usually at the top of the file): ExportList=LANG,LC_ALL
- the above assumes you have set LANG and LC_ALL in /etc/profile
- save it, and restart X (mybe restart your computer, if /etc/profile needs to be re-sourced)
cheers,
ecx
Offline
Thanks evil for the tip, but it didn`t work for me , but this did (removed /etc/locale.gen before reinstalling glibc, then re-edited /etc/locale.gen with my locales & then re-run locale-gen)
http://bbs.archlinux.org/viewtopic.php?id=32770
thanks all
Last edited by gerryAU (2007-05-18 14:13:05)
Offline
Pages: 1