mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 12:16:53 +00:00
46 lines
2.2 KiB
TypeScript
46 lines
2.2 KiB
TypeScript
import type { Metadata } from "next"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Uninstall ProxMenux | ProxMenux Documentation",
|
|
description: "Guide to uninstalling ProxMenux from your Proxmox VE system.",
|
|
}
|
|
|
|
export default function UninstallProxMenux() {
|
|
return (
|
|
<div className="max-w-3xl mx-auto">
|
|
<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 script provides an interactive option to remove dependencies as well, ensuring a clean uninstallation process.
|
|
</p>
|
|
|
|
<h2 className="text-2xl font-semibold mt-8 mb-4">How It Works</h2>
|
|
<p className="mb-4">
|
|
When executed, the script performs the following actions:
|
|
</p>
|
|
<ul className="list-disc pl-6 space-y-2 mb-6">
|
|
<li>Prompts the user for confirmation before proceeding with the uninstallation.</li>
|
|
<li>Provides an option to remove dependencies such as Python virtual environment and package manager.</li>
|
|
<li>Deletes the ProxMenux installation directory and its configuration files.</li>
|
|
<li>Removes cached data and stored settings.</li>
|
|
<li>Ensures the removal of installed components and performs cleanup.</li>
|
|
</ul>
|
|
|
|
<h2 className="text-2xl font-semibold mt-8 mb-4">Important Considerations</h2>
|
|
<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>
|
|
)
|
|
}
|