A sessão de perguntas e respostas de hoje nos é oferecida por cortesia do SuperUser, uma subdivisão do Stack Exchange, um agrupamento de sites de perguntas e respostas conduzido pela comunidade.
Foto cedida por Luca Colli (Flickr).
A questão
Leitor de Superusuário Mega quer saber se existe uma maneira de saber se dois DVDs são exatamente iguais ou não:
I have two DVDs and if I open the them, then copy the contents to my hard-drive to compare the respective files, it shows no difference. As far as I know, DVDs also have some additional content (such as information saying if the DVD is bootable along with some formatting information I guess).
How can I also check this additional content? Is it possible without additional programs on Windows or Ubuntu?
Há algum método que uma pessoa possa usar para verificar se dois DVDs são idênticos ou não?
A resposta
Os contribuidores do SuperUser, mtak e Dithermaster, têm a resposta para nós. Primeiro, mtak:
The easiest way to determine if two discs are the same is to run a hash of both of them:
sudo md5sum /dev/cdrom
If the hashes match, then the disks are exactly the same. However, if the hashes do not match, then this will not tell you what is different about them. If even a single bit is different, you will get a totally different hash.
You can check the partition table of a disc with fdisk:
sudo fdisk -l /dev/cdrom
Seguido pela resposta do Dithermaster:
Just comparing folders and files misses other things about the disc. If you create an.ISO image file from each disc and byte compare them, you would have a better idea if the discs are really the same or not.
Tem algo a acrescentar à explicação? Som desligado nos comentários. Quer ler mais respostas de outros usuários do Stack Exchange com experiência em tecnologia? Confira o tópico de discussão completo aqui.