Difference between revisions of "Cluebase VMS Installation manual (Windows)"

From vCloud.ai Documentation
Jump to navigation Jump to search
(Created page with " == Preparation == Download cluebase.zip from https://vcloud.ai/downloads and unzip the file. Make sure CPU virtualization is enabled in BIOS. Ensure you are running PowerShell with Administrator rights. Run all scripts from the installation directory. == Unlock Script Execution (if restricted) ==      Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser -Force      Get-ChildItem -Path . | Unblock-File    *As an alternative you can append "...")
 
 
Line 10: Line 10:


== Unlock Script Execution (if restricted) ==
== Unlock Script Execution (if restricted) ==
     Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser -Force
     Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser -Force


     Get-ChildItem -Path . | Unblock-File
     Get-ChildItem -Path . | Unblock-File
 
    As an alternative you can append "powershell.exe -executionpolicy bypass -file" before each script path:
   *As an alternative you can append "powershell.exe -executionpolicy bypass -file" before each script path:


     powershell.exe -executionpolicy bypass -file .\SCRIPT_NAME.ps1
     powershell.exe -executionpolicy bypass -file .\SCRIPT_NAME.ps1
     


== Run WSL installation Script ==
== Run WSL installation Script ==
    .\install-wsl.ps1
    .\install-wsl.ps1


== Run Docker installation Script   ==
== Run Docker installation Script   ==
    .\install-docker.ps1
    .\install-docker.ps1


== Configure Docker Settings in Docker Desktop ==
== Configure Docker Settings in Docker Desktop ==
Line 38: Line 35:


== Run VMS installation Script ==
== Run VMS installation Script ==
    .\install-vms.ps1
    .\install-vms.ps1


== Additional notes ==
== Additional notes ==

Latest revision as of 08:57, 17 April 2025

Preparation

Download cluebase.zip from https://vcloud.ai/downloads and unzip the file.

Make sure CPU virtualization is enabled in BIOS.

Ensure you are running PowerShell with Administrator rights.

Run all scripts from the installation directory.

Unlock Script Execution (if restricted)

     Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser -Force
     Get-ChildItem -Path . | Unblock-File

    As an alternative you can append "powershell.exe -executionpolicy bypass -file" before each script path:

     powershell.exe -executionpolicy bypass -file .\SCRIPT_NAME.ps1

Run WSL installation Script

    .\install-wsl.ps1

Run Docker installation Script  

    .\install-docker.ps1

Configure Docker Settings in Docker Desktop

 - Go to `Settings` -> `Resources` -> `Network` and enable the "Host Networking" option.

 - Go to `Settings` -> `Resources` -> `WSL Integration` and select the "Ubuntu-24.04" option.

 - Go to `Settings` -> `General` and enable the "Start Docker Desktop when you sign in to your computer" option.

- Apply all configurations and restart Docker Desktop.

- Close the current PowerShell window and reopen it.

Run VMS installation Script

    .\install-vms.ps1

Additional notes

- if you changed timezone on Windows, run ./newTZ.ps1 and restart VMS

- if you changed network configuration on Windows, run ./newIP.ps1  and restart VMS

- if you added/removed storage on Windows, run ./newDisks.ps1 and restart VMS