You are not logged in.
I get this text when I run command:
showconsolefont -C /dev/tty1
output:
! " # $ % & ' ( ) * + , - . / 0
1 2 3 4 5 6 7 8 9 : ; < = > ? @
A B C D E F G H I J K L M N O P
Q R S T U V W X Y Z [ \ ] ^ _ `
! " # $ % & ' ( ) * + , - . / 0
1 2 3 4 5 6 7 8 9 : ; < = > ? @
A B C D E F G H I J K L M N O P
Q R S T U V W X Y Z [ \ ] ^ _ `
! " # $ % & ' ( ) * + , - . / 0
1 2 3 4 5 6 7 8 9 : ; < = > ? @
A B C D E F G H I J K L M N O P
Q R S T U V W X Y Z [ \ ] ^ _ `
! " # $ % & ' ( ) * + , - . / 0
1 2 3 4 5 6 7 8 9 : ; < = > ? @
A B C D E F G H I J K L M N O P
Q R S T U V W X Y Z [ \ ] ^ _ `
but I when run its command:
showconsolefont -C /dev/tty2
output:
!"#$%&'()*+,-./0
123456789:;<=>?@
ABCDEFGHIJKLMNOP
QRSTUVWXYZ[\]^_`
!"#$%&'()*+,-./0
123456789:;<=>?@
ABCDEFGHIJKLMNOP
QRSTUVWXYZ[\]^_`
!"#$%&'()*+,-./0
123456789:;<=>?@
ABCDEFGHIJKLMNOP
QRSTUVWXYZ[\]^_`
!"#$%&'()*+,-./0
123456789:;<=>?@
ABCDEFGHIJKLMNOP
QRSTUVWXYZ[\]^_`
Also, when I enter my password in tty2, I see a login error and a wrong password.
Last edited by behDev (2022-01-19 07:03:48)
Offline
Looks like some locale fuckup - instead of 0x20 you get some 2 byte char there.
localectl
locale
locale -a
Online
Looks like some locale fuckup - instead of 0x20 you get some 2 byte char there.
localectl locale locale -a
localectl:
System Locale: LANG=en_US.UTF-8
LC_TIME=en_IN.UTF-8
VC Keymap: n/a
X11 Layout: n/a
locale:
LANG=en_US.UTF-8
LC_CTYPE="en_US.UTF-8"
LC_NUMERIC="en_US.UTF-8"
LC_TIME=en_IN.UTF-8
LC_COLLATE="en_US.UTF-8"
LC_MONETARY="en_US.UTF-8"
LC_MESSAGES="en_US.UTF-8"
LC_PAPER="en_US.UTF-8"
LC_NAME="en_US.UTF-8"
LC_ADDRESS="en_US.UTF-8"
LC_TELEPHONE="en_US.UTF-8"
LC_MEASUREMENT="en_US.UTF-8"
LC_IDENTIFICATION="en_US.UTF-8"
LC_ALL=
locale -a:
C
en_IN.utf8
en_US.utf8
POSIX
Offline
Is the output of "locale" different on tty2?
Online
Is the output of "locale" different on tty2?
when i enter password and get incorrect password output, how do access to run commands in tty2?
Offline
https://wiki.archlinux.org/title/Getty# … al_console
For clarification: the main issue is that you can't log into tty2 and the consolefont output is something actually unrelated because you ran it from a different terminal?
Because then I actually get the same output…
Online
I solved the problem by running the command:
localectl set-keymap --no-convert us
The problem was the keys. When I hit the z key, the y key was pressed.
Offline