Welcome to yEd Q&A!
Here you can ask questions and receive answers from other members of the community and yEd developers. And you can tell us your most wanted feature requests.

Categories

Install yEd for all users (Linux)

0 votes
When I install yEd on my Linux box (Linux Mint - a shared family computer), it is installed in my /home/ directory and only I can access it. Any other user on this computer will have to install it themselves.

What do I need to do to install it so that all users on this computer can have access to a single install of yEd?
in Help by

1 Answer

0 votes
(NB, I'm a user, not an admin).

Here's how I would do this:

* Install the JRE system wide (I use ubuntu not Mint, but I'm sure Mint's package manager will have a java version).

* Download just the executable jar file from the download page.

* Unzip it into (e.g.) /usr/local/bin/yed-3.15

Create a file /usr/local/bin/yed, containing:

#!/bin/bash
cd /usr/local/bin/yed-3.15
java -jar yed.jar $@ &> /dev/null
 

* Do: "chmod 755 /usr/local/bin/yed"

Then as long as your users have /usr/local/bin in their $PATH then simply running "yed" from the command line should work.
by (340 points)
Legal Disclosure | Privacy Policy
...