From ab3e0f9b9a6fa5746743bd391cd5148de1ba0b18 Mon Sep 17 00:00:00 2001 From: "Sode, Adedamola (DLSLtd,RAL,LSCI)" Date: Mon, 29 Jun 2026 13:53:05 +0100 Subject: [PATCH] Added remove-webcontrol page --- docs/how-to/remove-webcontrol.md | 31 +++++++++++++++++++++++++++++++ docs/myst.yml | 1 + 2 files changed, 32 insertions(+) create mode 100644 docs/how-to/remove-webcontrol.md diff --git a/docs/how-to/remove-webcontrol.md b/docs/how-to/remove-webcontrol.md new file mode 100644 index 0000000..6ee3353 --- /dev/null +++ b/docs/how-to/remove-webcontrol.md @@ -0,0 +1,31 @@ +# Removing the panda-webcontrol package + +Removing packages follows the same two methods as installing +packages - Through the web interface or through the shell on the panda: [](packages.md). + +If you are trying to remove the panda-webcontrol package, it might be best to use SSH to remove it, but both methods are provided for convenience: + +## Removing the panda-webcontrol package through the webcontrol + +:::{warning} +Ensure your ssh keys are already on the panda before proceeding, as you will +lose access to the web interface for control. Follow [*How do I authorise a public SSH key?*](/reference/troubleshooting.md) +::: + +1. Insert a USB stick into the PandA. +2. Open the web admin interface at `http:///admin/`. +3. Navigate to **Packages → List Installed Packages**. +4. Select the **panda-webcontrol** package. +5. Click on **delete selected packages** . + +## Removing the panda-webcontrol package through ssh +1. ssh into the PandA using + ```bash + ssh root@ + ``` +2. Remove the webcontrol package using the opkg tool + ```bash + opkg remove panda-webcontrol + ``` + +Following either method will remove the webcontrol package from your PandA. \ No newline at end of file diff --git a/docs/myst.yml b/docs/myst.yml index cbaf44a..0d3c14f 100644 --- a/docs/myst.yml +++ b/docs/myst.yml @@ -57,6 +57,7 @@ project: - file: how-to/upgrade-via-web-admin.md - file: how-to/upgrade-via-ssh.md - file: how-to/packages.md + - file: how-to/remove-webcontrol.md - file: how-to/choose-fpga-bitstream.md # Developing for a PandA - file: how-to/build.md