19

Today my YaST started rendering lines like this:

l and q instead of lines

It makes it difficult to read.. Any idea what this is about and how I can fix it? I tried rebooting, no dice.

Edit -- here's my PuTTY config:

PuTTY config page showing translation window

Character set is UTF-8

bwDraco
  • 45,747
  • 43
  • 165
  • 205
tmsimont
  • 307
  • 1
  • 2
  • 6
  • [grawity](http://superuser.com/questions/278286/) will tell you exactly what the problem is when you [edit] your question to tell the world what character encoding you've configured PuTTY to use. (-: – JdeBP Mar 30 '14 at 19:50
  • i've edited the post to show my putty character encoding.. does that explain anything? – tmsimont Apr 01 '14 at 22:47
  • so anyone has a solution? – Nikko Jun 18 '14 at 21:30

3 Answers3

26

Change "Terminal-type string" from "xterm" to "linux" in Connection>Data.

Ahmad Harthi
  • 369
  • 3
  • 2
15

in bash, type: export NCURSES_NO_UTF8_ACS=1

tmsimont
  • 464
  • 1
  • 9
  • 17
  • 1
    Or, more likely, you want to add this to your `~/.bashrc` file so it happens automatically when you log in. – pzkpfw Dec 18 '18 at 08:24
6

Permanent solution for your problem:

For one user:

cd ~
echo "export NCURSES_NO_UTF8_ACS=1" >> .bashrc
source ~/.bashrc

The last line applies changes to the current terminal immediately.

For all users:

echo "export NCURSES_NO_UTF8_ACS=1" >> /etc/bash.bashrc.local
gronostaj
  • 55,965
  • 20
  • 120
  • 179
David Krotil
  • 61
  • 1
  • 2