Installing Kubernetes on Ubuntu I need the product_uuid
Butin my Ubuntu VM(Multipass) I get:
sudo cat /sys/class/dmi/id/product_uuid
cat: /sys/class/dmi/id/product_uuid: No such file or directory
So I found machine-id:
cat /etc/machine-id
db4b9d9a3b194386b894dba21d7b3fb3
Is this a valid number for product_uuid when installing K8s or else, where is product_uuid?
Thanks
product_uuidis main board product UUID(set by the board manufacturer) and may be used to identify a mainboard.machine-idis a unique id specific to a linux installation.Since multipass spins up a VM, product_uuid wont be available. k8s just needs a unique identifier, so machine-id should work.