Setup/Installation

Installation

This tutorial assumes that you have already configured MCBash. If not, do that now.


continuity.sh

This will show you how to install continuity.sh, the script which ensures that your startup script is always running.

  1. Run these commands as root:
    1. echo \ >> /etc/crontab
    2. echo "*/3 * * * * sh /continuity.sh" >> /etc/crontab
    3. echo \ >> /etc/rc.local
    4. echo "sh /continuity.sh" >> /etc/rc.local
  2. Place continuity.sh at the root of your filesystem (/).
  3. Run this command as root:
    1. chmod 755 /continuity.sh

backup-hourly.sh

This will show you how to install backup-hourly.sh, the script which ensures that your Bukkit server is backed up hourly.

  1. Place backup-hourly.sh in /etc/hourly.cron/.
  2. Run this command as root:
    1. chmod 755 /etc/hourly.cron/backup-hourly.sh

backup-daily.sh

This will show you how to install backup-daily.sh, the script which ensures that your Bukkit server's hourly backups are compressed into daily backup files.

  1. Place backup-dailly.sh in /etc/daily.cron/.
  2. Run this command as root:
    1. chmod 755 /etc/daily.cron/backup-daily.sh