Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions docs/how-to/remove-webcontrol.md
Original file line number Diff line number Diff line change
@@ -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://<panda-hostname>/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@<panda-hostname>
```
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.
1 change: 1 addition & 0 deletions docs/myst.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading