Il disco "Flash Player" è ancora collegato al filesystem. Vai in /Volumes
e dovresti vederlo lì. Ci sono due modi per procedere, il metodo GUI o il metodo della riga di comando. Usa quello che ti piace di più.
GUI: vai a /Volumes
e premi ⌘ Comando + E . Questo espellerà il volume.
CLI: diskutil eject /dev/diskx
, in questo caso disk35
. Questo espelle anche il volume.
La differenza tra diskutil unmountDisk
e diskutil eject
è che unmountDisk
cessa solo disco-IO tra il disco e il filesystem, ma lo tiene collegato in modo che possa essere montato in seguito. Tuttavia, eject
lo "rimuove" efficacemente dal filesystem, e rimontarlo potrebbe comportare il ricollegamento fisico del disco. Pensali come "stand by" e "shutdown" rispettivamente su un computer.
Da man diskutil
:
diskutil eject
Eject a disk. Media will become offline for the purposes of being a data store for file systems or being a member of constructs such as software RAID or direct data. Additionally, removable media will become eligible for safe manual removal; automatically-removable media will begin its physical (motorized) eject sequence.
, mentre
diskutil unmountDisk
Unmount an entire disk (all volumes). Force will force-unmount the volumes (less kind to any open files; see also umount (8)). You should specify a whole disk, but all volumes of the whole disk are attempted to be unmounted even if you specify a partition.