Skip to content

Server WSL 2 Install

High-Speed Server Install On Windows 10 & 11

WSL 2 is a bare-metal and fast way to run Row64 Server on Windows, primarily because it uses hardware virtualization. It also offers the best integration between Windows and Linux.

While WSL 2 offers better performance, if you are looking for the simplest Windows install, please review our documentation on setting up VirtualBox on Windows:
VirtualBox Instructions

Turn On VM Features

In the Windows Search bar (along the task bar), type: Turn Windows features on or off

Check the box: Virtual Machine Platform

Verify Virtualization is Enabled in BIOS

Open Windows Task Manager. In the Performance tab, when the CPU category is selected, see if virtualization is enabled.

If virtualization is not enabled, follow the instructions from the article to enable it:
https://support.microsoft.com/en-us/windows/enable-virtualization-on-windows-c5578302-6e43-4b4b-a449-8ced115f58e1

Open Powershell as Administrator

Search for PowerShell in the Windows Search bar. Before opening PowerShell, right-click the app in the search results and select: Run as administrator.

Install WSL in PowerShell

Use the following command in PowerShell:

wsl --install

After the installation completes, reboot Windows.

Run Ubuntu

The Ubuntu terminal window might automatically open after Windows reboots.

If you need to manually open Ubuntu, search for "Ubuntu" in the Windows Search bar.

Set Up Ubuntu

The Ubuntu terminal will ask you to set up a user. Use the following credentials:

Username: row64
Password: temp7

Update Ubuntu

Check for Ubuntu updates by using the following commands in the terminal:

sudo apt -y update
sudo apt -y upgrade

Install Row64 Server

Go into your home directory:

cd ~

Download the installer:

wget -O row64server-3.5_amd64.deb "https://app.row64.com/Install/V3_5/UbuntuNC/row64server-3.5_amd64.deb"

Run the Installer:

sudo dpkg -i row64server-3.5_amd64.deb

Next, install connectors with Apache Web Server.
From the terminal, run:

sudo python3 /opt/row64server/install/Connect_Ubuntu.py

NOTE: To simplify installation, this .py will install Apache for you.
If you want to install them yourself, you can modify this .py

Update Ubuntu Folder Permissions

After installing Row64 Server, use the following command in the Ubuntu terminal to check the folder permissions for the ramdb directory:

cd /var/www/ramdb/
ls -al

If needed, update the folder permissions for the ramdb directory:

sudo chmod -R 777

After updating the folder permissions, you can verify the changes:

ls -al

Run Test Examples in Firefox

Verify that the installation and setup was successful by running test examples. Refer to the corresponding documentation on how to do this:
Running Test Examples

It works!

Using Windows Explorer

WSL enables you to use Windows Explorer to brows Linux files. As an example, in the PowerShell terminal (inside Ubuntu), use the following commands:

cd /var/www
Explorer.exe .