Please note the new address for this forum : forum.excito.org. The old address redirects here but I don't know for how long. Thanks !
New user's registration have been closed due to high spamming and low trafic on this forum. Please contact forum admins directly if you need an account. Thanks !
EE-Characters diacritics
EE-Characters diacritics
Hello, can i change East European characters to be viewed in some setting when using PUTTY and Midnight Commander?
For example: N??u??n?? = Náučné
Is this problem on the side of B3 or my computer?
For example: N??u??n?? = Náučné
Is this problem on the side of B3 or my computer?
- Attachments
-
- MC.png (63.84 KiB) Viewed 18498 times
Last edited by flimflam on 31 Oct 2013, 03:56, edited 1 time in total.
Re: EE-Characters diacritics
Than it looks like....
- Attachments
-
- MC2.png (55.42 KiB) Viewed 18496 times
Re: EE-Characters diacritics
yeah, but you may have bothered to check if those special characters were working.
Re: EE-Characters diacritics
And how to check?
Maybe this is the problem:
In /etc/default/locale ....there is nothing
Maybe this is the problem:
Code: Select all
root@b3:~# locale
LANG=
LANGUAGE=
LC_CTYPE="POSIX"
LC_NUMERIC="POSIX"
LC_TIME="POSIX"
LC_COLLATE="POSIX"
LC_MONETARY="POSIX"
LC_MESSAGES="POSIX"
LC_PAPER="POSIX"
LC_NAME="POSIX"
LC_ADDRESS="POSIX"
LC_TELEPHONE="POSIX"
LC_MEASUREMENT="POSIX"
LC_IDENTIFICATION="POSIX"
LC_ALL=
Re: EE-Characters diacritics
well, why not go the exact same folder as the original post and check if it works??




Re: EE-Characters diacritics
It is the same as before ...
Maybe something have to be changed on locale.
Maybe something have to be changed on locale.
Re: EE-Characters diacritics
I'm going to give up this thread. 

Re: EE-Characters diacritics
It is. Those entries should contain a valid locale, e.g. "en_US.UTF-8". I actually found that when connecting from a Windows machine with Putty, I get the same listing that you posted. However when connecting from my linux desktop the entries do contain the correct values. Very weird.flimflam wrote:And how to check?
Maybe this is the problem:
Code: Select all
root@b3:~# locale LANG= LANGUAGE= LC_CTYPE="POSIX" LC_NUMERIC="POSIX" LC_TIME="POSIX" LC_COLLATE="POSIX" LC_MONETARY="POSIX" LC_MESSAGES="POSIX" LC_PAPER="POSIX" LC_NAME="POSIX" LC_ADDRESS="POSIX" LC_TELEPHONE="POSIX" LC_MEASUREMENT="POSIX" LC_IDENTIFICATION="POSIX" LC_ALL=
Try this:
Code: Select all
export LC_CTYPE="en_US.UTF-8"
Re: EE-Characters diacritics
Thanx Gordon this helped, but in locale it stays only for this one and only session. When i logout and login again....the same as before!
I am connecting from W7 laptop, and maybe in this way the problem could be. When i used your export line all worked perfect. By new putty session everything the same as before. When i type locale ... POSIX is again on all positions. So for me is clear now that on B3 side is some problem.
Code: Select all
flim@b3:~$ locale
LANG=
LANGUAGE=
LC_CTYPE=en_US.UTF-8
LC_NUMERIC="POSIX"
LC_TIME="POSIX"
LC_COLLATE="POSIX"
LC_MONETARY="POSIX"
LC_MESSAGES="POSIX"
LC_PAPER="POSIX"
LC_NAME="POSIX"
LC_ADDRESS="POSIX"
LC_TELEPHONE="POSIX"
LC_MEASUREMENT="POSIX"
LC_IDENTIFICATION="POSIX"
LC_ALL=
Re: EE-Characters diacritics
That is correct. To make it stick you should add the export(s) to your profile, which is in .bashrc
Note: as a minimum you'll probably want to set the value for LANG as well. And of course if you want to use a different locale than US English you should set that one instead (e.g. "sk_SK.UTF-8")
Note: as a minimum you'll probably want to set the value for LANG as well. And of course if you want to use a different locale than US English you should set that one instead (e.g. "sk_SK.UTF-8")
SOLVED: EE-Characters diacritics
Thanx a lot
So to view right diacritics in own language ( SK )...When using W7 and PUTTY. Putty is set to UTF-8 and Consolas/Clear Type.
I had to add in: my_username/.bashrc and .profile
these three lines
and to make these changes active in the current shell, source the .bashrc:
Now no problem.

So to view right diacritics in own language ( SK )...When using W7 and PUTTY. Putty is set to UTF-8 and Consolas/Clear Type.
I had to add in: my_username/.bashrc and .profile
these three lines
Code: Select all
export LC_ALL=sk_SK.UTF-8
export LANG=sk_SK.UTF-8
export LANGUAGE=sk_SK.UTF-8
Code: Select all
source ~/.bashrc
- Attachments
-
- MC3.png (69.25 KiB) Viewed 18404 times