mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 12:16:53 +00:00
Update
This commit is contained in:
parent
5ab1634f10
commit
32feea6a31
@ -31,6 +31,18 @@ export const metadata: Metadata = {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
import type { Metadata } from "next"
|
||||||
|
import { Settings } from "lucide-react"
|
||||||
|
import CopyableCode from "@/components/CopyableCode"
|
||||||
|
import { Steps, Step } from "@/components/ui/steps"
|
||||||
|
|
||||||
|
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)
|
||||||
|
}
|
||||||
|
|
||||||
export default function BasicSettingsPage() {
|
export default function BasicSettingsPage() {
|
||||||
return (
|
return (
|
||||||
<div className="container mx-auto px-4 py-8">
|
<div className="container mx-auto px-4 py-8">
|
||||||
@ -47,6 +59,7 @@ export default function BasicSettingsPage() {
|
|||||||
|
|
||||||
<Steps>
|
<Steps>
|
||||||
<Step title="Install Common System Utilities">
|
<Step title="Install Common System Utilities">
|
||||||
|
</Step>
|
||||||
<section className="mb-8">
|
<section className="mb-8">
|
||||||
<p className="mb-4">
|
<p className="mb-4">
|
||||||
This optimization installs a set of common system utilities that are useful for system administration and
|
This optimization installs a set of common system utilities that are useful for system administration and
|
||||||
@ -162,9 +175,10 @@ sudo apt-get install -y libguestfs-tools
|
|||||||
`}
|
`}
|
||||||
/>
|
/>
|
||||||
</section>
|
</section>
|
||||||
</Step>
|
|
||||||
|
|
||||||
<Step title="Skip Downloading Additional Languages">
|
<Step title="Skip Downloading Additional Languages">
|
||||||
|
</Step>
|
||||||
<section className="mb-8">
|
<section className="mb-8">
|
||||||
<p className="mb-4">
|
<p className="mb-4">
|
||||||
This optimization configures APT to skip downloading additional language packages, which can save disk
|
This optimization configures APT to skip downloading additional language packages, which can save disk
|
||||||
@ -183,9 +197,10 @@ echo 'Acquire::Languages "none";' | sudo tee /etc/apt/apt.conf.d/99-disable-tran
|
|||||||
`}
|
`}
|
||||||
/>
|
/>
|
||||||
</section>
|
</section>
|
||||||
</Step>
|
|
||||||
|
|
||||||
<Step title="Synchronize Time Automatically">
|
<Step title="Synchronize Time Automatically">
|
||||||
|
</Step>
|
||||||
<section className="mb-8">
|
<section className="mb-8">
|
||||||
<p className="mb-4">
|
<p className="mb-4">
|
||||||
This optimization configures the system to automatically synchronize its time, ensuring accurate
|
This optimization configures the system to automatically synchronize its time, ensuring accurate
|
||||||
@ -206,9 +221,10 @@ sudo timedatectl set-timezone "$TIMEZONE"
|
|||||||
`}
|
`}
|
||||||
/>
|
/>
|
||||||
</section>
|
</section>
|
||||||
</Step>
|
|
||||||
|
|
||||||
<Step title="Update and Upgrade System">
|
<Step title="Update and Upgrade System">
|
||||||
|
</Step>
|
||||||
<section className="mb-8">
|
<section className="mb-8">
|
||||||
<p className="mb-4">
|
<p className="mb-4">
|
||||||
This optimization updates the system's package lists, upgrades installed packages, and configures Proxmox
|
This optimization updates the system's package lists, upgrades installed packages, and configures Proxmox
|
||||||
@ -261,7 +277,7 @@ sudo apt-get install -y zfsutils-linux proxmox-backup-restore-image chrony
|
|||||||
`}
|
`}
|
||||||
/>
|
/>
|
||||||
</section>
|
</section>
|
||||||
</Step>
|
|
||||||
</Steps>
|
</Steps>
|
||||||
|
|
||||||
<section className="mt-12 p-4 bg-blue-100 rounded-md">
|
<section className="mt-12 p-4 bg-blue-100 rounded-md">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user