Qual é o número de série de uma partição?

1

A execução de vol no prompt de comando mostra o "Número de série do volume".

O que é realmente esse número de série de uma partição e qual é o seu uso?

    
por Fahad Uddin 24.11.2010 / 15:52

2 respostas

3

Fonte - aqui

A volume serial number is a serial number assigned to a disk volume or tape volume. It originated in 1950s in mainframe computer operating systems. In OS/360 line it is human-configurable, has a maximum length of six characters, is in uppercase, must start with a letter, and identifies a volume to the system in unique manner. For example "SYSRES" is often used for a system residence volume.

In FAT and NTFS file systems, a volume serial number is a feature used to determine if a disk is present in a drive or not, and to detect if it was exchanged with another one. This identification system was created by Microsoft and IBM during their development of OS/2.

The FAT/NTFS serial number is a 32-bit number determined by the date on the current computer at the time of a disk's formatting. Previously, the method used to discern whether a disk was swapped was reading its volume label. However, it was not required to be unique or even non-empty. Many users had not given disks any name.

Em extN e vários outros sistemas de arquivos, o número de série é um UUID gerado aleatoriamente de 128 bits.

    
por 24.11.2010 / 15:56
1

Acho útil manter a persistência de dispositivos removíveis em particular.

Eu tenho 2 aplicativos que usam esse valor.

Um é um aplicativo de backup que usa o serial no caminho em vez do ponto de montagem, o que ajuda a manter as rotações alinhadas.

Outro é um aplicativo de reserva de ponto de montagem que fornece funcionalidade para o Windows de forma semelhante à da sintaxe UUID na configuração fstab mountpoint do linux.

    
por 24.11.2010 / 16:36