Skip to content

Instantly share code, notes, and snippets.

@hexparrot
hexparrot / install_mineos
Last active August 29, 2015 14:04 — forked from hexparrot/install_mineos
Downloads, installs and configures components required for the MineOS Web User Interface on zypper-based systems.
#!/bin/sh
# download the necessary prerequisite components for mineos
zypper -n remove patterns-openSUSE-minimal_base-conflicts
zypper -n install screen
zypper -n install openssl
zypper -n install libopenssl-devel
zypper -n install git
zypper -n install java-1_7_0-openjdk-headless
zypper -n install python-xml
@hexparrot
hexparrot / install_mineos
Last active August 29, 2015 13:58 — forked from hexparrot/install_mineos
Downloads, installs and configures components required for the MineOS Web User Interface on pacman based systems.
#!/bin/sh
# download the necessary prerequisite components for mineos
pacman -S --noconfirm screen wget git rsync rdiff-backup python2-pip jre7-openjdk
pip2 install cherrypy==3.2.3
# download the most recent mineos web-ui files from github
mkdir -p /usr/games
cd /usr/games
git clone git://github.com/hexparrot/mineos minecraft
@hexparrot
hexparrot / install_mineos
Last active September 8, 2018 05:04 — forked from hexparrot/install_mineos
Downloads, installs and configures components required for the MineOS Web User Interface on yum based systems.
#!/bin/sh
# download the necessary prerequisite components for mineos
yum -y install screen git wget java-1.7.0-openjdk.x86_64 openssl openssl-devel
yum -y groupinstall "Development tools"
# download rdiff-backup rpm
mkdir -p ~/mineos-setup
cd ~/mineos-setup
wget http://pkgs.repoforge.org/rdiff-backup/rdiff-backup-1.2.8-4.el6.rf.x86_64.rpm