Funktionsprüfung
Raspberry Pi2 + raspbian
CentOS 6.5
Ich möchte vom Python-Code unterscheiden, ob die Ausführungsumgebung CentOS oder Raspberry Pi ist.
Referenz http://raspberrypi.stackexchange.com/questions/5100/detect-that-a-python-program-is-running-on-the-pi
151202b.py
import os
print os.uname()
Ergebnisse auf Raspberry Pi 2
$ python 151202b.py
('Linux', 'raspberrypi', '4.1.7-v7+', '#817 SMP PREEMPT Sat Sep 19 15:32:00 BST 2015', 'armv7l')
Ergebnisse auf CentOS
$ python 151202b.py
('Linux', 'localhost.localdomain', '2.6.32-431.el6.i686', '#1 SMP Fri Nov 22 00:26:36 UTC 2013', 'i686')
Sie können feststellen, ob es sich um einen Himbeer-Pi handelt, indem Sie das Schlüsselwort Himbeer-Pi einfügen.
Recommended Posts