Come creare un filesystem Case Sensitive in 10.11.1?

8

Come creare un file system Case Sensitive su un Mac?

Ecco un semplice test:

echo 'you should see this' > abc ; echo 'not just this twice' > ABC ; cat  abc ABC
you should see this
not just this twice

Sono su Mac versione 10.11.1 e anche con un filesystem "Case Sensitive" su un'immagine DMG, ottengo:

not just this twice
not just this twice
    
posta nslntmnx 02.12.2015 - 02:18
fonte

2 risposte

6

Sembra che ci sia un bug nell'applicazione Disk Utility appena riscritta in El Capitan (a partire da 10.11.2) dove non è possibile creare immagini del disco con distinzione tra maiuscole e minuscole. Come hai detto la tua risposta, puoi usare lo strumento da riga di comando hdiutil come soluzione alternativa; alternativamente, in Disk Utilty, puoi cancellare l'immagine del disco dopo averla creata, selezionando un formato con distinzione tra maiuscole e minuscole.

link

    
risposta data 30.12.2015 - 22:05
fonte
3

Ho fatto qualche ricerca e ho trovato una risposta funzionante.

C'è uno script qui.

link

hdiutil create -type SPARSE -fs 'Case-sensitive Journaled HFS+' -size 60g -volname workspace ${WORKSPACE}

Prova

./workspace.sh create
./workspace.sh attach
cd /Volumes/workspace/
echo 'you should see this' > abc ; echo 'not just this twice' > ABC ; cat  abc ABC
you should see this
not just this twice
    
risposta data 02.12.2015 - 02:28
fonte

Leggi altre domande sui tag