i know nothing about it
ok it brought it a console. i assume i just type what you showed me correct?
Yep, you login there with root
(logging in as root means you don’t need the first “sudo su
” command) or as mc
followed by elevating yourself to root
from there (using “sudo su
”), and then run the remaining 2 commands.
Also feel free to checkout this tutorial if you wish for a bit more context: [Tutorial] Installing MineOS-Node on a Ubuntu/Debian based distribution with a GUI (WiFi included, covers a range of some basics)
im probobly doing something autistically wrong here
You’re missing the space in between the “cd
” and the “/usr/games/minecraft
”;
Each line is also it’s own line of commands (at the end of a line hit enter)
the first line worked but the second one im entering some way incorrectly?
Hmm, alright then you’ll have to update the old way since you don’t seem to have the “convenience” script yet that does it all for you; try
cd /usr/games/minecraft
git fetch
git merge origin/master
npm install --unsafe-perm
its suppose to show nothing like that? or did i do something else wrong. oh and i typed the other commands above its just my camera is small
Typically it shows a bit more, but in/when typing npm install
you left out the --unsafe-perm
portion (all lines typed out exactly as they are).
If it doesn’t work you may also instead try resetting:
cd /usr/games/minecraft
git fetch
git reset --hard origin/master
rm -rf node_modules
npm install --unsafe-perm
chmod +x mineos_console.js
only the last command didnt do anything
It did do something, there’s just no feedback from it; restart and then after you should be able to get 1.13.x servers up and running in the web ui (restart the system or use service mineos restart
to restart the web ui only)
ok so now it lets me download the version on UI thats fixed. only thing it the “start” button on the server doesnt work or i have some settings wrong maybe?
Have you selected the server jar file to run? Accepted the EULA? Messed with memory settings?
ok i messed with the settings just as you did in the video then the server started then shut down within like a few seconds
What do the logs say/show? (It must be the EULA, unless it’s the fact that you have OpenJDK7 (Based on Java 7) instead of OpenJDK8 or Oracle Java 8))
So, back to console/terminal again, login as root
or as mc
followed to elevating to root
(as you did earlier), and enter apt-get purge openjdk* -y && apt-get install openjdk-8-jdk
and then you should be able to get the server up and running (Minecraft 1.13.x also requires Java 8 at minimum and you by default have Java 7, so this purges Java 7 and installs Java 8).