답변:
Ubuntu에 yEd를 설치하는 방법은 두 가지가 있습니다.
제공된 그래픽 설치 프로그램 사용
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.