import type { Metadata } from "next" import { Server } from "lucide-react" import CopyableCode from "@/components/CopyableCode" 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 (

System Settings

The System Settings category in the customizable_post_install.sh script focuses on core system configurations and optimizations for your Proxmox VE installation. These settings improve performance, stability, and resource management.

Available Optimizations

Enable Fast Reboots

This optimization enables kexec, allowing the system to reboot quickly without full hardware reinitialization.

To apply this setting manually, run:

> ~/.bash_profile`} />

Configure Kernel Panic Behavior

Ensures the system reboots automatically after a kernel panic to reduce downtime.

To apply this setting manually, run:

Increase System Limits

Optimizes system resource management by increasing user and file limits.

To apply this setting manually, run:

Optimize Journald

Configures system logs to limit excessive disk usage and improve performance.

To apply this setting manually, run:

Automatic Application

All of these optimizations are automatically applied when selected in the System section of the customizable_post_install.sh script. This ensures that beneficial settings are consistently applied, improving efficiency and reducing manual setup time.

); }