yEdเป็นเครื่องมือแก้ไขที่มีคุณสมบัติมากมายสำหรับไดอะแกรมลำดับชั้นและแผนภูมิการไหล ฉันต้องการติดตั้งบน Ubuntu น่าเสียดายที่ไม่มีให้บริการในที่เก็บข้อมูลอย่างเป็นทางการ
ฉันต้องทำตามขั้นตอนใดเพื่อติดตั้ง yEd บน Ubuntu
yEdเป็นเครื่องมือแก้ไขที่มีคุณสมบัติมากมายสำหรับไดอะแกรมลำดับชั้นและแผนภูมิการไหล ฉันต้องการติดตั้งบน Ubuntu น่าเสียดายที่ไม่มีให้บริการในที่เก็บข้อมูลอย่างเป็นทางการ
ฉันต้องทำตามขั้นตอนใดเพื่อติดตั้ง yEd บน Ubuntu
คำตอบ:
มีสองวิธีในการติดตั้ง yEd บน Ubuntu
การใช้โปรแกรมติดตั้งกราฟิกที่ให้มา
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=
บรรทัดตามระบบของคุณ
หากคุณต้องการเชื่อมโยงไฟล์. graphml ของ yEd (โปรแกรมติดตั้งไม่ได้ทำโดยอัตโนมัติ) คุณสามารถใช้สคริปต์ต่อไปนี้:
#! /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.