良い一日
GDM3 wiki で指定された方法に従って、GNOMEメニューのデスクトップファイルを追加します。
次のエラーが表示されます。
Oct 4 09:54:06 cx-W55xEU gnome-software[1741]: failed to rescan: Failed to parse /home/cx/.local/share/applications/Android-studio.desktop file: cannot process file of type application/x-desktop
Oct 4 09:54:47 cx-W55xEU gnome-software[1741]: failed to rescan: Failed to parse /usr/share/applications/Android-studio.desktop file: cannot process file of type application/x-desktop
作成しようとしているデスクトップファイルは、Android Studio用です。
デスクトップファイルの内容
[Desktop Entry]
# The type as listed above
Type=Application
# The version of the desktop entry specification to which this file complies
Version=1.0
# The name of the application
Name=Android-Studio
# A comment which can/will be used as a tooltip
Comment=Android studio IDE
# The path to the folder in which the executable is run
Path=/opt/google/Android-studio/Android-studio/bin/
# The executable of the application.
Exec=studio.sh
# The name of the icon that will be used to display this entry
Icon=studio.png
# Describes whether this application needs to be run in a terminal or not
Terminal=false
# Describes the categories in which this entry should be shown
Categories=Education;Languages;Java;
指定されたパスリンクには以下が含まれます。
# ll /opt/google/Android-studio/Android-studio/bin/
total 152
drwxrwxr-x 1 root root 348 Sep 15 16:17 ./
drwxrwxr-x 1 root root 160 Sep 15 16:17 ../
-rw-r--r-- 1 root root 136 Sep 15 15:49 appletviewer.policy
-rwxr-xr-x 1 root root 23072 Sep 15 15:49 fsnotifier*
-rwxr-xr-x 1 root root 29648 Sep 15 15:49 fsnotifier64*
-rwxr-xr-x 1 root root 26453 Sep 15 15:49 fsnotifier-arm*
-rw-r--r-- 1 root root 7482 Sep 15 15:52 idea.properties
-rwxr-xr-x 1 root root 278 Sep 15 15:49 inspect.sh*
-rw-r--r-- 1 root root 8531 Sep 15 15:49 libbreakgen64.so
-rw-r--r-- 1 root root 6807 Sep 15 15:49 libbreakgen.so
drwxrwxr-x 1 root root 12 Sep 15 16:17 lldb/
-rw-r--r-- 1 root root 2275 Sep 15 15:49 log.xml
-rw-r--r-- 1 root root 527 Sep 15 15:49 studio64.vmoptions
-rw-r--r-- 1 root root 9816 Sep 15 15:49 studio.png
-rwxr-xr-x 1 root root 6876 Sep 15 15:49 studio.sh*
-rw-r--r-- 1 root root 534 Sep 15 15:49 studio.vmoptions
これは、.desktopファイルを追加するときにこのような問題が発生したことがないという奇妙なエラーです。
何かご意見は?
「ウィービット」のより多くのグーグルの後、私は答えを見つけました。驚くべきことに、GDM wikiでは言及されていませんが、 askubunt 投稿から偶然出会ったものです
解決策:
図に示すように、Execファイルの前にbash -i
を追加します
Exec=bash -i "/opt/google/Android-studio/Android-studio/bin/studio.sh" %f
最終的な解決策
[Desktop Entry]
# The type as listed above
Type=Application
# The version of the desktop entry specification to which this file complies
Version=1.0
# The name of the application
Name=Android-Studio
# A comment which can/will be used as a tooltip
Comment=Android studio IDE
# The executable of the application.
Exec=bash -i "/opt/google/Android-studio/Android-studio/bin/studio.sh" %f
# The name of the icon that will be used to display this entry
Icon=/opt/google/Android-studio/Android-studio/bin/studio.png
# Describes whether this application needs to be run in a terminal or not
Terminal=false
# Describes the categories in which this entry should be shown
Categories=Education;Languages;Java;
StartupNotify=true
また、行を追加しました StartupNotify 。 .desktop
ファイルの他のいくつかのコンポーネントと同様に、その目的のために合理的な説明を見つけました
お役に立てれば!