Fondamentalmente, stavo seguendo questo tutorial per abilitare la scrittura su un volume NTFS (che funziona quando il volume ha un LABEL o UUID).
Ho un'unità USB esterna con un volume NTFS che non sembra avere un'etichetta o un "UUID volume", quindi non posso usare LABEL=foo
o UUID=xxx
in /etc/fstab
. Come posso indirizzare questo volume in fstab in modo che possa fare qualcosa di simile
LABEL=box none ntfs rw,auto,nobrowse
o
UUID=56A9A02B-0590-458E-9493-1DECC2A8F109 none ntfs rw,auto,nobrowse
Quanto segue è ciò che diskutil info /Volumes/box
mostra. Come puoi vedere non c'è etichetta VOlume o UUID:
❯ diskutil info /Volumes/box
Device Identifier: disk3s1
Device Node: /dev/disk3s1
Part of Whole: disk3
Device / Media Name: Untitled 1
Volume Name: box
Mounted: Yes
Mount Point: /Volumes/box
File System Personality: NTFS
Type (Bundle): ntfs
Name (User Visible): Windows NT File System (NTFS)
Partition Type: Microsoft Basic Data
OS Can Be Installed: No
Media Type: Generic
Protocol: USB
SMART Status: Not Supported
Disk / Partition UUID: 56A9A02B-0590-458E-9493-1DECC2A8F109
Total Size: 1.0 TB (1000168488960 Bytes) (exactly 1953454080 512-Byte-Units)
Volume Free Space: 725.5 GB (725534765056 Bytes) (exactly 1417060088 512-Byte-Units)
Device Block Size: 512 Bytes
Allocation Block Size: 4096 Bytes
Read-Only Media: No
Read-Only Volume: Yes
Ejectable: Yes
Whole: No
Internal: No
NOTA: nell'esempio fstab sopra, l'UUID che ho provato è quello di /dev/disk3s1
, che sembra non avere alcun effetto. Sono stato in grado di applicare regole fstab su altri volumi NTFS quando diskutil mostrava etichette di volume e uuids, che in questo caso mancano.
Come posso scrivere regole fstab per questo volume?