21

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
  • 46,683
tmsimont
  • 327

4 Answers4

28

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

17

in bash, type: export NCURSES_NO_UTF8_ACS=1

tmsimont
  • 494
7

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
  • 58,482
2

In PuTTY 0.81 (and possibly some earlier releases):

Settings > Window > Translation

Mark the checkbox [v] Enable VT100 drawing even in UTF-8 mode

Lobz
  • 61