You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Getting the disk Identifier from the Volume UUID with the command:
DISK_IDENTIFER=$(diskutil list | grep -B 2 "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" | awk 'NR==1{print $NF}')
does not work on Sonoma.
However it works the command:
DISK_IDENTIFER=$(diskutil info "Volname" |grep "Device Identifier" |awk 'NR==1{print $NF}')
where Volname is the the volume name.
Is there another way, using the UUID?
The text was updated successfully, but these errors were encountered:
Getting the disk Identifier from the Volume UUID with the command:
DISK_IDENTIFER=$(diskutil list | grep -B 2 "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" | awk 'NR==1{print $NF}')
does not work on Sonoma.
However it works the command:
DISK_IDENTIFER=$(diskutil info "Volname" |grep "Device Identifier" |awk 'NR==1{print $NF}')
where Volname is the the volume name.
Is there another way, using the UUID?
The text was updated successfully, but these errors were encountered: