Get serial number or XO name from command line or python

LASKE, Lionel (C2S) LLASKE at c2s.fr
Sat May 28 02:55:30 EDT 2011


Hi all,

Thanks for all your answers. The serial was exactly what I expected. Great.
About the "XO name", my question was not clear. What I'm looking for is the name in the Sugar Control Panel (Me). 
Any way to get it ?

Regards.

	Lionel.


-----Message d'origine-----
De : Chris Ball [mailto:cjb at laptop.org] 
Envoyé : samedi 28 mai 2011 04:05
À : Henry Vélez Molina
Cc : LASKE, Lionel (C2S); devel at lists.laptop.org
Objet : Re: Get serial number or XO name from command line or python

Hi,

On Fri, May 27 2011, Henry Vélez Molina wrote:
> Also you could use this script:
> 
> #!/usr/bin/python -tt
> import subprocess
> getserial = subprocess.Popen(['cat /ofw/serial-number'], shell=True,
> stdout=subprocess.PIPE)
> for line in getserial.stdout:
>   print(line.decode().strip())

There's no need to spawn a shell, and then spawn cat inside a shell.
Python knows how to open files:

print open("/ofw/serial-number").readline().strip()

-- 
Chris Ball   <cjb at laptop.org>   <http://printf.net/>
One Laptop Per Child


More information about the Devel mailing list