web-dev-qa-db-ja.com

Ubuntu 18.04.2のXfceでアイコンが表示されない

私はWindowsからVNC接続でUbuntuを使用しています。ほとんどのアイコンは次のように表示されます。

ubuntu icons

システムインフォメーション:

Linux vps568 4.15.0-52-generic #56-Ubuntu SMP Tue Jun 4 22:49:08 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux

xfconf-query -c xsettings -lvコマンドの出力:

/Gtk/ButtonImages               true
/Gtk/CanChangeAccels            false
/Gtk/ColorPalette               black:white:gray50:red:purple:blue:light blue:geen:yellow:orange:lavender:brown:goldenrod4:dodger blue:pink:light green:gray10gray30:gray75:gray90
/Gtk/CursorThemeName
/Gtk/CursorThemeSize            0
/Gtk/DecorationLayout           menu:minimize,maximize,close
/Gtk/FontName                   Sans 10
/Gtk/IconSizes
/Gtk/KeyThemeName
/Gtk/MenuBarAccel               F10
/Gtk/MenuImages                 true
/Gtk/MonospaceFontName          Monospace 10
/Gtk/ToolbarIconSize            3
/Gtk/ToolbarStyle               icons
/Net/CursorBlink                true
/Net/CursorBlinkTime            1200
/Net/DndDragThreshold           8
/Net/DoubleClickDistance        5
/Net/DoubleClickTime            400
/Net/EnableEventSounds          false
/Net/EnableInputFeedbackSounds  false
/Net/IconThemeName              elementary-xfce-dark
/Net/SoundThemeName             default
/Net/ThemeName                  Greybird
/Xft/Antialias                  -1
/Xft/Hinting                    -1
/Xft/HintStyle                  hintnone
/Xft/RGBA                       none

私もすでにこのコマンドを試しましたが、目に見える変化はありません:

xfdesktop --replace
8
plaidshirt

ほとんどのパッケージが欠落しています。おそらくデスクトップの代わりにサーバーバージョンを使用することから

同じ問題があります。

私は初めてgnomeをインストールすることになり、xfceはその後もまだ残っていました。

Sudo tasksel

パッケージを選んで、私はxubuntu minimal,にはブラウザが付属していないようです。そのため、フルxubuntuデスクトップを使用します。あなたはそれが私が必要としていることをするべきだと思っていますが、いじり続けています.

フォントも必要です。これがtaskselのフォントパッケージと同じかどうかはわかりません

Sudo apt-get install xfonts-base and Sudo apt-get install xfonts-100dpi and Sudo apt-get install xfonts-75dpi fixes font issues. – gies0r Dec 10 '19 at 19:22

デフォルトのフォントパスを試行してXtightvncを起動できませんでした-VNCServer

1
OpticBit

パッケージxubuntu-icon-themeがインストールされています。 Terminalを開き、次のように入力します。

dpkg -i | grep  xubuntu-icon-theme 

インストールされていない場合は、次のように入力します。

Sudo apt install xubuntu-icon-theme

次に、icon-cache

Sudo update-icon-caches /usr/share/icons/elementary-xfce \
/usr/share/icons/elementary-xfce-dark /usr/share/icons/elementary-xfce-darker \
/usr/share/icons/elementary-xfce-darkest

通常、テーマをインストールした後、postinstスクリプトからトリガーされます。

cat /var/lib/dpkg/info/xubuntu-icon-theme.postinst | grep update-icon-caches

次の出力を与えた

if which update-icon-caches >/dev/null 2>&1 ; then
    update-icon-caches /usr/share/icons/elementary-xfce /usr/share/icons/elementary-xfce-dark /usr/share/icons/elementary-xfce-darker /usr/share/icons/elementary-xfce-darkest
0
nobody