A simple BASH script to install XMind in Linux
How to install XMind 8 on Linux
- 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
orsudo dnf install unzip java webkitgtk gtk2 glibc lame
-
Get the scripts
git clone https://github.com/mriza/XMind-Linux-Installer.git
-
Download XMind from [http://www.xmind.net/download/linux/] (http://www.xmind.net/download/linux/)
-
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
Icon : http://www.iconarchive.com/show/papirus-apps-icons-by-papirus-team/xmind-icon.html
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"