Why does YaST now show lines as lqqqqqqqqqqqqqqq?

24,788

Solution 1

in bash, type: export NCURSES_NO_UTF8_ACS=1

Solution 2

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

Solution 3

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
Share:
24,788

Related videos on Youtube

tmsimont
Author by

tmsimont

Updated on September 18, 2022

Comments

  • tmsimont
    tmsimont almost 2 years

    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

    • JdeBP
      JdeBP about 10 years
      grawity 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. (-:
    • tmsimont
      tmsimont about 10 years
      i've edited the post to show my putty character encoding.. does that explain anything?
  • tftd
    tftd over 8 years
    This answer needs more love!
  • FelixJongleur42
    FelixJongleur42 over 6 years
    I too prefer the putty answer - this terminal-type should be the default for every putty session
  • pzkpfw
    pzkpfw over 5 years
    Or, more likely, you want to add this to your ~/.bashrc file so it happens automatically when you log in.
  • Chupo_cro
    Chupo_cro almost 3 years
    This should be the accepted answer.