yEd पदानुक्रमित आरेख और प्रवाह चार्ट के लिए एक सुविधा संपन्न संपादक है। मैं इसे उबंटू पर स्थापित करना चाहूंगा। दुर्भाग्य से यह आधिकारिक रिपॉजिटरी में उपलब्ध नहीं है।
उबंटू पर yEd स्थापित करने के लिए मुझे क्या कदम उठाने होंगे?
yEd पदानुक्रमित आरेख और प्रवाह चार्ट के लिए एक सुविधा संपन्न संपादक है। मैं इसे उबंटू पर स्थापित करना चाहूंगा। दुर्भाग्य से यह आधिकारिक रिपॉजिटरी में उपलब्ध नहीं है।
उबंटू पर yEd स्थापित करने के लिए मुझे क्या कदम उठाने होंगे?
जवाबों:
उबंटू पर yEd स्थापित करने के दो तरीके हैं।
दिए गए चित्रमय इंस्टॉलर का उपयोग करना
yEd एक आसान-से-उपयोग वाले ग्राफिकल इंस्टॉलर के साथ आता है जो सभी सिस्टम निर्भरता (जावा, सबसे महत्वपूर्ण रूप से) का ख्याल रखता है:
इन कदमों का अनुसरण करें:
chmod +x yEd<...>.sh
को अपने फ़ाइल मैनेजर के गुण मेनू में या उसके साथ निष्पादित करने योग्य बनाएं ( गुण → अनुमतियाँ → प्रोग्राम के रूप में फ़ाइल निष्पादित करने की अनुमति दें )मैनुअल स्थापना
निकाले गए फ़ोल्डर में नेविगेट करें और yed.jar
जावा में खोलें :
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.