How to set up your own MTA San Andreas server (Linux)

Intro

MTA:SA (Multi Theft Auto: San Andreas) is a widely used multiplayer mod created for San Andreas. This guide will show you how to set up an MTA:SA server on a Linux box.

The first thing you will need is a Linux box with root access. Either a dedicated server or a VPS (Virtual Private Server will do).

I would suggest using Vultr (please use this link to help support me!) for this, as they offer fast and cheap KVM machines in multiple locations across the world, starting from $5/month.

This guide will focus on setting up a Vultr VPS using Debian 8, but should work with other hosts and other Linux distributions, although I can’t guarantee it.

Creating and connecting to the VPS

Note: you can skip this bit if you know how to connect to your server

Once you have signed up at Vultr, you will be able to create a VPS. Just go to Servers then click the plus sign (+) and choose your location by clicking on the flag (choose the country nearest to you, or nearest to where the majority of your players will be. London is a good choice for covering most of Europe as well as the east coast of USA) then click Debian and select 8 x64 then under Server Size choose the specs you want. You should be able to easily host up 50+ players on the smallest 768MB RAM package, so choose this one for now. Once you click deploy, wait a few minutes for the server to be created.

Next, download PuTTY from this link. This is the program you will use to connect to your server and run commands. Open the file once it’s done downloading, and set it up like this

Host Name (or IP Address): the IP address given to you by Vultr on the “servers” page
Port: 22
Saved Sessions: in this box, type a name for your server like “MTA”

After that, click Save, then click Open

Once you click that, a window should pop up and ask you for a password. This is the root password of your server, and will have been emailed to you by Vultr (or you can click on your server in the control panel, and click the eye next to Password.

Once you’ve logged in to your VPS you should see something similar to this

root@vultr:~#

If you see that, move onto the next step. If not, try again or post a comment below and I will try to help.

Setting up the VPS

Note: to paste something in PuTTY, just right click inside the window

 

Now we need to update our server and install some things. First, you may want to change the password.

To change your password type passwd and press enter. Then it will ask you to choose a password, and after pressing enter it will ask you to confirm it. Type it in again and press enter, it should say passwd: password updated successfully

Next, run the following command to update your server and install unzip (to unzip some files), nano (a commandline text editor which we will use later), screen (used to run MTA:SA in the background when you disconnect from the server) and unattended-upgrades (to help keep your server secure)

apt-get update && apt-get -y dist-upgrade && apt-get -y install unattended-upgrades unzip nano

If you used Vultr, it will most likely be updated and already have some of these installed.

Installing MTA

Note: to paste something in PuTTY just right click inside the window

Now is the bit you really care about. Download and extract the MTA:SA server files by copy and pasting the following command into PuTTY, then press enter.

wget http://linux.mtasa.com/dl/152/multitheftauto_linux_x64-1.5.2.tar.gz && tar -zxvf multitheftauto_linux_x64-1.5.2.tar.gz && rm multitheftauto_linux_x64-1.5.2.tar.gz

Next we want to do the same thing with some default config files. Copy and paste the following command and press enter

wget http://linux.mtasa.com/dl/152/baseconfig-1.5.2.tar.gz && tar -zxvf baseconfig-1.5.2.tar.gz && mv baseconfig/* multitheftauto_linux_x64-1.5.2/mods/deathmatch && rm -rf baseconfig && rm baseconfig-1.5.2.tar.gz

And finally we want all of the default resources, so we’ll create the folder, change to that folder, then download and extract them with the following command

mkdir multitheftauto_linux_x64-1.5.2/mods/deathmatch/resources && cd multitheftauto_linux_x64-1.5.2/mods/deathmatch/resources && wget https://mirror.mtasa.com/mtasa/resources/mtasa-resources-latest.zip && unzip mtasa-resources-latest.zip && rm mtasa-resources-latest.zip

Configuring MTA

Now let’s configure it!

Type in the following command and press enter to open the main server config file

cd ~/multitheftauto_linux_x64-1.5.2/ && nano mods/deathmatch/mtaserver.conf

Now the file is open with nano and we can edit it! Use the arrow keys to move around, and then use it like a normal text editor (backspace to delete, etc.)

The main thing you will want to change is <servername>Default MTA Server</servername>

The bit you want to change is inside the <servername> and </servername> tags, so change it to something like this

<servername>My own MTA:SA server!</servername>

You can also go through and change FPS limit, number of players, etc.

Once you’ve made all of your changes hold Ctrl and press X to save it. It will confirm you want to save it so type Y and press enter.

Now we can start the server

Starting your MTA server

We want to keep MTA running when we disconnect from the server, so we need to use screen. Enter the following command and press enter

screen -S mta

Now we’re inside a screen session. Type the following command and press enter to start MTA

./mta-server64

Wait a few seconds and MTA will now be running.

To leave it running in the background, hold Ctrl + A together, then Press D at the same time.

To then enter the screen session again, type the following command and press enter

screen -r mta

Next we’ll create an admin account

Creating an admin account

Now the server is running, and we can type commands in the MTA console (black screen with the green bar at the bottom) we’ll create an admin account. Enter the following (replacing yourusername and yourpassword) and press enter

addaccount yourusername yourpassword

The server should reply with the following (ACCOUNTS: Console added account ‘yourusername’ with password ‘yourpassword’)

Now, we need to give ourselves admin permissions, so enter the following command and press enter

shutdown

Then type the following command and press enter

nano mods/deathmatch/acl.xml

We’re in nano (the text editor) again. Using the arrow keys to navigate, find the section starting with <group name=”Admin”>

Once you’ve found this, within the section you should see <object name=”resource.admin”></object>

We need to create another object for our user, so in the same section (above or below the other <object> tags) add this, replacing yourusername with your actual username

<object name=”user.yourusername”></object>

Once you’ve added that, hold Ctrl and press X to save it. Type Y then press enter.

Now we can start the server back up. Enter the following command and press enter

./mta-server64

Now we want to leave it running in the background again, so do the following

Hold Ctrl + A, then press D

Aaccessing the admin panel in-game

Note: NEVER give your admin password to anyone. Only ever enter it in the command panel when logging in, make sure you don’t enter it in the chat at all

Now you can disconnect from the server and join your server in MTA! The server address will be the following (replace yourIP with your actual IP)

mtasa://yourIP:22003

Once you’re connected to your server in-game, open the console by pressing F8 and login with the following command (replacing yourusername and yourpassword)

login yourusername yourpassword

Now you’re logged in to your account with admin access, press P in-game to bring up the admin panel, where you can configure everything on the server easily 🙂

Thanks for reading this guide, and if you want to help me, as well as have a great experience on your own MTA server, considering using Vultr as the host and signing up with this link

If you have any issues at all, leave a comment below and I will try to get back to you!

Vultr Review

About Vultr

Vultr is a VPS provider which offers KVM VPSes in 14 locations, all with pure SSDs and 10Gbit connections. They also allow hourly-billing and custom ISOs. On top of this, they use only Intel E3 and E5 CPUs and will allow you to use the full core, so they are perfect for running game servers, etc.

They have 8 locations in the US (Seattle, Silicon Valley, Los Angeles, Dallas, Chicago, Atlanta, Miami, New Jersey), 4 locations in Europe (England/UK, France, Germany, Netherlands) and 2 locations in Asia/Pacific (Japan, Australia).

A huge advantage Vultr has over Digital Ocean, and other competitors is they allow custom ISOs, so you can install Windows (you will need to integrate VirtIO drivers however, so see my guide here on how to do that).

Note: Vultr currently has a $20 free credit offer which you can see here

Speed Tests

Here are some speed tests from a server in each location (US, Europe and Asia). Each server is the lowest plan Vultr offer (was $5/month, now $2.50/month) and running Debian 7 (x64)

New York, USA speedtest

Vultr Speedtest USA

Speedtest to New York, America

Paris, France speedtest

Vultr Speedtest France

Speedtest to Paris, France

Tokyo, Japan speedtest

Speedtest Vultr Japan

Speedtest to Fussa, Japan

FreeVPS Benchmarks

Here are some benchmarks using the FreeVPS bench.sh script. Each server is the lowest plan Vultr offer (was $5/month, now $2.50/month for 512MB) and running Debian 7 (x64)

New York, USA benchmark

CPU model : Virtual CPU e7da7129d3ee
Number of cores : 1
CPU frequency : 2399.996 MHz
Total amount of ram : 748 MB
Total amount of swap : 0 MB
System uptime : 16 min,
Download speed from CacheFly: 83.4MB/s
Download speed from Coloat, Atlanta GA: 5.94MB/s
Download speed from Softlayer, Dallas, TX: 6.66MB/s
Download speed from Linode, Tokyo, JP: 2.04MB/s
Download speed from i3d.net, Rotterdam, NL: 3.01MB/s
Download speed from Leaseweb, Haarlem, NL: 31.2MB/s
Download speed from Softlayer, Singapore: 1.40MB/s
Download speed from Softlayer, Seattle, WA: 5.11MB/s
Download speed from Softlayer, San Jose, CA: 4.62MB/s
Download speed from Softlayer, Washington, DC: 31.6MB/s
I/O speed : 417 MB/s

France benchmark

CPU model : Virtual CPU e7da7129d3ee
Number of cores : 1
CPU frequency : 2399.996 MHz
Total amount of ram : 748 MB
Total amount of swap : 0 MB
System uptime : 32 min,
Download speed from CacheFly: 20.9MB/s
Download speed from Coloat, Atlanta GA: 1.86MB/s
Download speed from Softlayer, Dallas, TX: 3.02MB/s
Download speed from Linode, Tokyo, JP: 1.20MB/s
Download speed from i3d.net, Rotterdam, NL: 12.9MB/s
Download speed from Leaseweb, Haarlem, NL: 3.73MB/s
Download speed from Softlayer, Singapore: 1.39MB/s
Download speed from Softlayer, Seattle, WA: 2.48MB/s
Download speed from Softlayer, San Jose, CA: 2.28MB/s
Download speed from Softlayer, Washington, DC: 3.86MB/s
I/O speed : 440 MB/s

Japan benchmark

CPU model : Virtual CPU e7da7129d3ee
Number of cores : 1
CPU frequency : 2399.996 MHz
Total amount of ram : 748 MB
Total amount of swap : 0 MB
System uptime : 35 min,
Download speed from CacheFly: 229MB/s
Download speed from Coloat, Atlanta GA: 1.79MB/s
Download speed from Softlayer, Dallas, TX: 2.46MB/s
Download speed from Linode, Tokyo, JP: 100MB/s
Download speed from i3d.net, Rotterdam, NL: 993KB/s
Download speed from Leaseweb, Haarlem, NL: 3.08MB/s
Download speed from Softlayer, Singapore: 4.52MB/s
Download speed from Softlayer, Seattle, WA: 3.52MB/s
Download speed from Softlayer, San Jose, CA: 3.29MB/s
Download speed from Softlayer, Washington, DC: 2.14MB/s
I/O speed : 197 MB/s

Support

I have never needed support from Vultr so I can’t comment on this, but plenty of people are happy with them.

Conclusion

Vultr is a great host, with plenty of features, an amazing choice of locations, and the performance is great. If you want to run something that’s CPU intensive (virtual desktop, game server, etc.) or Windows, then this is a great option.

Ramnode coupon code (10% off) – March 2017

About Ramnode

Ramnode is an extremely high quality host which offers both OpenVZ and KVM VPSes. Their plans start at just $15/year for a 128MB VPS with either 12GB storage space (SSD) or 80GB (SSD cached)

They have 4 locations in the US (New York City, Atlanta, Seattle, Los Angeles) and an EU location (Netherlands) as well.

I have two VPSes with them myself, one is just a development box (SSD) and the other is a backup box (SSD-cached) which as of right now has 206 days uptime.

Before signing up, I have written a review of Ramnode (including speedtests and benchmarks) which you can read here

Coupon

Right now, Ramnode a coupon code which can be used on any VPS (both OpenVZ and KVM)

The codes even work for existing customers!

Click here to visit Ramnode and use the coupon code SSD10 for 10% off any new VPS!

How to set up a VPS to host websites without a control panel

About VPS hosting and this guide

When it comes to hosting a website, there are three options. Shared hosting, VPS hosting and dedicated server hosting.

Shared hosting is the most basic and fine for very small low-traffic websites, but sometimes you want that extra bit of control over your website without having to pay the cost of renting a dedicated server. This is where a VPS (virtual private server) comes in. You get full root access to a virtual machine, which is fully isolated and therefore acts like a dedicated server, but is much cheaper!

Since the price of hosting has come down in price so much lately, if you don’t mind putting in a little effort, it’s often more cost-effective to get a VPS than shared hosting.

This guide will go through the steps of setting up and securing your VPS, as well as installing a webserver (Lighttpd), a database server (MySQL) and some other things required to run most websites (like PHP and phpMyAdmin).

Purchasing a VPS and setting up PuTTY

One of the best and most highly recommended VPS hosts is Ramnode. They offer VPS hosting for as low as $15/year (including 128MB RAM, 64MB VSwap, 12GB pure SSD disk space and 500GB bandwidth). For further information you can read my post on Why Ramnode is the best VPS provider. I also recommend Vultr if you’re looking for more locations worldwide!

This guide will assume you’re using a VPS from Ramnode running Debian, but it should work with any VPS running Debian or Ubuntu.

The first thing you need to do is purchase your VPS. It should ask you to choose an operating system, so Once you’ve done this, you should receive an email from your host with your server’s IP and root password.

If you’re using Windows, you will also need to download PuTTY (choose putty.exe from the list). If you’re using Linux or OSX on your local machine you don’t need this.

Once you’ve downloaded PuTTY, open it up, and in the Host Name box, enter your server IP. Then, under Connection on the left click Data and in the Auto-login username box type in root.

Then, click Session on the left and click Default Settings. Then click Save (so you don’t have to enter this every time) and finally click OK.

If you use Linux or OSX, instead of using PuTTY, just open up a terminal and enter ssh [email protected] (where xxx.xxx.xxx.xxx is your server’s IP address).

You should now have a screen which says:

Using username “root”.
[email protected]’s password:

Just enter the root password you were given and press enter. You should now see the following:

root@yourserverhostname:~#

Setting up the VPS

Once I’ve logged into a recently set up VPS, I always like to change the password before anything else.

Enter passwd and press enter.

Enter a new password, press enter and then enter your new password again to confirm it. Of course, next time you log in (using the steps above) you’ll need to use this password.

The next thing we’re going to do is remove some applications we don’t need or want, and update everything else.

Type the following commands into PuTTY/terminal and press enter.

apt-get update && apt-get remove --purge -y apache2* bind9* sendmail* samba* && apt-get -y autoremove && apt-get -y upgrade

Sometimes, sendmail doesn’t get fully removed, so once that has finished, press the up arrow on your keyboard (which repeats the previous command, without submitting it) and then press enter and let it run again.

Now it’s time to start installing things, so enter the following command and press enter. During this stage, you’ll be prompted for a MySQL password.

apt-get install -y lighttpd php5-cgi mysql-server php5-mysql fail2ban unattended-upgrades

Once this has been completed, enter the following command and press enter to enable PHP and restart the webserver

lighty-enable-mod fastcgi-php && /etc/init.d/lighttpd restart

Next, we need to replace the MySQL config file with one which uses less memory and then restart MySQL. Enter the following command and press enter

mv /etc/mysql/my.cnf /etc/mysql/my.cnf.bk && cp /usr/share/doc/mysql-server-5.5/examples/my-small.cnf /etc/mysql/my.cnf && /etc/init.d/mysql restart

Installing phpMyAdmin

If you’re using a PHP/MySQL script, you’ll probably want phpMyAdmin to help you set up the database. This is easily done. First, enter the following command and press enter

cd /var/www/

Now go to the phpMyAdmin download page and find the latest version ending in .tar.gz. Right click on the link and choose copy link address. The end of the link will have something like #!md5!79f36ee849381ad93c71f7cbbd5ef2a9 so remove this, including the hash, and then add the link into the command below where specified (including the quotes) and press enter

wget --no-check-certificate https://your-link-here.com/file.tar.gz

It will then download a .tar.gz file to your server. It will be something like phpMyAdmin-4.4.9-english.tar.gz. Now we will extract the files and remove this file. Enter the following command, replacing yourfile.tar.gz with the actual name of your .tar.gz file and press enter.

tar -zxvf yourfile.tar.gz && rm yourfile.tar.gz

You will then be left with a folder named something similar to phpMyAdmin-4.4.9-english depending on the version you downloaded. You can now access this by going to the following link where xxx.xxx.xxx.xxx is your server IP and foldername is the name of the phpmyadmin folder. I would advise renaming this to something of your choosing, just to avoid bots which actively look for phpMyAdmin installations.

http://xxx.xxx.xxx.xxx/foldename

Keeping everything updated and setting up your sites

That’s it! You now have a fully working VPS with a webserver (lighttpd) and a database server (MySQL) along with PHP  and phpMyAdmin installed. We also installed fail2ban to help protect us against bots trying to guess our SSH password, and unattended-upgrades to install critical updates automatically.

However, you should also log into your VPS often and run the following command to make sure everything is updated

apt-get update && apt-get -y upgrade

To install your sites/scripts (WordPress, phpBB, etc.) you need to move them into the /var/www/ directory. This is the root folder for lighttpd and the files/folders in here are what you see when accessing the following (where xxx.xxx.xxx.xxx is your server IP)

http://xxx.xxx.xxx.xxx/fileorfolder

Finished

That’s it! Now you can actually set up your websites. If you have any issues please leave a comment below.

Thanks for reading.

Why Ramnode is the best VPS provider (a Ramnode review)

About Ramnode

Whenever someone asks me to recommend a VPS host, my first recommendation is nearly always Ramnode.

They offer both OpenVZ and KVM plans, and have 5 different locations. 4 in the US (New York City, Atlanta, Seattle, Los Angeles) and an EU location (Netherlands).

The main reasons I (and many others) recommend Ramnode is because the performance and support are simply unbeatable, especially at the prices they offer.

Note: Ramnode currently has a 15% off coupon which you can see here

Speed Tests

Here are some speedtests from Ramnode’s 128MB OpenVZ SSD plan located in the Netherlands. Naturally, the further away the speedtest server, the lower the results are going to be. So if your target traffic was in the US, you would of course be better off choosing from on of their US locations.

Ramnode Speedtest Netherlands

Speedtest to Amsterdam, Netherlands

Ramnode Speedtest England

Speedtest to London, England

Ramnode Speedtest Italy

Speedtest to Milan, Italy

Ramnode Speedtest USA

Speedtest to New York, America

Ramnode Speedtest India

Speedtest to New Delhi, India

FreeVPS Benchmark

CPU model : Intel(R) Xeon(R) CPU E3-1230 V2 @ 3.30GHz
Number of cores : 1
CPU frequency : 3300.209 MHz
Total amount of ram : 128 MB
Total amount of swap : 64 MB
System uptime : 59 days, 18:03,
Download speed from CacheFly: 85.0MB/s
Download speed from Coloat, Atlanta GA: 13.9MB/s
Download speed from Softlayer, Dallas, TX: 25.0MB/s
Download speed from Linode, Tokyo, JP: 8.29MB/s
Download speed from i3d.net, Rotterdam, NL: 108MB/s
Download speed from Leaseweb, Haarlem, NL: 92.5MB/s
Download speed from Softlayer, Singapore: 10.7MB/s
Download speed from Softlayer, Seattle, WA: 23.5MB/s
Download speed from Softlayer, San Jose, CA: 22.0MB/s
Download speed from Softlayer, Washington, DC: 36.4MB/s
I/O speed : 638 MB/s

Support

Another area where Ramnode shows why it’s number one is the support times. The support are extremely quick and very helpful. Here is a low-priority ticket from when I simply wanted to get my VPS changed from an SSD-cached plan to an SSD plan.

Ramnode Support Response Times

Ramnode Support Response Tmes

You can see how even just for a low-priority request (not even an incident) they reply extremely quickly and the request is completed within 8 minutes of my confirmation.

Conclusion

As you can see above, even with their cheapest $15/year plan the performance is amazing. And with Ramnode, you can expect this kind of performance on every single node, in every single location.

There’s also no need to just take my word for it, have a look on Google, WebHostingTalk, LowEndTalk, etc. and you will see nothing but praise for Ramnode.

Well done Nick + staff!

How to install Windows 10, Windows 7, 8, Windows Server 2008, 2012 on Vultr as a custom ISO

Note: I want this guide to be simple, while also allowing anyone to follow it, regardless of their technical skills. If you have any issues, or any ideas that could improve this guide for yourself and others, please leave a comment!

Update: I have a ready made Server 2008 ISO available for download

You can download a ready made ISO of Windows Server 2008 from here

Note: This is NOT activated or cracked in any way. It is a 180 day trial version downloaded directly from Microsoft with VirtIO drivers integrated (downloaded from the Fedora Project), just like this guide shows you how to do.

If you don’t have a Vultr account already, please consider signing up with this link to help support me and my future projects 🙂

Thanks

About Vultr and this guide

Vultr is a Digital Ocean competitor which offers cheap, KVM based VPSes across Europe, Asia and North America.

One major advantage Vultr has over Digital Ocean is the fact they allow custom ISOs, so we can use Vultr as a cheap Windows VPS in almost any part of the World. However, with Windows you need to integrate VirtIO drivers into the ISO before you can install it. In this guide I will explain how to do this easily. I am going to assume that you are able to access/download an original Windows ISO.

The first thing you will need to do is sign up to Vultr. You can sign up by using this link. You can also check my post on Vultr coupons to get some free credit.

Next, we’re going to create integrate the VirtIO drivers into the ISO, and upload it to Vultr. The ISO will be about 3GB, so if you have a slow internet connection it would take a long time to upload. To speed up the process and make it easier, we can integrate the drivers on a Vultr instance, and take advantage of the gbit connection for just a few cents (as we only need the instance for an hour or two).

Note: If you have a fast internet connection, you can integrate the drivers on your own computer and skip this next part.

Spinning up a Vultr instance (if you have a slow internet connection)

Once you have created a Vultr account and made a deposit, go to the Deploy tab and choose a location close to you, then for the Operating System choose Windows 2012 R2 x64) and click Place Order.

Note: this will show up as being more expensive due to the license costs, however since we only need it for a couple of hours, it will only cost around $0.10.

Once the VPS is setup (this will take a minute or so) you can click Manage and then View Console to finish setting up Windows.

When this is complete, you will have access to a Windows desktop (note: the default password wlll be shown in the Vultr control panel) with a 1gbit connection. The next thing to do is enable downloads, so you can download the original ISO.

Once Windows has finished installing, and you are logged in, open Internet Explorer then go to Settings (the little cog top right) then Internet Options then Security then Internet then click Custom Level.

Then, in the list find File Downloads and click Enable. Then find Allow Scripting and click Enable. Then click OK and restart Internet Explorer. You should now be able to properly browser the web and download files.

Once you’ve done this you can proceed to the next step.

Downloading, modifying and preparing the ISO

Now the explanation and boring parts are over with, here’s what you’re really looking for.

The first step is to get an original copy of the Windows OS you want (this guide is confirmed to work with Windows 10, Server 2008 and Windows 7). It should be a 64-bit (x64) ISO. You can either insert the DVD into your computer and copy the files over from My Computer, download an ISO from Microsoft (you will need a serial key for this) or if you just want a trial version, you can find it on a torrent site (note: make sure it’s a reputable upload from a reputable user on a reputable site).

If you have a disc, simply copy the files into a folder on the desktop called Windows. If you have an ISO, then you can install WinRAR and extract the files from the ISO (extract them into a folder and rename the folder to Windows).

Next, download the VirtIO ISO from here. Once the ISO has downloaded, extract the files using WinRAR into a folder called VirtIO and copy the VirtIO folder into the Windows folder.

Building the ISO

Now you have done most of the hard work, it’s time to build the ISO and upload it to Vultr. To build the ISO, we will use ImgBurn so download and install it from here.

Once it’s installed, open it up and choose Create image file from files/folders.

Then, to the right of Source click on the folder icon with a magnifying glass and navigate to your Windows folder (the one you extracted the ISO to).

Click the same icon next to Destination and choose a location for the ISO. Call it something like WinVirtIO.iso

Then click on the Options tab and set File System to UDF.

Then click on the Labels tab and next to UDF type WindowsVirtIO.

Then click on the Advanced tab and click Bootable Disc.

Enable the following options

  • Emulation Type: None (Custom)
  • Boot Image: (click the folder icon, navigate to your Windows ISO folder and choose etfsboot.com in the boot folder.
  • Developer ID: Microsoft Corporation
  • Sectors To Load: 8

Then click Build (the image with the folder and an arrow pointing to a DVD) and wait for it to finish.

Uploading the ISO to Vultr

Now you have the ISO, download Mongoose Web Server from here and place the .exe file in the same folder as your new ISO (WinVirtIO.iso). Once you’ve done that, double-click on it and it will take you to a webpage with a list of files on. Your ISO should be in the list.

After that, go to the Windows Control Panel then click Windows Firewall then Allow programs to communicate through Windows Firewall then Allow another program then Browse then navigated to mongoose.exe and click Add.

Now, from your local machine, access http://<YOUR VULTR IP>:8080 and see if it loads your files. If you can see your ISO, it’s working.

Now, log into the Vultr control panel, go to My Servers, then ISOs, then in the Remote URL box enter the following:

http://<YOUR VULTR IP>:8080/WinVirtIO.iso and click Upload.

Installing the custom ISO

Once the ISO has finished installing, you’re ready to deploy an instance. Go to the Deploy tab, choose your location, then for Operating System choose Custom and select your ISO from the dropdown menu.

After about a minute, click Manage then View Console and wait for the installation screen. Select your language, and click OK.

Latest VirtIO

When it asks what type of installation you want, choose Custom (advanced) then click Load Driver, then Browse and navigate to your the VirtIO folder (on the DVD), then expand viostor and then WIN7 (or WIN8.1 for Windows 10 and WIN8 for Windows 8, Server 2012) and click AMD64 then click OK.

After that, select the Red Hat VirtIO driver from the list and click Next. Once Windows has been installed, you will need to go into the device manager (type devmgmt.msc in the search bar next to the Windows button on the taskbar and press enter).

Then right click on the ethernet adapter (with an exclamation mark next to it) go to update driver software then Browse then navigate to the Windows DVD (usually D:), then your virtio folder, then NetKVM then WIN7 (or WIN8 for Windows Windows 10, Windows 8, Server 2012) and click AMD64 then click OK.

Older VirtIO

When it asks what type of installation you want, choose Custom (advanced) then click Load Driver, then Browse and navigate to your VirtIO folder (on the DVD), then expand WIN7 (or WIN8 for Windows Windows 10, Windows 8, Server 2012) and click AMD64 then click OK.

After that, select both Red Hat VirtIO drivers from the list (hold Ctrl down on the keyboard while you click on them) and click Next.

After that, continue the Windows setup like normal.

Finished

That’s it, you’re all done. Enjoy your cheap Windows VPS, and if you have any issues please leave a comment below.

Thanks for reading.