• 0

    posted a message on Retrieving : lwjgl. Jar problem
    AVG was also my problem. Thanks for the tip!
    Posted in: Legacy Support
  • 0

    posted a message on Better Than Wolves Total Conversion!
    As an old bukkit plugin developer, I really don't know how you do it dude. So much complaining here, regardless of how awesome the mod is (it's unbelievable btw) I want to donate just because you have dealt with all of these immature brats that talk **** because "I don't like the name" or "I don't care that you spent hundreds of hours doing a great service to the community, I want you to give up your distro rights so I can get my way".

    Let me just say, from a young programmer to much more veteran one, thank you for all of your work on the mod and your magical, endless patience. Please, don't ever add this to the yogbox or whatever it is. Keep doing exactly what you're doing.

    And to all the self entitled jackasses this thread has endured, I have windmills and you don't. Suck it.
    Posted in: Minecraft Mods
  • 0

    posted a message on World saving huge missing chunks.
    So I was having this problem with my VPS, and I have come pretty close to figuring it out so I came back here to post it :smile.gif:

    The problem with our chunks, we came to find out, was that the file became stale. Right before the chunks would be reset, I could run an ls -l on the world folder as root and find a ton of files that wouldn't return anything and giving me permission denied errors. Ex.
    ls -l
    ls: cannot access c.-1.-12.dat: Permission denied
    total 16
    -????????? ? ?    ?       ?            ? c.-1.-12.dat
    -rw-r--r-- 1 root root 2863 Jan 18 18:09 c.-1.q.dat
    -rw-r--r-- 1 root root 1941 Jan 18 18:09 c.-1t.-12.dat
    -rw-r--r-- 1 root root 2448 Jan 18 18:09 c.-1t.4a.dat
    -rw-r--r-- 1 root root 2571 Jan 18 18:09 c.-1t.q.dat


    Come to find out, it's because minecraft has to save those files so often it causes race conditions if your using a RAID configuration. Once a race condition happens, the file goes stale and minecraft will recreate it using the seed for that world (reseting the chunk).

    We have now moved our server to a single drive machine, I'll report back here if we're still getting missing chunks, but we're all pretty positive that's exactly what was going on.

    Hope this can help someone.
    Posted in: Legacy Support
  • 0

    posted a message on Not able to tar world for backups.
    Update: Whatever the problem was, I got fed up and rebooted my VPS. That seemed to do the trick, all the files became readable again. I assume some process was still using them, but I have no idea what process that would be since java (minecraft) wasn't running and all I really had going was apache2.

    Thanks for the help!
    Posted in: Server Support and Administration
  • 0

    posted a message on Not able to tar world for backups.
    What are the permissions of those files?

    I can't quite tell, ls -l is returning permission denied as well.
    root@mc:~# ls -l /minecraft/world/1r/q/c.-1.-12.dat
    ls: cannot access /minecraft/world/1r/q/c.-1.-12.dat: Permission denied

    Doing the parent directory yields:
    ls -l
    ls: cannot access c.-1.-12.dat: Permission denied
    total 16
    -????????? ? ?    ?       ?            ? c.-1.-12.dat
    -rw-r--r-- 1 root root 2863 Jan 18 18:09 c.-1.q.dat
    -rw-r--r-- 1 root root 1941 Jan 18 18:09 c.-1t.-12.dat
    -rw-r--r-- 1 root root 2448 Jan 18 18:09 c.-1t.4a.dat
    -rw-r--r-- 1 root root 2571 Jan 18 18:09 c.-1t.q.dat


    What user is the script running as?

    root

    What user is the Minecraft server running as?

    root

    I tried chmod and chown, all to no avail as the root user. I believe chunk saving got an update with this past update to help with chunk corruption, I thought this might be an effect of that update.

    EDIT: The slash before minecraft/world is so that tar won't throw the "/bin/tar: Removing leading `/' from member name" warning. Does the same as /minecraft/world, just tidier :smile.gif:
    Posted in: Server Support and Administration
  • 0

    posted a message on Not able to tar world for backups.
    I'm running a beta 1.2_01 server on ubuntu. I wrote a backup script to backup the world directory every 6 hours, it sends the following commands (I have a screen running the server named minecraft):

    /usr/bin/screen -x minecraft -X stuff "say Running backup."`/bin/echo -ne '\015'`
    /usr/bin/screen -x minecraft -X stuff "save-all"`/bin/echo -ne '\015'`
    /usr/bin/screen -x minecraft -X stuff "save-off"`/bin/echo -ne '\015'`
    
    /bin/sleep 5
    /bin/tar -czf /minecraft/backups/world`date +%m-%d-%Y_%H%M%S`.tar.gz -C / minecraft/world/
    
    /usr/bin/find /minecraft/backups -type d -mtime +5 | xargs /bin/rm -rf
    /usr/bin/find /var/log/mcbackups -type d -mtime +30 | xargs /bin/rm -rf
    
    /usr/bin/screen -x minecraft -X stuff "save-on"`/bin/echo -ne '\015'`
    /usr/bin/screen -x minecraft -X stuff "say Finished backup."`/bin/echo -ne '\015'`


    While running the previous beta this was working fine, now I'm getting all kinds of permission denied errors and the tar isn't completing. Any insight to this problem would be greatly appreciated. I've had the permission denied errors while the server was shut down (properly, using stop) and tried to restart the server to have the world completely regenerated.

    tar -czf /minecraft/backups/world`date +%m-%d-%Y_%H%M%S`.tar.gz -C / minecraft/world/
    tar: minecraft/world/0/l/c.0.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/0/m/c.0.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/0/n/c.0.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/0/o/c.0.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/0/p/c.0.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/0/q/c.0.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/0/r/c.0.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/0/s/c.0.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/0/t/c.0.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/0/u/c.0.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/0/v/c.0.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/1/y/c.1.-u.dat: Cannot stat: Permission denied
    tar: minecraft/world/1/z/c.1.-t.dat: Cannot stat: Permission denied
    tar: minecraft/world/1/10/c.1.-s.dat: Cannot stat: Permission denied
    tar: minecraft/world/13/i/c.-p.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/13/j/c.-p.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/13/k/c.-p.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/13/l/c.-p.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/13/m/c.-p.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/13/n/c.-p.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/13/o/c.-p.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/13/p/c.-p.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/13/q/c.-p.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/13/r/c.-p.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/13/s/c.-p.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/14/i/c.-o.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/14/j/c.-o.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/14/k/c.-o.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/14/l/c.-o.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/14/m/c.-o.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/14/n/c.-o.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/14/o/c.-o.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/14/p/c.-o.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/14/q/c.-o.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/14/r/c.-o.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/14/s/c.-o.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/14/t/c.-o.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/15/i/c.-n.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/15/j/c.-n.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/15/k/c.-n.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/15/l/c.-n.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/15/m/c.-n.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/15/n/c.-n.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/15/o/c.-n.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/15/p/c.-n.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/15/q/c.-n.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/15/r/c.-n.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/15/s/c.-n.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/15/t/c.-n.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/15/u/c.-n.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/15/v/c.-n.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/15/w/c.-n.-w.dat: Cannot stat: Permission denied
    tar: minecraft/world/15/x/c.-n.-v.dat: Cannot stat: Permission denied
    tar: minecraft/world/15/y/c.-n.-u.dat: Cannot stat: Permission denied
    tar: minecraft/world/16/i/c.-m.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/16/j/c.-m.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/16/k/c.-m.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/16/l/c.-m.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/16/m/c.-m.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/16/n/c.-m.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/16/o/c.-m.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/16/p/c.-m.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/16/q/c.-m.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/16/r/c.-m.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/16/s/c.-m.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/16/t/c.-m.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/16/u/c.-m.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/16/v/c.-m.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/16/w/c.-m.-w.dat: Cannot stat: Permission denied
    tar: minecraft/world/16/x/c.-m.-v.dat: Cannot stat: Permission denied
    tar: minecraft/world/16/y/c.-m.-u.dat: Cannot stat: Permission denied
    tar: minecraft/world/16/z/c.-m.-t.dat: Cannot stat: Permission denied
    tar: minecraft/world/16/10/c.-m.-s.dat: Cannot stat: Permission denied
    tar: minecraft/world/16/11/c.-m.-r.dat: Cannot stat: Permission denied
    tar: minecraft/world/16/12/c.-m.-q.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/i/c.-l.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/j/c.-l.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/k/c.-l.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/l/c.-l.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/m/c.-l.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/n/c.-l.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/o/c.-l.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/p/c.-l.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/q/c.-l.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/r/c.-l.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/s/c.-l.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/t/c.-l.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/u/c.-l.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/v/c.-l.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/w/c.-l.-w.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/x/c.-l.-v.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/y/c.-l.-u.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/z/c.-l.-t.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/10/c.-l.-s.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/11/c.-l.-r.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/12/c.-l.-q.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/13/c.-l.-p.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/14/c.-l.-o.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/15/c.-l.-n.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/16/c.-l.-m.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/17/c.-l.-l.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/18/c.-l.-k.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/19/c.-l.-j.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/1a/c.-l.-i.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/1b/c.-l.-h.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/1c/c.-l.-g.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/1d/c.-l.-f.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/1e/c.-l.-e.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/1f/c.-l.-d.dat: Cannot stat: Permission denied
    tar: minecraft/world/17/1g/c.-l.-c.dat: Cannot stat: Permission denied
    tar: minecraft/world/18/i/c.-k.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/18/j/c.-k.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/18/k/c.-k.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/18/l/c.-k.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/18/m/c.-k.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/18/n/c.-k.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/18/o/c.-k.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/18/p/c.-k.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/18/q/c.-k.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/18/r/c.-k.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/18/s/c.-k.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/18/t/c.-k.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/18/u/c.-k.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/18/v/c.-k.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/19/2/c.-j.2.dat: Cannot stat: Permission denied
    tar: minecraft/world/19/3/c.-j.3.dat: Cannot stat: Permission denied
    tar: minecraft/world/19/4/c.-j.4.dat: Cannot stat: Permission denied
    tar: minecraft/world/19/i/c.-j.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/19/j/c.-j.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/19/k/c.-j.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/19/l/c.-j.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/19/m/c.-j.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/19/n/c.-j.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/19/o/c.-j.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/19/p/c.-j.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/19/q/c.-j.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/19/r/c.-j.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/19/s/c.-j.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/19/t/c.-j.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/19/u/c.-j.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/19/v/c.-j.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/1a/i/c.-i.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/1a/j/c.-i.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/1a/k/c.-i.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/1a/l/c.-i.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/1a/m/c.-i.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/1a/n/c.-i.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/1a/o/c.-i.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/1a/p/c.-i.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/1a/q/c.-i.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/1a/r/c.-i.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/1a/s/c.-i.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/1a/t/c.-i.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/1a/u/c.-i.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/1a/v/c.-i.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/1b/i/c.-h.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/1b/j/c.-h.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/1b/k/c.-h.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/1b/l/c.-h.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/1b/m/c.-h.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/1b/n/c.-h.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/1b/o/c.-h.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/1b/p/c.-h.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/1b/q/c.-h.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/1b/r/c.-h.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/1b/s/c.-h.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/1b/t/c.-h.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/1b/u/c.-h.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/1b/v/c.-h.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/1c/9/c.-g.9.dat: Cannot stat: Permission denied
    tar: minecraft/world/1c/i/c.-g.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/1c/j/c.-g.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/1c/k/c.-g.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/1c/l/c.-g.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/1c/m/c.-g.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/1c/n/c.-g.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/1c/o/c.-g.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/1c/p/c.-g.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/1c/q/c.-g.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/1c/r/c.-g.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/1c/s/c.-g.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/1c/t/c.-g.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/1c/u/c.-g.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/1c/v/c.-g.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/1d/i/c.-f.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/1d/j/c.-f.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/1d/k/c.-f.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/1d/l/c.-f.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/1d/m/c.-f.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/1d/n/c.-f.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/1d/o/c.-f.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/1d/p/c.-f.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/1d/q/c.-f.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/1d/r/c.-f.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/1d/s/c.-f.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/1d/t/c.-f.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/1d/u/c.-f.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/1d/v/c.-f.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/1e/i/c.-e.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/1e/j/c.-e.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/1e/k/c.-e.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/1e/l/c.-e.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/1e/m/c.-e.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/1e/n/c.-e.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/1e/o/c.-e.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/1e/p/c.-e.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/1e/q/c.-e.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/1e/r/c.-e.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/1e/s/c.-e.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/1e/t/c.-e.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/1e/u/c.-e.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/1e/v/c.-e.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/1f/i/c.-d.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/1f/j/c.-d.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/1f/k/c.-d.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/1f/l/c.-d.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/1f/m/c.-d.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/1f/n/c.-d.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/1f/o/c.-d.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/1f/p/c.-d.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/1f/q/c.-d.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/1f/r/c.-d.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/1f/s/c.-d.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/1f/t/c.-d.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/1f/u/c.-d.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/1f/v/c.-d.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/1g/i/c.-c.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/1g/j/c.-c.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/1g/k/c.-c.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/1g/l/c.-c.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/1g/m/c.-c.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/1g/n/c.-c.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/1g/o/c.-c.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/1g/p/c.-c.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/1g/q/c.-c.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/1g/r/c.-c.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/1g/s/c.-c.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/1g/t/c.-c.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/1g/u/c.-c.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/1g/v/c.-c.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/1h/i/c.-b.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/1h/j/c.-b.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/1h/k/c.-b.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/1h/l/c.-b.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/1h/m/c.-b.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/1h/n/c.-b.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/1h/o/c.-b.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/1h/p/c.-b.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/1h/q/c.-b.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/1h/r/c.-b.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/1h/s/c.-b.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/1h/t/c.-b.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/1h/u/c.-b.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/1h/v/c.-b.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/1i/i/c.-a.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/1i/j/c.-a.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/1i/k/c.-a.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/1i/l/c.-a.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/1i/m/c.-a.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/1i/n/c.-a.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/1i/o/c.-a.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/1i/p/c.-a.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/1i/q/c.-a.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/1i/r/c.-a.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/1i/s/c.-a.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/1i/t/c.-a.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/1i/u/c.-a.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/1i/v/c.-a.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/1j/i/c.-9.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/1j/j/c.-9.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/1j/k/c.-9.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/1j/l/c.-9.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/1j/m/c.-9.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/1j/n/c.-9.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/1j/o/c.-9.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/1j/p/c.-9.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/1j/q/c.-9.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/1j/r/c.-9.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/1j/s/c.-9.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/1j/t/c.-9.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/1j/u/c.-9.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/1j/v/c.-9.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/1k/i/c.-8.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/1k/j/c.-8.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/1k/k/c.-8.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/1k/l/c.-8.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/1k/m/c.-8.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/1k/n/c.-8.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/1k/o/c.-8.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/1k/p/c.-8.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/1k/q/c.-8.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/1k/r/c.-8.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/1k/s/c.-8.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/1k/t/c.-8.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/1k/u/c.-8.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/1k/v/c.-8.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/1l/i/c.-7.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/1l/j/c.-7.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/1l/k/c.-7.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/1l/l/c.-7.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/1l/m/c.-7.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/1l/n/c.-7.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/1l/o/c.-7.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/1l/p/c.-7.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/1l/q/c.-7.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/1l/r/c.-7.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/1l/s/c.-7.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/1l/t/c.-7.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/1l/u/c.-7.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/1l/v/c.-7.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/1m/i/c.-6.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/1m/j/c.-6.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/1m/k/c.-6.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/1m/l/c.-6.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/1m/m/c.-6.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/1m/n/c.-6.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/1m/o/c.-6.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/1m/p/c.-6.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/1m/q/c.-6.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/1m/r/c.-6.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/1m/s/c.-6.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/1m/t/c.-6.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/1m/u/c.-6.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/1m/v/c.-6.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/1n/i/c.-5.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/1n/j/c.-5.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/1n/k/c.-5.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/1n/l/c.-5.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/1n/m/c.-5.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/1n/n/c.-5.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/1n/o/c.-5.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/1n/p/c.-5.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/1n/q/c.-5.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/1n/r/c.-5.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/1n/s/c.-5.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/1n/t/c.-5.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/1n/u/c.-5.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/1n/v/c.-5.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/0/c.-4.-1s.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/1/c.-4.-1r.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/2/c.-4.-1q.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/3/c.-4.-1p.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/4/c.-4.-1o.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/5/c.-4.-1n.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/6/c.-4.-1m.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/7/c.-4.-1l.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/8/c.-4.-1k.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/9/c.-4.-1j.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/a/c.-4.-1i.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/b/c.-4.-1h.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/c/c.-4.-1g.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/d/c.-4.-1f.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/e/c.-4.-1e.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/f/c.-4.-1d.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/g/c.-4.-1c.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/h/c.-4.-1b.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/i/c.-4.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/j/c.-4.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/k/c.-4.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/l/c.-4.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/m/c.-4.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/n/c.-4.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/o/c.-4.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/p/c.-4.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/q/c.-4.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/r/c.-4.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/s/c.-4.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/t/c.-4.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/u/c.-4.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/v/c.-4.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/1p/c.-4.-1v.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/1q/c.-4.-1u.dat: Cannot stat: Permission denied
    tar: minecraft/world/1o/1r/c.-4.-1t.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/0/c.-3.-1s.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/1/c.-3.-1r.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/2/c.-3.-1q.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/3/c.-3.-1p.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/4/c.-3.-1o.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/5/c.-3.-1n.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/6/c.-3.-1m.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/7/c.-3.-1l.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/8/c.-3.-1k.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/9/c.-3.-1j.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/a/c.-3.-1i.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/b/c.-3.-1h.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/c/c.-3.-1g.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/d/c.-3.-1f.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/e/c.-3.-1e.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/f/c.-3.-1d.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/g/c.-3.-1c.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/h/c.-3.-1b.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/i/c.-3.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/j/c.-3.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/k/c.-3.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/l/c.-3.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/m/c.-3.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/n/c.-3.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/o/c.-3.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/p/c.-3.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/q/c.-3.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/r/c.-3.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/s/c.-3.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/t/c.-3.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/u/c.-3.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/v/c.-3.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/1p/c.-3.-1v.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/1q/c.-3.-1u.dat: Cannot stat: Permission denied
    tar: minecraft/world/1p/1r/c.-3.-1t.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/0/c.-2.-1s.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/1/c.-2.-1r.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/2/c.-2.-1q.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/3/c.-2.-1p.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/4/c.-2.-1o.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/5/c.-2.-1n.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/6/c.-2.-1m.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/7/c.-2.-1l.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/8/c.-2.-1k.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/9/c.-2.-1j.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/a/c.-2.-1i.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/b/c.-2.-1h.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/c/c.-2.-1g.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/d/c.-2.-1f.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/e/c.-2.-1e.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/f/c.-2.-1d.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/g/c.-2.-1c.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/h/c.-2.-1b.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/i/c.-2.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/j/c.-2.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/k/c.-2.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/l/c.-2.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/m/c.-2.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/n/c.-2.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/o/c.-2.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/p/c.-2.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/q/c.-2.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/r/c.-2.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/s/c.-2.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/t/c.-2.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/u/c.-2.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/v/c.-2.-x.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/1q/c.-2.-1u.dat: Cannot stat: Permission denied
    tar: minecraft/world/1q/1r/c.-2.-1t.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/0/c.-1.-1s.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/1/c.-1.-1r.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/2/c.-1.-1q.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/3/c.-1.-1p.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/4/c.-1.-1o.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/5/c.-1.-1n.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/6/c.-1.-1m.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/7/c.-1.-1l.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/8/c.-1.-1k.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/9/c.-1.-1j.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/a/c.-1.-1i.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/b/c.-1.-1h.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/c/c.-1.-1g.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/d/c.-1.-1f.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/e/c.-1.-1e.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/f/c.-1.-1d.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/g/c.-1.-1c.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/h/c.-1.-1b.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/i/c.-1.-1a.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/j/c.-1.-19.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/k/c.-1.-18.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/l/c.-1.-17.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/m/c.-1.-16.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/n/c.-1.-15.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/o/c.-1.-14.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/p/c.-1.-13.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/q/c.-1.-12.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/r/c.-1.-11.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/s/c.-1.-10.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/t/c.-1.-z.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/u/c.-1.-y.dat: Cannot stat: Permission denied
    tar: minecraft/world/1r/v/c.-1.-x.dat: Cannot stat: Permission denied
    Posted in: Server Support and Administration
  • 0

    posted a message on [MOD] McRegion v5 (Optimized Saves) [1.2_02]
    I really hope this fixes (and by fix, I mean bypass) the corrupt chunk/reseting chunk problem that's been going around. This is my last resort lol. Thanks for the work!
    Posted in: Mods Discussion
  • 0

    posted a message on [1.3.1] GLSL Shaders (DoF, Bump Mapping, Waving Wheat, Dynamic Shadows, and More!)
    After having to start my xp vm to do so many things with minecraft, I'm glad there's finally a MacOS installer before windows. Kudos!
    Posted in: Minecraft Mods
  • 0

    posted a message on Finding server time of day
    I'm trying to find a way to have my web server report the current time of day it is on the server. I can't seem to find any plugins that will put the time of day (on time change) in the server.log or really any other way to accomplish this outside of having php use gzopen on the level.dat file. Even then, I can find the 'ticks' but no real way to tell the time with them.

    Has anyone else managed to do this or am I just wishful thinking.

    Thanks!
    Posted in: Server Support and Administration
  • 0

    posted a message on [WIP] ~Blacksmith Mod~ |Anvil&Tools/Repairs/More!|
    This sounds like an amazing mod, I hope you follow through with it.
    Posted in: Mods Discussion
  • To post a comment, please .