dcoomber / XMind-Linux-Installer

A simple BASH script to install XMind in Linux

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

XMind-Linux-Installer

A simple BASH script to install XMind in Linux

How to install XMind 8 on Linux

  1. Make sure the dependencies are satisfied for your distribution
  • Debian, Ubuntu, Mint or other Linux distribution with .deb package. sudo apt-get install unzip default-jre libgtk2.0-0 libwebkitgtk-1.0-0 lame libc6 libglib2.0-0
  • Fedora, CentOS, RHEL, or other Linux distribution with .rpm packages. sudo yum install unzip java webkitgtk gtk2 glibc lame or sudo dnf install unzip java webkitgtk gtk2 glibc lame
  1. Get the scripts git clone https://github.com/mriza/XMind-Linux-Installer.git

  2. Download XMind from [http://www.xmind.net/download/linux/] (http://www.xmind.net/download/linux/)

  3. Add execute permission to the installer script and run it, chmod +x xmind-installer.sh; sudo ./xmind-installer.sh username

username is the user that will be use/run the software. Because XMind will need a data directory in the user home named '.workspace'

This script is an automation of this process

process

Icon : http://www.iconarchive.com/show/papirus-apps-icons-by-papirus-team/xmind-icon.html

Troubleshooting

JVM terminated. Exit code=1

From Github issue 18

sudo apt-get install -y openjdk-8-jre
sudo update-alternatives --config java

Select OpenJDK 8

Remove --add-modules=java.se.ee from XMind.ini

sudo su -
config="/opt/xmind/XMind_amd64/XMind.ini"
mv "$config" "$config.bak" && grep -v "add-modules" "$config.bak" > "$config"

About

A simple BASH script to install XMind in Linux

License:GNU General Public License v3.0


Languages

Language:Shell 100.0%