This commit is contained in:
MacRimi 2025-03-04 20:56:25 +01:00
parent bf0a422997
commit 06b78965f1
2 changed files with 16 additions and 9 deletions

View File

@ -2,6 +2,7 @@
import CopyableCode from "@/components/CopyableCode"
import Image from "next/image"
import Link from "next/link"
export default function InstallationPage() {
const installationCode = `bash -c \"$(wget -qLO - https://raw.githubusercontent.com/MacRimi/ProxMenux/main/install_proxmenux.sh)\"`
@ -37,6 +38,19 @@ export default function InstallationPage() {
<CopyableCode code="menu" />
</div>
<h2 className="text-xl font-semibold mt-6 mb-2">First Execution and Language Selection</h2>
<p className="mb-4">
On the first execution, you will be prompted to define the language for ProxMenux. The recommended language is English. Translations are generated automatically using a predefined translation package and Google Translate. Automatic translations may contain errors, so English is the preferred language for accuracy.
</p>
<h2 className="text-xl font-semibold mt-6 mb-2">Uninstalling ProxMenux</h2>
<p className="mb-4">
If you ever need to uninstall ProxMenux, there is a function in the Settings section designed for this purpose. For detailed instructions on how to uninstall, please refer to the{" "}
<Link href="/docs/settings/uninstall-proxmenux" className="text-blue-600 hover:underline">
uninstall documentation
</Link>.
</p>
<h2 className="text-xl font-semibold mt-8 mb-4">Troubleshooting</h2>
<p className="mb-4">
If you encounter any issues during installation or usage, please check the {" "}

View File

@ -11,7 +11,7 @@ export default function UninstallProxMenux() {
<h1 className="text-3xl font-bold mb-6">Uninstall ProxMenux</h1>
<p className="mb-4">
The <strong>Uninstall ProxMenux</strong> function allows users to remove ProxMenux and its related components from their Proxmox VE system.
The <strong>Uninstall ProxMenux</strong> function, remove ProxMenux and its related components from their Proxmox VE system.
The script provides an interactive option to remove dependencies as well, ensuring a clean uninstallation process.
</p>
@ -31,15 +31,8 @@ export default function UninstallProxMenux() {
<ul className="list-disc pl-6 space-y-2 mb-6">
<li>Removing dependencies is optional. If selected, system-wide packages used by other applications might also be removed.</li>
<li>Once uninstalled, ProxMenux cannot be restored unless reinstalled manually.</li>
<li>Ensure you no longer need ProxMenux before confirming the uninstallation.</li>
</ul>
<section className="mt-12 p-4 bg-blue-100 rounded-md">
<p>
If you are uninstalling ProxMenux due to issues or missing features, consider checking the documentation or the latest updates.
It may be beneficial to update rather than uninstall. If you need assistance, refer to the official repository for support or troubleshooting.
</p>
</section>
</div>
)
}