I’m trying to install an app on the TV through SSH via the WebOS SDK:
ares-install -d webos com.sponty.webos.ipk
and I’m getting the error:
Error: All configured authentication methods failed
doing:
ares-install -d webos com.sponty.webos.ipk gives this result
I’ve tried to setup the TV device:
with the privatekey being blank as per the instruction of the user manual under ares-setup-device:
ares-setup-device -a webos -i “username=prisoner” -i “passphrase=7GF9FF” -i “host=192.168.1.110” -i “port=9922”
with variation of the privatekey being blank:
ares-setup-device -a webos -i “username=prisoner” -i “privatekey” -i “passphrase=7GF9FF” -i “host=192.168.1.110” -i “port=9922”
with privatekey defined
ares-setup-device -a webos -i “username=prisoner” -i “privatekey=” -i “passphrase=7GF9FF” -i “host=192.168.1.110” -i “port=9922”
I’ve tried to define the privatekey
ares-setup-device -a webos -i “username=prisoner” -i “privatekey=webos_rsa” -i “passphrase=7GF9FF” -i “host=192.168.1.110” -i “port=9922”
what should I do to trouble shoot this?