# System Serial Number Retrieval

## <mark style="color:blue;">Serial Number Retrieval</mark>

### Physical Label

The OnLogic serial number can be found on a label applied to the bottom of the system, or the rear of the display for Panel PCs. Our serial numbers will begin with U or E, followed by 6 digits.

<figure><img src="https://3062424488-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FlLHqs7kbNoKOFTwGOfH6%2Fuploads%2Fgit-blob-63ded0bd1318adb6d4ea4017253826d2b07b7485%2F612e9dc5afe2997b6e04646aee4bd7ec338d8fa6da2b2398b41ee4c572c44a99.png?alt=media" alt="" height="278" width="601"><figcaption></figcaption></figure>

Since 2018, OnLogic has written the serial number of the system into the SMBIOS data on all products except for Raspberry Pi systems (i.e the Factor Series). This means that the serial number can be retrieved without physically looking at the unit. This can be useful if the system is deployed in the field or mounted in an enclosure.

\*Note that the Factor Series systems (FR201 and FR202) do not have a BIOS or SMBIOS, and do **not** support the below software commands. The systems’ serial number need to be identified via the physical label on the bottom of the case.

### Windows <a href="#windows" id="windows"></a>

Open CMD from the start menu and run the following commands. One of them should return the correct serial.

```
WMIC BIOS get serialnumber
```

```
WMIC baseboard get serialnumber
```

### Linux <a href="#linux" id="linux"></a>

Run the following commands in terminal.

```
dmidecode -s system-serial-number
```

```
cat /sys/devices/virtual/dmi/id/product_serial
```
