fix: perccli install — prefer apt, remove stale Dell download URL

The hardcoded dl.dell.com tarball URL is stale and returns a redirect.
Suggest 'apt install perccli' first (available in Proxmox repos), then
fall back to manual .deb download via dell.com/support with service tag.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Claude
2026-06-27 03:59:56 +00:00
parent 95ea951741
commit 2e141884a9
2 changed files with 13 additions and 4 deletions
+9 -1
View File
@@ -212,7 +212,15 @@ targets unconfigured physical disks.
### Install perccli ### Install perccli
Download from Dell support (search "PERCCLI") or copy the `.deb` to the host: Try apt first — it's in the Proxmox repos:
```bash
apt install -y perccli
```
If not found, download the `.deb` manually: go to `dell.com/support`, enter
your service tag, then Drivers → Storage → search "PERCCLI", download the
Linux package, copy it to the host, and install:
```bash ```bash
dpkg -i perccli_*.deb dpkg -i perccli_*.deb
+4 -3
View File
@@ -10,9 +10,10 @@ set -euo pipefail
PERCCLI=$(command -v perccli || command -v perccli64 || true) PERCCLI=$(command -v perccli || command -v perccli64 || true)
if [[ -z "$PERCCLI" ]]; then if [[ -z "$PERCCLI" ]]; then
echo "perccli not found. Install from:" echo "perccli not found. Install options:"
echo " https://www.dell.com/support (search 'PERCCLI')" echo " 1. apt install -y perccli (try this first — in Proxmox repos)"
echo " or: dpkg -i perccli_*.deb" echo " 2. Download from dell.com/support → enter service tag → Drivers → Storage"
echo " Look for 'PERCCLI' and download the Linux .deb, then: dpkg -i perccli_*.deb"
exit 1 exit 1
fi fi