Linux Device's are showing as duplicate's or share a UUID
Automox generally uses these guidelines when generating a UUID for a device:
const HARDWARE_ID_UUID = 'uuid'; // windows
const HARDWARE_ID_MACHINE_ID = 'machine-id'; // non-windows
const PROCESSOR_HASH = 'processor-hash';
const MEMORY_HASH = 'memory-hash';
const BIOS_HASH = 'bios-hash';
const SYSTEM_HASH = 'system-hash';
const HOSTNAME_INFO = "hostname-info";
const IP_ADDRESS_ID = 'ipaddress-info';
const MAC_ADDR_INFO = 'macaddr-info';
const DISK_INFO = 'disk-info';
const MINIMUM_MATCH_PERCENT = 40;
So, it needs to be under a 40% match with any of those variables.
Answer
- Running these commands can reset the machine-id
-
sudo rm /etc/machine-id
sudo systemd-machine-id-setup
Comments
0 comments
Article is closed for comments.