This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/etc/systemd/network/10-wan.network | |
[Match] | |
Name=enp4s0f1.100 | |
[Network] | |
IPv6AcceptRA=true | |
DHCP=ipv6 #mettre 'yes' si besoin aussi en IPv4 | |
[IPv6AcceptRA] | |
UseDNS=false #ou yes si bytel envoi des infos dns |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
docker pull novaquark/dual-server-logrotate | |
docker pull novaquark/dual-server-nodemanager | |
docker pull novaquark/dual-server-constructs | |
docker pull novaquark/dual-server-market | |
docker pull novaquark/dual-server-voxel | |
docker pull novaquark/dual-server-orleans | |
docker pull novaquark/dual-server-queueing | |
docker pull novaquark/dual-server-node | |
docker pull novaquark/dual-server-backoffice |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
steps to install myDU server on Linux: | |
if using WSL2 (Linux on Windows), install WSL2 then a distro: https://learn.microsoft.com/en-us/windows/wsl/install | |
once your distro is up , you're in Linux continue below (easiest distro: ubuntu) | |
A. setting up Docker: | |
step 1: install Docker engine (do not install Docker Desktop): https://docs.docker.com/engine/install/ | |
ubuntu: sudo snap install docker | |
step 2: (optionnal) post install : https://docs.docker.com/engine/install/linux-postinstall/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install myDU server on Windows without Docker Desktop: | |
in a Windows terminal: | |
wsl --install | |
# this will create and install a Ubuntu VM. | |
# choose an username and a password and don't forget them! | |
# when you see a Linux prompt (colored prompt with username first), enter the following commands: | |
sudo snap install docker | |
sudo groupadd docker | |
sudo usermod -aG docker $USER |
OlderNewer