Problems downloading the Cuberite precompiled S/W - Printable Version +- Cuberite Forum (https://forum.cuberite.org) +-- Forum: Cuberite (https://forum.cuberite.org/forum-4.html) +--- Forum: Discussion (https://forum.cuberite.org/forum-5.html) +--- Thread: Problems downloading the Cuberite precompiled S/W (/thread-2071.html) Pages:
1
2
|
Problems downloading the Cuberite precompiled S/W - joshpops - 07-24-2015 I hope thisis the correct forum to ask the question, i fnot , please tell me so. My grandson wants to run Minecraft server on his Raspberry Pi 2. I am retired from the computer industry, and his father has not a clue, so Pops has been drafted to help him. I have visited the Cuberite,org website to download the Pi version of the server on to my Windows 7 Professional 64 bit system. Each time I click on the Download button, I get the pop-up window to Save the file or open it with an application, but before I can click SAVE File and tell Firefox to save it in the downloads folder, another window pops up behind the save window with the following: C:\Users\...l\Temp\WJQBj2mf.gz.part could not be saved, because the source file could not be read. Try again later, or contact the server administrator. So I thought I'd try to D/L the Windows 64bit version, but got the same error. Someone plase tell me what I'm doing wrong, or verify there is a problem with the site before Pops tears out what little hair he has left. Thank you. Jimmy Thompson - joshpops RE: Problems downloading the Cuberite precompiled S/W - JBar2000 - 07-24-2015 Ditto. Same issue, but using Linux Mint 17.2 Cinnamon. Sad face. Just received the Pi in the mail, with time off from work to set this up. Now I am being forced to have quality family time. Argh. RE: Problems downloading the Cuberite precompiled S/W - joshpops - 07-24-2015 (07-24-2015, 04:37 AM)joshpops Wrote: I hope thisis the correct forum to ask the question, i fnot , please tell me so. Thought I'd take another approach: went to http://builds.cuberite.org/job/Cuberite%20Linux%20raspi-armhf%20Master/lastStableBuild/ and clicked on the Cuberite.tar.gz to download that file and got the same result. Either I'm doing something wrong, or this website is broken. Help RE: Problems downloading the Cuberite precompiled S/W - e14 - 07-24-2015 Have/Had the same issues. Though on an RPi-B1. The archive is broken, it contains \0 values in or after the file list. You can get the source from github and build it yourself. Which is probably not a bad idea for the Raspberry anyway. On Raspbian, you may run into the same issue as me, since the gcc dependency is not properly checked. Cuberite has CLI flags that seem to require a gcc version > 4.6, so you need to install a newer version (4.8 ideally) Here's a condensed version of what I did to get my cuberite server: Code: # Need to be root, otherwise prepend everything with sudo Code: # Login as minecraft RE: Problems downloading the Cuberite precompiled S/W - NiLSPACE - 07-24-2015 It looks like something is wrong with the build server. :| RE: Problems downloading the Cuberite precompiled S/W - joshpops - 07-24-2015 (07-24-2015, 05:53 AM)e14 Wrote: Have/Had the same issues. Though on an RPi-B1. The archive is broken, it contains \0 values in or after the file list.What is the URL/Linux command to retrieve the source code? The Github descriptions are not very clear, at least to me. RE: Problems downloading the Cuberite precompiled S/W - xoft - 07-24-2015 You need "git" to download the source code; it should be available either out of the box, or can be installed using your platform's package manager. These commands will set up the complete source repository: Code: mkdir cuberite To compile, you need gcc at least version 4.8 or clang at least version 3.0, install those using your platform's package manager and make them the default compiler, using the update-alternatives command. You will need cmake, too, also available in your package manager. This will compile the server (assuming you're in the previously created cuberite folder): Code: mkdir Release RE: Problems downloading the Cuberite precompiled S/W - joshpops - 07-25-2015 Thanks, Xoft for your reply. I finally did see the previuos instructions after scrolling down the code. The eyes don't seem to connect with the brain much anymore. I did do the compile on my Pi 2 and the whole process took about 25 minutes give or take a minute or two, so the Pi 2 is significantly faster than the Pi 1, although the memory size had a lot to do with that. Before I retired and mainframes were common, I did performance analysis on customer mainframes, developed models for them to run and decide what types of upgrades would make sense. In about 85% of the contracts we did, increasing the memory capacity turned out to be the greatest overall system performance boost. The CPU was next with higher speed rotating memory next. It would be interesting to see what would happen if the Pi 1 had 1G memory. Maybe there may be a way to disable 3 cores in the Pi 2 to test - assuming the cores are roughly the same between the Pi1 and 2. I'm now curious but that's a project in the future. RE: Problems downloading the Cuberite precompiled S/W - xoft - 07-25-2015 That would be rather easy to test. Just run the "make" without the "-j 4" parameters, that will make use of only a single core for compilation. RE: Problems downloading the Cuberite precompiled S/W - LO1ZB - 07-26-2015 If anyone needs Windows builds: Win32: https://mega.co.nz/#!YZwThAZY!fJht4H-GIt4Vd2S4wl21iWAS4qY5yN5mZ36YpJf4bSI Win64: https://mega.co.nz/#!8ZIVha4K!phGfXPSFpZLHcnPPW4C1O0696lYNztW1yjU2QFTK7qc Revision: 7cb981443e3709268d32fa2ea286f37708f07d82 |