This should work with any linix as a virtual box or a standalone server Downloaded lubuntu 22.04 lts or any linux you like i used lubuntu because it appeared faster that ubuntu to me Install lubuntu on Virtual box used 8gb ram with 60gb hd space Installed updates Reboot ran VBoxManage modifyvm "VM name" --spec-ctrl on to remove spectr mitigation error installed net-tools to determine ip sudo apt install net-tools ran ifconfig found ip not on main network changed machine network to bridged adapter ran ifconfig now on correct net to confirm ip installed openssh-server sudo apt install openssh-server installed apache sudo apt install apache2 installed mysql ssudo apt install mysql-server created a mysql user and grant all rights sudo mysql create user 'Tonka'@'%' identified with mysql_native_password by 'EVORules'; grant all privileges on *.* to 'Tonka'@'%'; exit install php sudo apt install php libapache2-mod-php php-mysql created php test sudo vi /var/www/html/info.php insert (i) esc wq tested php localhost/info.php installed make sudo apt install make installed build-essential sudo apt install build-essential downloaded udp-server.zip extracted udp-server.zip to downloads terminal to /downloads/udp-server make (will get a warning but it will function) downloaded eircd server extracted eircd-server to downloads made configure executable made go executable executed go copied udp-server to ircd/bin copied ircd-etc files to ircd/etc folder edited ircd.conf with what i wanted ran ircd ran udp-server tested evo1 preparation of track script for download from evo create user tracks logged in as tracks copied tracks_scripts folder to tracks copied tracks folder to tracks having a tracks folder under the tracks folder preparation of all evo files copied Web_server files/folder to /var/www/html/tonkas created virtual web server tonkas (sample in apache folder) by copying /tonkas.conf to /etc/apache2/sites-available this will make it so can go to tonkas.hopto.org and tonkas.hopto.org/tracks/ which is in home/tracks/tracks folder also has the evo download script in /home/tracks/track_script enabled virtual server imported database using Tonkas_Database.sql allowed www-data access to /home/tracks/tracks sudo chgrp -R www-data /home/tracks/tracks sudo chmod -R g+wrxs /home/tracks/tracks sudo chmod +x /home/tracks allowed www-data access to /home/tracks/track_script sudo chgrp -R www-data /home/tracks/track_script sudo chmod -R g+wrxs /home/tracks/track_script