39 lines
1.7 KiB
TypeScript
Raw Normal View History

2025-02-16 17:18:47 +01:00
import type { Metadata } from "next"
export const metadata: Metadata = {
title: "Uninstall ProxMenux | ProxMenux Documentation",
2025-03-04 20:42:38 +01:00
description: "Guide to uninstalling ProxMenux from your Proxmox VE system.",
2025-02-16 17:18:47 +01:00
}
export default function UninstallProxMenux() {
return (
<div className="max-w-3xl mx-auto">
<h1 className="text-3xl font-bold mb-6">Uninstall ProxMenux</h1>
2025-03-04 20:42:38 +01:00
2025-02-16 17:18:47 +01:00
<p className="mb-4">
2025-03-04 20:56:25 +01:00
The <strong>Uninstall ProxMenux</strong> function, remove ProxMenux and its related components from their Proxmox VE system.
2025-03-04 20:42:38 +01:00
The script provides an interactive option to remove dependencies as well, ensuring a clean uninstallation process.
2025-02-16 17:18:47 +01:00
</p>
2025-03-04 20:42:38 +01:00
<h2 className="text-2xl font-semibold mt-8 mb-4">How It Works</h2>
2025-02-16 17:18:47 +01:00
<p className="mb-4">
2025-03-04 20:42:38 +01:00
When executed, the script performs the following actions:
2025-02-16 17:18:47 +01:00
</p>
2025-03-04 20:42:38 +01:00
<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>
2025-02-16 17:18:47 +01:00
2025-03-04 20:42:38 +01:00
<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>
2025-02-16 17:18:47 +01:00
</ul>
</div>
)
}