Gnome 3.12.2 の「gnome-terminal」の問題

Gnome 3.12.2 の「gnome-terminal」の問題

Ubuntu-Gnome 14.04 (Gnome 3.12.2) を使用しています。

gnome-terminal次のコマンドで実行しようとすると:

$ gnome-terminal
Error constructing proxy for org.gnome.Terminal: /org/gnome/Terminal/Factory0: 
Error calling StartServiceByName for org.gnome.Terminal:
GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: 
Process /usr/lib/gnome-terminal/gnome-terminal-server exited with status 8

答え1

LANG=en_US.UTF-8追加し/etc/default/localeてシステムを再起動する必要があります。(解決策はこのArch Linuxフォーラムの投稿

答え2

役に立つコマンドのリストは次のとおりです:

sudo apt install dconf-cli

# Reinstalling terminal
dconf reset -f /org/gnome/terminal
sudo apt-get remove gnome-terminal
sudo apt-get install gnome-terminal

# Reconfiguring locale
sudo locale-gen --purge
sudo dpkg-reconfigure locales

reboot

ご覧のとおり、私は再構成してlocale再インストールしましたgnome-terminal

答え3

これは私にとっては勝利です:

/usr/bin/dbus-launch /usr/bin/gnome-terminal &

学んだ通りここ

答え4

これはロケールの問題である可能性があります。 を追加しLANG=en_US.UTF-8/etc/locale.conf再起動するか、そのファイル全体を削除して ( sudo rm /etc/locale.conf && sudo locale-gen en_US.UTF-8 && sudo dpkg-reconfigure locales) 再起動してください。

関連情報