This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |