We have a fleet of about 100 devices that run off of linux on a bootable compact flash. Each device used a single compact flash.
For a recent update we were given a single CF drive for which we were told we could make copies for the rest of the devices.
I used dd to clone original CF, basically using the command dd if=/dev/sdb of=dev/sdc. This seemed to work fine, making exact clones, including the partition UUID (see output of *sblk -f command below )
So is there any reason that duplicate UUIDs will cause a problem in this case? If they could be a problem, is there a safe way to change them?
frank@ThinkPad2:~$ lsblk -f
sdb
└─sdb1 ext3 c44c8412-bf87-4fa4-a6fa-8259aa78bd24 191.1M 70% /media/frank/c44c8412-bf87-4fa4-a6fa-8259aa78bd24
sdf
└─sdf1 ext3 c44c8412-bf87-4fa4-a6fa-8259aa78bd24 191.1M 70% /media/frank/c44c8412-bf87-4fa4-a6fa-8259aa78bd241
BTW . This is a follow up to another issue I was having with this problem. For reference I included the link to a previous question.
Unable to mount cloned compact flash after using dd to clone bootable compact flash