David O'Brien <[email protected]> writes:
> +     ( dmesg; kenv; df -ib; \

None of these change much between reboots; dmesg and kenv don't change
at all, and neither does df unless you have /tmp and / or /var on /.

> +         ps -fauxrH -o nwchan,nivcsw,nvcsw,time,re,sl; \

-f doesn't hurt but is unlikely to make any difference in the output.
-u is overridden by -o and therefore pointless.
-r just changes the sort order, which is probably pointless.
-H greatly increases the amount of data but not the entropy.

time, re and sl are in seconds and therefore extremely predictable.

so:

 ps -axo nwchan,majflt,minflt,nivcsw,nvcsw

which is exactly what I posted earlier, except for the addition of
nwchan.

DES
-- 
Dag-Erling Smørgrav - [email protected]
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-rc
To unsubscribe, send any mail to "[email protected]"

Reply via email to