diff --git a/web/app/docs/post-install/basic-settings/page.tsx b/web/app/docs/post-install/basic-settings/page.tsx index 0450bd9..77c7750 100644 --- a/web/app/docs/post-install/basic-settings/page.tsx +++ b/web/app/docs/post-install/basic-settings/page.tsx @@ -5,7 +5,28 @@ export const metadata: Metadata = { title: "ProxMenux Post-Install: Basic Settings", description: "Detailed guide to the Basic Settings category in the ProxMenux post-install script for Proxmox VE optimization.", - // ... (rest of the metadata remains the same) + openGraph: { + title: "ProxMenux Post-Install: Basic Settings", + description: + "Detailed guide to the Basic Settings category in the ProxMenux post-install script for Proxmox VE optimization.", + type: "article", + url: "https://macrimi.github.io/ProxMenux/docs/post-install/basic-settings", + images: [ + { + url: "https://macrimi.github.io/ProxMenux/basic-settings-image.png", + width: 1200, + height: 630, + alt: "ProxMenux Post-Install Basic Settings", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "ProxMenux Post-Install: Basic Settings", + description: + "Detailed guide to the Basic Settings category in the ProxMenux post-install script for Proxmox VE optimization.", + images: ["https://macrimi.github.io/ProxMenux/basic-settings-image.png"], + }, } export default function BasicSettingsPage() { @@ -26,7 +47,7 @@ echo 'Acquire::Languages "none";' | sudo tee /etc/apt/apt.conf.d/99-disable-tran IP=$(dig +short myip.opendns.com @resolver1.opendns.com) TIMEZONE=$(curl -s "https://ipapi.co/$IP/timezone") sudo timedatectl set-timezone "$TIMEZONE" -` + ` const updateUpgradeCode = ` # Disable enterprise repos @@ -66,13 +87,12 @@ sudo apt-get install -y zfsutils-linux proxmox-backup-restore-image chrony This optimization installs a set of common system utilities that are useful for system administration and troubleshooting.
-+ Why it's beneficial: Having these utilities pre-installed saves time when managing your + Proxmox VE system. They provide essential tools for monitoring system performance, managing files, and + troubleshooting issues, enhancing your ability to maintain and optimize your virtualization environment. +
+
{installUtilitiesCode}
@@ -84,11 +104,12 @@ sudo apt-get install -y zfsutils-linux proxmox-backup-restore-image chrony
This optimization configures APT to skip downloading additional language packages, which can save disk space
and speed up package operations.
- + Why it's beneficial: By skipping unnecessary language packages, you can reduce disk usage and + improve the speed of package management operations. This is particularly useful in server environments where + multiple language support is often not required. +
+
{skipLanguagesCode}
@@ -99,12 +120,12 @@ sudo apt-get install -y zfsutils-linux proxmox-backup-restore-image chrony
This optimization configures the system to automatically synchronize its time, ensuring accurate timekeeping.
-+ Why it's beneficial: Accurate timekeeping is crucial for many system operations, log + consistency, and proper functioning of time-sensitive applications. Automatic synchronization ensures your + Proxmox VE system maintains the correct time without manual intervention. +
+
{timeSyncCode}
@@ -116,30 +137,25 @@ sudo apt-get install -y zfsutils-linux proxmox-backup-restore-image chrony
This optimization updates the system's package lists, upgrades installed packages, and configures Proxmox
repositories.
- + Why it's beneficial: Keeping your system up-to-date is essential for security, stability, and + performance. This optimization ensures you have the latest patches and features, while also configuring the + correct repositories for Proxmox VE, enabling access to necessary updates and tools. +
+
{updateUpgradeCode}
- - When running the customizable_post_install.sh script, you'll be prompted to choose which Basic Settings - optimizations to apply. You can select all or pick specific ones based on your needs. -
-- For detailed information on each optimization and its impact, refer to the script comments or consult the - ProxMenux documentation. -
++ All of these optimizations are automatically applied when selected in the Basic Settings section of the + customizable_post_install.sh script. This automation ensures that these beneficial settings are applied + consistently and correctly. +
++ The Virtualization Settings category in the customizable_post_install.sh script focuses on optimizing your + Proxmox VE installation for better virtualization performance and compatibility. +
+ ++ This optimization enables IOMMU (Input-Output Memory Management Unit) and configures VFIO (Virtual Function + I/O) for PCI passthrough, allowing direct assignment of PCI devices to virtual machines. +
++ Why it's beneficial: IOMMU and VFIO support enables near-native performance for PCI devices + (like GPUs or network cards) in virtual machines, which is crucial for high-performance virtualization + scenarios. +
+
+ {enableVfioIommuCode}
+
+ + This optimization detects the virtualization environment and installs the appropriate guest agent for improved + integration between the host and guest systems. +
++ Why it's beneficial: Guest agents improve communication between the host and guest systems, + enabling features like graceful shutdown, file sharing, and better performance monitoring. This ensures + smoother operation and management of virtual machines. +
+
+ {installGuestAgentCode}
+
+ + This optimization installs and configures the KSM (Kernel Samepage Merging) control daemon, which helps + optimize memory usage in virtualized environments. +
++ Why it's beneficial: KSM allows the kernel to share identical memory pages between multiple + virtual machines, reducing overall memory usage. This can lead to better resource utilization, especially in + environments with many similar virtual machines. +
+
+ {configureKsmtunedCode}
+
+ + All of these optimizations are automatically applied when selected in the Virtualization section of the + customizable_post_install.sh script. This automation ensures that these beneficial settings are applied + consistently and correctly. +
+