mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 12:16:53 +00:00
61 lines
2.4 KiB
TypeScript
61 lines
2.4 KiB
TypeScript
|
import type { Metadata } from "next"
|
||
|
|
||
|
export const metadata: Metadata = {
|
||
|
title: "ProxMenux Post-Install: System Settings",
|
||
|
description:
|
||
|
"Detailed guide to the System Settings category in the ProxMenux post-install script for Proxmox VE optimization.",
|
||
|
openGraph: {
|
||
|
title: "ProxMenux Post-Install: System Settings",
|
||
|
description:
|
||
|
"Detailed guide to the System Settings category in the ProxMenux post-install script for Proxmox VE optimization.",
|
||
|
type: "article",
|
||
|
url: "https://macrimi.github.io/ProxMenux/docs/post-install/system",
|
||
|
images: [
|
||
|
{
|
||
|
url: "https://macrimi.github.io/ProxMenux/system-settings-image.png",
|
||
|
width: 1200,
|
||
|
height: 630,
|
||
|
alt: "ProxMenux Post-Install System Settings",
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
twitter: {
|
||
|
card: "summary_large_image",
|
||
|
title: "ProxMenux Post-Install: System Settings",
|
||
|
description:
|
||
|
"Detailed guide to the System Settings category in the ProxMenux post-install script for Proxmox VE optimization.",
|
||
|
images: ["https://macrimi.github.io/ProxMenux/system-settings-image.png"],
|
||
|
},
|
||
|
}
|
||
|
|
||
|
export default function SystemSettingsPage() {
|
||
|
return (
|
||
|
<div className="container mx-auto px-4 py-8">
|
||
|
<h1 className="text-3xl font-bold mb-6">System Settings</h1>
|
||
|
<p className="mb-4">
|
||
|
The System Settings category in the customizable_post_install.sh script focuses on core system configurations
|
||
|
and optimizations for your Proxmox VE installation.
|
||
|
</p>
|
||
|
<h2 className="text-2xl font-semibold mt-6 mb-4">Available Optimizations</h2>
|
||
|
<ul className="list-disc pl-5 mb-6">
|
||
|
<li className="mb-2">
|
||
|
<strong>Kernel Parameters:</strong> Optimize kernel settings for improved performance and stability.
|
||
|
</li>
|
||
|
<li className="mb-2">
|
||
|
<strong>System Limits:</strong> Adjust system limits for better resource management.
|
||
|
</li>
|
||
|
<li className="mb-2">
|
||
|
<strong>Scheduled Tasks:</strong> Set up important system maintenance tasks.
|
||
|
</li>
|
||
|
{/* Add more list items for each optimization in this category */}
|
||
|
</ul>
|
||
|
<h2 className="text-2xl font-semibold mt-6 mb-4">Usage</h2>
|
||
|
<p className="mb-4">
|
||
|
When running the customizable_post_install.sh script, you'll be prompted to choose which System Settings
|
||
|
optimizations to apply. Select the ones that best suit your Proxmox VE environment and requirements.
|
||
|
</p>
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
|