Skip to content

Instantly share code, notes, and snippets.

View p10tyr's full-sized avatar

Piotr Kula p10tyr

View GitHub Profile
@p10tyr
p10tyr / ovh.zfs.ways.md
Last active April 5, 2024 12:18
OVH Linux Debian / Ubuntu with ZFS - Template of Bring your own Linux

EASY Option

As of 04/2024 it looks like under Install OS > Custom > Debian 12 when you click change partitions you can select ZFS for boot and data

A bit harder

Ubuntu does not list ZFS in OVH WebGUI but you bring your own Linux This way OVH can install some of its management tools too (also configures IPv6)

OV BYOL requires a QCOW image (Quemu style container) Ubuntu calls these "Cloud images" and you download it from here to your local machine The default cloud image does not contain a file required by OVH that is for custom things only

Write-Host 'You should have Winget Installed - https://www.microsoft.com/en-gb/p/app-installer/9nblggh4nns1'
winget --version
pause
winget install Microsoft.WindowsTerminal --silent
winget install --id Microsoft.Powershell --source winget --silent
winget install Git.Git --silent
#install choco
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))