경로/볼륨 이름으로 디스크 꺼내기

경로/볼륨 이름으로 디스크 꺼내기

다음과 같은 USB 드라이브를 꺼내려고 합니다./Volume/MyPassport

예를 들어 hdiutil을 사용하여 이 작업을 수행할 수 있습니다 hdiutil eject /dev/disk5. 이 경우 대상 볼륨의 디스크 이름을 알아야 합니다.

그래서 다음과 같은 볼륨 이름을 사용하고 싶습니다.hdiutil eject /Volume/MyPassport

어떤 아이디어가 있나요?

답변1

이것은 Mac OS X 10.11에서 완벽하게 작동합니다.

$ hdiutil create -size 128m -fs HFS+ blah    
...............................................................................
created: /private/var/tmp/blah.dmg
$ hdiutil mount blah.dmg                 
/dev/disk1              GUID_partition_scheme           
/dev/disk1s1            Apple_HFS                       /Volumes/untitled
$ df | grep unt
Filesystem   512-blocks      Used Available Capacity  iused   ifree %iused  Mounted on
/dev/disk1s1     262064      6144    255920     3%      766   31990    2%   /Volumes/untitled
$ hdiutil eject /Volumes/untitled
"disk1" unmounted.
"disk1" ejected.
$ df | grep unt                  
Filesystem   512-blocks      Used Available Capacity  iused   ifree %iused  Mounted on
$ 

관련 정보