在OSX计算机上,我使用this script创建了一个磁盘。
当我运行diskutil list
时,它会显示在这里:
/dev/disk2 (disk image):
#: TYPE NAME SIZE IDENTIFIER
0: GUID_partition_scheme +64.4 GB disk2
1: EFI EFI 209.7 MB disk2s1
2: Apple_HFS randdisk 64.1 GB disk2s2
我想将其删除,所以我尝试了:
sudo hdiutil eject -force /dev/disk2
并且:
sudo hdiutil detach -force /dev/disk2
但是,这两个都失败了:
"disk2" unmounted.
hdiutil: couldn't eject "disk2" - Resource busy
我认为问题可能源于我使用了notremovable
选项的事实:
-notremovable prevent this image from being detached. Only root can use this option. A reboot is necessary to cleanly detach an image
attached with -notremovable.
因此,我尝试重新启动,并且使用了sudo
,但是该磁盘不会消失。关于如何分离它的任何想法?