Así es como desactivo el montaje automático de volúmenes APFS en MacOS Catalina.
Para los volúmenes MacOS, tanto Macintosh HD - Data
y Macintosh HD
deben referenciarse en /etc/fstab
.
Hallar volumen(s) utilizando diskutil list
y establece VOLUME_PATH
en consecuencia.
# Disable auto mounting of "macOS - Data" volume
VOLUME_PATH="/Volumes/macOS - Data"
VOLUME_UUID=`diskutil info "$VOLUME_PATH" | awk '/Volume UUID:/ { print $3 }'`
cat << EOF | sudo tee -a /etc/fstab
UUID=$VOLUME_UUID none apfs rw,noauto
EOF
# Disable auto mounting of "macOS" volume
VOLUME_PATH="/Volumes/macOS"
VOLUME_UUID=`diskutil info "$VOLUME_PATH" | awk '/Volume UUID:/ { print $3 }'`
cat << EOF | sudo tee -a /etc/fstab
UUID=$VOLUME_UUID none apfs rw,noauto
EOF
Esto es lo que sucede al ejecutar los comandos anteriores:
Establecer VOLUME_PATH
variable a /Volumes/macOS - Data
VOLUME_PATH="/Volumes/macOS - Data"
Establecer VOLUME_UUID
a UUID de volumen de /Volumes/macOS - Data
volumen
Ejecutar diskutil info "$VOLUME_PATH"
salidas detalles de volumen de /Volumes/macOS - Data
(que incluye su UUID).
Tuberías ( |
) estos datos a awk '/Volume UUID:/ { print $3 }'
extrae el UUID.
VOLUME_UUID=`diskutil info "$VOLUME_PATH" | awk '/Volume UUID:/ { print $3 }'`
Añada UUID=$VOLUME_UUID none apfs rw,noauto
a /etc/fstab
y salida por consola (véase te )
cat << EOF | sudo tee -a /etc/fstab
UUID=$VOLUME_UUID none apfs rw,noauto
EOF
0 votos
Si alguien tiene una modificación, genial, pero mientras tanto puedes usar terminal para forzar un desmontaje.
diskutil unmount force disk1s2
Además, si eliges un sistema de archivos que Spotlight no indexará o configuras esa unidad como excluida en las preferencias de Spotlight, puedes reducir ese retraso y sobrecarga con un rápido cambio de configuración.1 votos
Te aconsejo que pruebes a Disk Arbitrator: apple.stackexchange.com/a/39360/22003 . Esto le protegerá contra
Spotlight
, antivirus y ataques.0 votos
Véase también: apple.stackexchange.com/a/164976/22003 .