Se busca instalar unityhub pero en la documentación se utiliza
apt-key add
, el cual según el manual de apt-key no se recomienda:
Note: Instead of using this command a keyring should be placed directly in the /etc/apt/trusted.gpg.d/ directory with a descriptive name and either “gpg” or “asc” as file extension.
Por lo cual se sustituye el uso de
$ wget -qO - https://hub.unity3d.com/linux/keys/public | sudo apt-key add -
por
$ wget -qO - 'https://hub.unity3d.com/linux/keys/public' | gpg --dearmor | doas tee /etc/apt/trusted.gpg.d/Unity_Technologies_ApS.gpg
$ doas chmod 644 /etc/apt/trusted.gpg.d/Unity_Technologies_ApS.gpg
Nota: el nombre se obtuvo al provar previamente hacer
wget --content-disposition 'https://hub.unity3d.com/linux/keys/public'
para inspeccionar el certificado.
Para instalar unityhub se sigue la guía:
$ doas apt-get install -V unityhub