**** BEGIN LOGGING AT Mon Jul 24 03:00:01 2017 Jul 24 06:53:23 good morning Jul 24 15:31:47 This isn't really an OE question directly, but the version of PS in busybox for pyro doesn't take any options... Is anyone aware of a way to calculate the number of active threads without it? Is there some other package I can install to get such an estimate? Jul 24 15:45:58 tgoodwin: htop Jul 24 16:21:05 tgoodwin: pidstat command from sysstat Jul 24 16:21:57 khem: ntl: Thanks. I ended up patching this into some code: cat /proc/[0-9]*/status | sed -rn 's/(Thread.+)([[:digit:]]+$)/\2/p' Jul 24 16:22:19 It seemed to work out as well, however I'll look at those on the next build to see if I can chip this down to something a little less clever. Jul 24 16:22:49 "clever" ..missing quotes... Since its not really, just big regex Jul 24 16:23:06 (and I follow that command up with | awk, etc. to actually count the values on each line) Jul 24 16:23:30 The full thing is this: "cat /proc/[0-9]*/status | sed -rn 's/(Thread.+)([[:digit:]]+$)/\2/p' | awk '{ num_threads += $1 } END { print num_threads }' " Jul 24 16:46:42 Is it necessary (or required by some style guide) to call package groups "packagegroup-..."? It seems implicit in the manual that it is required but doesn't seem to state it. Jul 24 16:49:48 convention Jul 24 16:55:24 kergoth: alright, thanks **** ENDING LOGGING AT Tue Jul 25 03:00:01 2017