I Added a debian repo for a 3rd party program but it doesn't work.
Many 3rd party applications provide scripts to add their repos
such as
curl -1sLf
'https://dl.cloudsmith.io/public/coolercontrol/coolercontrol/setup.deb.sh'
| sudo -E bash
these scripts attempt automatically find the distro codename, expecting something like sid
or bookworm
, but on pika they will receive pika
which invalid unless the 3rd party repo has a pika branch. (Which is very unlikely)
Manually Supply a distro codename to the 3rd party script, which is valid like bookworm
or preferably sid
.
Run their install script with the following options (distro and codename manually inputted), then just follow their normal debian guide.
curl -1sLf \
'https://dl.cloudsmith.io/public/coolercontrol/coolercontrol/setup.deb.sh' \
| sudo -E distro=debian codename=bookworm bash