Bug 1879048
Summary: | Fails to start because of non-UTF-8 locale | ||
---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | jari.kosonen4 |
Component: | gnome-terminal | Assignee: | Debarshi Ray <debarshir> |
Status: | CLOSED NOTABUG | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
Severity: | high | Docs Contact: | |
Priority: | unspecified | ||
Version: | 32 | CC: | caillon+fedoraproject, debarshir, giallu, gnome-sig, john.j5live, klember, mclasen, rhughes, rstrode, sandmann |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | x86_64 | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | If docs needed, set a value | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2020-10-07 17:04:46 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
jari.kosonen4
2020-09-15 10:33:32 UTC
I don't know a whole lot how to debug gnome-terminal, but one thing I know is that it has a "server process". I assume it's that process that's not starting. Can you try running /usr/libexec/gnome-terminal-server from xterm and see if it sheds any light on what's going wrong? A bit of background on GNOME Terminal ... /usr/bin/gnome-terminal is just a tiny little launcher. It sends a D-Bus message to /usr/libexec/gnome-terminal-server to request it to create a new terminal tab or window. The server binary is where most of the application lives. Could you please open two xterm windows? In the first, do: $ /usr/libexec/gnome-terminal-server Then, in the second, do: $ /usr/bin/gnome-terminal What do you see in those two windows? (Just be careful not to wait too long between those two commands.) https://access.redhat.com/support/cases/#/case/02748273/discussion?commentId=a0a2K00000WSgBEQA1 [jari@ENVY-17 ~]$ /usr/libexec/gnome-terminal-server Non UTF-8 locale (ANSI_X3.4-1968) is not supported! -> Here is strange result as this. [jari@ENVY-17 ~]$ /usr/bin/gnome-terminal # _g_io_module_get_default: Found default implementation gvfs (GDaemonVfs) for ‘gio-vfs’ # _g_io_module_get_default: Found default implementation dconf (DConfSettingsBackend) for ‘gsettings-backend’ # watch_fast: "/org/gnome/terminal/legacy/" (establishing: 0, active: 0) # unwatch_fast: "/org/gnome/terminal/legacy/" (active: 0, establishing: 1) # watch_established: "/org/gnome/terminal/legacy/" (establishing: 0) -> Issues as this listed But it is starting now. It looks like setting 'export LANG=C' in .bashrc caused the problem of gnome-terminal not starting. (In reply to jari.kosonen4 from comment #3) > [jari@ENVY-17 ~]$ /usr/libexec/gnome-terminal-server > Non UTF-8 locale (ANSI_X3.4-1968) is not supported! > -> Here is strange result as this. This is expected. Non-UTF-8 locales aren't supported. > It looks like setting 'export LANG=C' in .bashrc caused the problem of > gnome-terminal not starting. Yes, exactly. |