wsl --list
wsl --set-version Ubuntu-20.04 2
wsl --list
wsl --set-version Ubuntu-20.04 2
Minecraft server enable to create a virtual world. Then you can connect from Minecraft from "Multiplayer".
Installing Java is mandatory.
apt install default-jre screen nano wget git
apt install software-properties-common
apt install openjdk-16-jdk-headless
Download the server binary located here : https://www.minecraft.net/fr-fr/download/server/.
Then you need to accept EULA by editing the file EULA.txt generated after launching the server for the first time.
java -Xmx1024M -Xms1024M -jar minecraft_server.1.17.jar nogui
screen -S minecraft -d -m java -Xmx1024M -Xms1024M -jar server.jar nogui
screen -ls
will list "screened" programsscreen -r minecraft
will show you the terminal where your program is launchedCtrl + a > c
will let you go back to your initial terminalInstall following code to /etc/systemd/system/minecraft_server.service :
[Unit]
Description=Minecraft server
[Service]
User=minecraft
# The configuration file application.properties should be here:
WorkingDirectory=/opt/minecraft/servers/myserver
ExecStart=/usr/bin/java -Xmx1024M -Xms1024M -jar ./server.jar nogui
SuccessExitStatus=143
TimeoutStopSec=10
Restart=on-failure
RestartSec=5
[Install]
WantedBy=multi-user.target
Reload service file :
systemctl daemon-reload
Start :
service minecraft_server start
Stop :
service minecraft_server stop
/stop
/help
Few Git commands :
git clone (ssh|git)://hostname.com/(repository)
git commit
git push origin master
Voici quelques repères pour démarrer sous Angular.
Here is the beginning of a progressive documentation of Maven.
>>mvn {{command}}
Reports are located reporting xml element in the xml project file (pom.xml) :
...
Here are few reports plugin :
org.apache.maven.plugins
maven-javadoc-plugin
org.apache.maven.plugins
maven-checkstyle-plugin
org.apache.maven.plugins
maven-jxr-plugin
org.apache.maven.plugins
maven-pmd-plugin
Few days ago I would like to use docker from windows with docker composer. And because I am using ansible, I found easier to deal from Linux...