Close Menu
    Facebook X (Twitter) Instagram
    Command Linux
    • About
    • How to
      • Q&A
    • OS
      • Windows
      • Arch Linux
    • AI
    • Gaming
      • Easter Eggs
    • Statistics
    • Blog
      • Featured
    • MORE
      • IP Address
      • Man Pages
    • Write For Us
    • Contact
    Command Linux
    Home - man page - MACHINE-ID

    MACHINE-ID

    WillieBy WillieJanuary 26, 2026Updated:March 30, 2026No Comments2 Mins Read

    NAME

    machine-id – Local machine ID configuration file  

    SYNOPSIS

    /etc/machine-id  

    DESCRIPTION

    The /etc/machine-id file contains the unique machine ID of the local system that is set during installation. The machine ID is a single newline-terminated, hexadecimal, 32-character, lowercase machine ID string. When decoded from hexadecimal, this corresponds with a 16-byte/128-bit string.

    The machine ID is usually generated from a random source during system installation and stays constant for all subsequent boots. Optionally, for stateless systems, it is generated during runtime at boot if it is found to be empty.

    The machine ID does not change based on user configuration or when hardware is replaced.

    This machine ID adheres to the same format and logic as the D-Bus machine ID.

    Programs may use this ID to identify the host with a globally unique ID in the network, which does not change even if the local network configuration changes. Due to this and its greater length, it is a more useful replacement for the gethostid(3) call that POSIX specifies.

    The systemd-machine-id-setup(1) tool may be used by installer tools to initialize the machine ID at install time.  

    RELATION TO OSF UUIDS

    Note that the machine ID historically is not an OSF UUID as defined by m[blue]RFC 4122m[][1], nor a Microsoft GUID; however, starting with systemd v30, newly generated machine IDs do qualify as v4 UUIDs.

    In order to maintain compatibility with existing installations, an application requiring a UUID should decode the machine ID, and then apply the following operations to turn it into a valid OSF v4 UUID. With "id" being an unsigned character array:

    /* Set UUID version to 4 — truly random generation */
    id[6] = (id[6] & 0x0F) | 0x40;
    /* Set the UUID variant to DCE */
    id[8] = (id[8] & 0x3F) | 0x80;
    

    (This code is inspired by "generate_random_uuid()" of drivers/char/random.c from the Linux kernel sources.)  

    HISTORY

    The simple configuration file format of /etc/machine-id originates in the /var/lib/dbus/machine-id file introduced by D-Bus. In fact, this latter file might be a symlink to /etc/machine-id.

    Willie
    • Website

    Willie has over 15 years of experience in Linux system administration and DevOps. After managing infrastructure for startups and enterprises alike, he founded Command Linux to share the practical knowledge he wished he had when starting out. He oversees content strategy and contributes guides on server management, automation, and security.

    Related Posts

    OPENDIR

    April 21, 2026

    TAIL

    April 21, 2026

    OPERATOR

    April 21, 2026

    NANO

    April 21, 2026
    Top Posts

    NC

    January 16, 2026

    CTIME

    February 11, 2026

    UDEVADM

    February 3, 2026

    INOTIFY_ADD_WATCH

    February 5, 2026
    • Home
    • Contact Us
    • Privacy Policy
    • Terms of Use

    Type above and press Enter to search. Press Esc to cancel.