import type React from "react" import Link from "next/link" import Image from "next/image" import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card" import { ArrowRight, Terminal, HardDrive, Network, Package, Cpu, Database, Archive, PenToolIcon as Tool, BookOpenCheck, Book, } from "lucide-react" interface ImageWithCaptionProps { src: string alt: string caption: string } function ImageWithCaption({ src, alt, caption }: ImageWithCaptionProps) { return (
{alt}
{caption}
) } export default function HelpAndInfoPage() { return (

Help and Info Menu

ProxMenu provides an interactive command reference menu for Proxmox VE through a dialog-based interface. Select one of the categories below to explore the available commands.

Each category contains carefully selected commands with descriptions, making it easier to find exactly what you need when you need it. This eliminates the need to remember complex command syntax or search through documentation when performing administrative tasks.

} href="/docs/help-info/system-commands" /> } href="/docs/help-info/vm-ct-commands" /> } href="/docs/help-info/storage-commands" /> } href="/docs/help-info/network-commands" /> } href="/docs/help-info/update-commands" /> } href="/docs/help-info/gpu-commands" /> } href="/docs/help-info/zfs-commands" /> } href="/docs/help-info/backup-commands" /> } href="/docs/help-info/tools-commands" />

ProxMenu Guides

Check out our guides section for additional resources, tutorials, and documentation to help you get the most out of Proxmox VE and ProxMenu.

View Guides
) } interface CommandCardProps { title: string description: string icon: React.ReactNode href: string } function CommandCard({ title, description, icon, href }: CommandCardProps) { return (
{icon} {title}
{description} View commands
) }