This commit is contained in:
MacRimi
2025-02-16 16:49:04 +01:00
parent 299051ec2c
commit ae11dc6f44
6 changed files with 182 additions and 31 deletions

View File

@@ -0,0 +1,20 @@
import type { Metadata } from "next"
export const metadata: Metadata = {
title: "Coral TPU to an LXC | ProxMenux Documentation",
description: "Learn how to add a Coral TPU to an LXC container in Proxmox VE using ProxMenux.",
}
export default function CoralTPULXC() {
return (
<div className="max-w-3xl mx-auto">
<h1 className="text-3xl font-bold mb-6">Coral TPU to an LXC</h1>
<p className="mb-4">
This guide will walk you through the process of adding a Coral TPU to an LXC container in Proxmox VE using
ProxMenux.
</p>
{/* Add more content here */}
</div>
)
}

View File

@@ -0,0 +1,20 @@
import type { Metadata } from "next"
export const metadata: Metadata = {
title: "HW iGPU acceleration to an LXC | ProxMenux Documentation",
description: "Learn how to enable hardware iGPU acceleration for an LXC container in Proxmox VE using ProxMenux.",
}
export default function IGPUAccelerationLXC() {
return (
<div className="max-w-3xl mx-auto">
<h1 className="text-3xl font-bold mb-6">HW iGPU acceleration to an LXC</h1>
<p className="mb-4">
This guide will walk you through the process of enabling hardware iGPU acceleration for an LXC container in
Proxmox VE using ProxMenux.
</p>
{/* Add more content here */}
</div>
)
}

View File

@@ -0,0 +1,19 @@
import type { Metadata } from "next"
export const metadata: Metadata = {
title: "Install Coral TPU on the Host | ProxMenux Documentation",
description: "Learn how to install a Coral TPU on the Proxmox VE host using ProxMenux.",
}
export default function InstallCoralTPUHost() {
return (
<div className="max-w-3xl mx-auto">
<h1 className="text-3xl font-bold mb-6">Install Coral TPU on the Host</h1>
<p className="mb-4">
This guide will walk you through the process of installing a Coral TPU on your Proxmox VE host using ProxMenux.
</p>
{/* Add more content here */}
</div>
)
}

View File

@@ -0,0 +1,20 @@
import type { Metadata } from "next"
export const metadata: Metadata = {
title: "Disk Passthrough to a VM | ProxMenux Documentation",
description: "Learn how to set up disk passthrough to a virtual machine in Proxmox VE using ProxMenux.",
}
export default function DiskPassthroughVM() {
return (
<div className="max-w-3xl mx-auto">
<h1 className="text-3xl font-bold mb-6">Disk Passthrough to a VM</h1>
<p className="mb-4">
This guide will walk you through the process of setting up disk passthrough to a virtual machine in Proxmox VE
using ProxMenux.
</p>
{/* Add more content here */}
</div>
)
}

View File

@@ -0,0 +1,20 @@
import type { Metadata } from "next"
export const metadata: Metadata = {
title: "Import Disk Image to a VM | ProxMenux Documentation",
description: "Learn how to import a disk image to a virtual machine in Proxmox VE using ProxMenux.",
}
export default function ImportDiskImageVM() {
return (
<div className="max-w-3xl mx-auto">
<h1 className="text-3xl font-bold mb-6">Import Disk Image to a VM</h1>
<p className="mb-4">
This guide will walk you through the process of importing a disk image to a virtual machine in Proxmox VE using
ProxMenux.
</p>
{/* Add more content here */}
</div>
)
}