PiAware boot status screen

Is there any way to get to that initial boot/status screen that it boots to with a piaware image from ssh? The status screen that shows the feeder id & other status info? I was just wondering if I can get to that logging in from a pc through ssh or if its only visible on the pi and its display.

Rob

Have you used “sudo piaware-status” from your ssh connection?

1 Like

the following command shows all previous boot messages after ssh login:

sudo dmesg

You can filter that you only see the messages about a specific search pattern

You can use dmesg --help for getting all the options displayed

You can try running

/usr/lib/piaware-support/piaware-console-status

via ssh. (Should work in theory…)

1 Like

Thanks for the replys from all of you. I can run piaware-status and it displays fine. I have never used dmesg, but now I have another command in my tool box to use.

The one that gets to the screen I was referring to is /usr/lib/piaware-support/piaware-console-status

Thats the one I was talking about!

Thanks for that, Just what I was hoping to find!

Thanks again, Rob

dmesg is one of the core tools for everyone who needs to troubleshoot linux installations, especially if not booting properly.

thank you for pointing that out to me.

Rob