NTFS विभाजन UUIDs सामान्य से कम क्यों हैं?


10

यदि आप sudo blkidउनके uuids के साथ विभाजनों को देखने के लिए कमांड का उपयोग करते हैं या बस देखते हैं /etc/fstab(आपको कुछ NTFS विभाजन मिले हैं) पर विचार करते हैं, तो आप संभवतः ध्यान देंगे कि NTFS विभाजन के UUIDs 16 वर्ण हैं, जो ext2 / 3/4 और स्वैप विभाजन के साथ नहीं हैं। पारंपरिक 32-चार (16-बाइट) लंबे UUID को डैश के साथ मिला है। ऐसा क्यों?

जवाबों:


11

क्योंकि वे मूल्य यूयूआईडी नहीं हैं; वे NTFS सीरियल नंबर हैं। उन्हें UUIDs /etc/fstab(और अन्य जगहों पर) के रूप में पहचाना जाता है क्योंकि डेवलपर्स ने कुछ अन्य पहचानकर्ता का उपयोग करने के बजाय मूल रूप से गैर-UUID डेटा के लिए पहचानकर्ता "UUID" का उपयोग करना चुना।

वैसे भी FAT का सच यही है, लेकिन FAT सीरियल नंबर NTFS सीरियल नंबर से भी कम हैं।


5

Microsoft filesystems (NTFS और FAT भाई) UUIDs को बाहर निकालने के तरीके का समर्थन नहीं करते हैं * / btrfs / अन्य Unixy filesystems करते हैं। आप यूयूआईडी के रूप में रिपोर्ट किए गए कुछ प्रकार के सीरियल नंबर (NTFS के लिए 64 बिट लंबे, FAT32 के लिए 32 बिट लंबे) हैं। केवल एक ठोस जानकारी जिसे मैं लिनक्स दुनिया से खोद सकता हूं, वह ntfslabel(8)मैनपेज से है :

--new-serial[=ssssssssssssssss], or

--new-half-serial[=ssssssss]
      Set  a  new  serial  number  to  the device, either the argument
      value, or a random one if  no  argument  is  given.  The  serial
      number  is  a  64  bit  number,  represented  as a sixteen-digit
      hexadecimal number, used  to  identify  the  device  during  the
      mounting  process.  As  a consequence, two devices with the same
      serial number cannot be mounted at the same  time  on  the  same
      computer.  This is not the volume UUID used by Windows to locate
      files which have been moved to another volume.

      The option --new-half-serial only changes the upper part of  the
      serial  number,  keeping the lower part which is used by Windows
      unchanged.  In this case the optional argument is an eight-digit
      hexadecimal number.

मुझे संदेह है कि ये "यूयूआईडी" शायद fsutilविंडोज पर सीरियल नंबर की रिपोर्ट के समान है ।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.