restart console on Minecraft Server

If this is a linux vserver or root server, you can use the “screen” tool to access the minecraft console again. Create a new startup script (start.sh) in the server directory to launch the JAR: #!/bin/sh screen -d -m -S “minecraft_screen” java -Xmx1024M -Xms1024M -jar minecraft_server.1.15.2.jar nogui Open your terminal and execute the following in … Read more

Change default title in mac terminal window

That’s two questions: the text in the titlebar for OSX Terminal comes from the names of the processes running in the terminal. There can be multiple levels of processes, e.g., a shell running an editor. Terminal shows up to a few levels of those. You can configure its behavior in the Preferences dialog. In practice, it can … Read more

mvn command not found in OSX Mavrerick

Try following these if these might help: Since your installation works on the terminal you installed, all the exports you did, work on the current bash and its child process. but is not spawned to new terminals. env variables are lost if the session is closed; using .bash_profile, you can make it available in all sessions, since when a bash session starts, it … Read more

Node Version Manager install – nvm command not found

Check your .bash_profile, .zshrc, or .profile file. You most likely had a problem during the installation. You should have the following at the end of one of those files. The . $HOME/.nvm/nvm.sh is the same as source $HOME/.nvm/nvm.sh See: Sourcing a File You can also check to see if you have a .nvm folder. If you’re missing that folder then the installation failed to run … Read more