Some checks failed
Test / test (push) Has been cancelled
Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
519 B
PowerShell
11 lines
519 B
PowerShell
# Optional ZFS on Linux Setup for NAS Workloads
|
|
|
|
Write-Host "=========================================" -ForegroundColor Cyan
|
|
Write-Host "ZFS on Linux Setup (Optional)" -ForegroundColor Cyan
|
|
Write-Host "=========================================" -ForegroundColor Cyan
|
|
|
|
Write-Host "`nZFS setup for NAS workloads (optional)." -ForegroundColor Yellow
|
|
Write-Host "Install ZFS on Linux: apt install zfsutils-linux" -ForegroundColor White
|
|
Write-Host "Create pool: zpool create tank /dev/sdX /dev/sdY" -ForegroundColor White
|
|
|