I switched my app qube template to a clone of the template it was previously using and shut down the app qube.
In the newly cloned template (let’s call it app-qube-template-clone
), I installed Ngrok following the instructions here
When I started the app qube (after shutting down the app-qube-template-clone
so that the changes would reflect) and tried to run the ngrok
command, I got the following message:
$ ngrok
bash: ngrok: command not found
Here’s the troubleshooting I was able to do that suggests that the ngrok
command was installed:
$ sudo apt install ngrok
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
ngrok is already the newest version (3.23.2).
$ sudo apt list --installed | grep ngrok
WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
ngrok/buster,now 3.23.2 amd64 [installed]
$ dpkg -l ngrok
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-==============-============-============-=================================
ii ngrok 3.23.2 amd64 ngrok secure tunnel agent
Is there a way to solve the command not showing in the qube?