回答:
UbuntuにyEdをインストールするには2つの方法があります。
提供されているグラフィカルインストーラーの使用
yEdには、すべてのシステム依存関係(Java、最も重要)を処理する使いやすいグラフィカルインストーラーが付属しています。
次の手順を実行します:
chmod +x yEd<...>.sh
ファイルマネージャーのプロパティメニューを使用するか、ファイルマネージャーのプロパティメニューに移動して、インストーラーを実行可能にします(プロパティ→権限→プログラムとしてのファイルの実行を許可)手動インストール
抽出されたフォルダーに移動しyed.jar
、java で開きます。
java -jar "yed.jar"
yEdをシステムに統合するには、の.desktop
下にランチャーを作成できます~/.local/share/applications
。例えば:
$ cat ~/.local/share/applications/yed.desktop
[Desktop Entry]
Encoding=UTF-8
Name=yEd Graph Editor
Comment=Edit graphml files in yed
Exec=java -jar /home/user/applications/yEd/yed.jar %u
Terminal=false
Type=Application
Icon=/home/user/applications/yEd/icons/yicon32.png
Categories=Application;Office
StartupNotify=false
MimeType=application/xml;
NoDisplay=false
お使いのシステムに応じて、行Exec=
とIcon=
行を必ず変更してください。
yEdの.graphmlファイルを関連付ける場合(インストーラーによって自動的に行われない)、次のスクリプトを使用できます。
#! /bin/bash
# Run the script in the root of yEd installation directory
# Tested with Ubuntu 18.04
# Create a new mime type definition file
cat >graphml+xml-mime.xml << EOL
<?xml version="1.0"?>
<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>
<mime-type type="application/x-graphml+xml">
<comment>yEd graphml file (xml format)</comment>
<glob pattern="*.graphml"/>
<generic-icon name="x-application-graphml+xml"/>
</mime-type>
</mime-info>
EOL
# Install the new mime definition
sudo xdg-mime install graphml+xml-mime.xml
# Install icon (size 48 can be extracted from i4j_extf_2_1aawyej_k3n8ea.ico file)
sudo xdg-icon-resource install --context mimetypes --size 32 .install4j/yEd.png x-application-graphml+xml
# Append %F to yEd .desktop file so it is visible in "Open With Other Application" menu
sed -i '/Exec/ s/$/ %F/' ~/.local/share/applications/yEd\ Graph\ Editor-0.desktop
# Finally go to file manager, right click, select "Open With Other Application",
# click "View All Applications" and select yEd.