Ubuntu에 yEd 그래프 편집기를 어떻게 설치합니까?


13

yEd 는 계층 적 다이어그램 및 플로우 차트를위한 풍부한 기능의 편집기입니다. 우분투에 설치하고 싶습니다. 불행히도 공식 리포지토리에서는 사용할 수없는 것으로 보입니다.

Ubuntu에 yEd를 설치하려면 어떤 단계를 수행해야합니까?

답변:


17

Ubuntu에 yEd를 설치하는 방법은 두 가지가 있습니다.

제공된 그래픽 설치 프로그램 사용

yEd에는 모든 시스템 종속성 (Java, 가장 중요)을 처리하는 사용하기 쉬운 그래픽 설치 프로그램이 제공됩니다.

yEd 설치 프로그램 GUI

다음과 같이하세요:

  1. yworks 다운로드 페이지 에서 yEd Graph Editor 섹션을 찾으십시오 .
  2. 시스템에 적합한 Linux yEd 설치 프로그램을 다운로드하십시오 (32 비트 또는 64 비트)
  3. chmod +x yEd<...>.sh파일 관리자의 속성 메뉴에서 또는 속성으로 이동 하여 설치 프로그램을 실행 가능하게 하십시오 ( 속성 → 권한 → 파일을 프로그램으로 실행 허용 )
  4. 설치 프로그램을 실행하고 설명 된 단계를 수행하십시오.
  5. 완료되면 Unity Dash에서 yEd를 찾을 수 있어야합니다

수동 설치

  1. 최신 Java 릴리스가 설치되어 있는지 확인하십시오.
  2. 압축 된 yEd 릴리스를 다운로드 페이지 에서 다운로드하십시오.
  3. zip 파일의 내용을 추출하십시오
  4. 추출 된 폴더로 이동하여 yed.jarjava에서 엽니 다 .

    java -jar "yed.jar"
    
  5. 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=라인 을 변경하십시오 .


1
PPA가 없습니까?
becko

1
@becko 라이센스는 배포를 금지하므로 라이센스를 변경하지 않는 한 불가능합니다.
Eero Aaltonen

1

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.
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.