Page 1 of 1

Porteus Kiosk Turn On and Off

Posted: 01 Nov 2017, 16:51
by eli_garrett
I am looking for a way to turn on and off my Kiosk via IP commands. I can use a wake on lan command to turn my computers on. But I am unsure how to turn my computers off at night via an IP command. Is this possible? Also is there a way to send an IP command to the kiosk to get a status message showing that the kiosk is still running?

Porteus Kiosk Turn On and Off

Posted: 01 Nov 2017, 21:07
by fanthom
1) you could enable ssh access to the kiosk during installation and then use following script to power it off:

Code: Select all

#!/bin/bash

sshpass -p root_password ssh -oUserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no root@kiosk_IP -t "halt"
2) allow ping in the wizard and then use ping utility to check if kiosk is still online

Thanks