Please enable javascript, or click here to visit my ecommerce web site powered by Shopify.
Jump to: navigation, search

Difference between revisions of "RockpiS/dev/device-serial-number"

< RockpiS‎ | dev
(Created page with "{{rockpiS_header}} {{Languages|rockpiS/dev/serial-console}} ROCK Pi S > Development > rockpiS/dev/device-serial-number | Device Serial Nu...")
 
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:
 
     [[rockpiS | ROCK Pi S]] > [[rockpiS/dev | Development]] > [[rockpiS/dev/device-serial-number | Device Serial Number]]
 
     [[rockpiS | ROCK Pi S]] > [[rockpiS/dev | Development]] > [[rockpiS/dev/device-serial-number | Device Serial Number]]
  
There are two ways to get ROCK Pi S device serial number.
+
=== On Linux ===
  
== In U-Boot Console ==
+
  $ grep "Serial" /proc/cpuinfo
 +
  Serial          : 3edd8864483e17ab
  
  => print serial#
+
=== Troubleshooting ===
  serial#=c3d9b8674f4b94f6
+
 
+
== In Linux System ==
+
 
+
  $ cat /sys/firmware/devicetree/base/serial-number
+
  c3d9b8674f4b94f6
+
 
+
== Troubleshooting ==
+
 
* Post your issue at the forum: https://forum.radxa.com/c/dev
 
* Post your issue at the forum: https://forum.radxa.com/c/dev

Latest revision as of 11:44, 19 February 2020

    ROCK Pi S >  Development >  Device Serial Number

On Linux

 $ grep "Serial" /proc/cpuinfo
 Serial          : 3edd8864483e17ab

Troubleshooting