hdiutil 또는 diskutil이 아닌“mount”를 사용하여 마운트 된 디스크를 마운트 해제하는 방법은 무엇입니까?


2

Mac에서 Linux ISO를 마운트하고 나중에 도커 컨테이너 (학습을 위해 모두)에 마운트하려고했지만 오류가 계속 발생하는 hdiutil 명령을 사용하여 디스크를 마운트 할 수 없었습니다.

$hdiutil mount rhel-server-7.4-x86_64-dvd.iso
hdiutil: mount failed - no mountable file systems 

그래서 여기서 해결 방법을 찾았고 / tmp의 마운트 지점에서 디스크를 성공적으로 마운트 할 수있었습니다.

마운트 명령의 출력 :

$ mount
/dev/disk0s2 on / (hfs, local, journaled)
devfs on /dev (devfs, local, nobrowse)
/dev/disk5 on /private/tmp/rhel-installer (cd9660, local, nodev, nosuid, read-only, mounted by username)

diskutil list 명령의 출력 :

$diskutil list
/dev/disk5 (disk image):
#:                       TYPE NAME                    SIZE       IDENTIFIER
0:     FDisk_partition_scheme                        +4.1 GB     disk5
1:                       0xEF                         9.2 MB     disk5s2

/ tmp / rhel-installer에 마운트 된이 ISO를 마운트 해제하려면 어떻게합니까?

나는 성공적으로 실행되지만 아무것도하지 않는 diskutil unmountDisk 명령을 사용했습니다.


당신은 시도 했습니까 umount?
PoisonNinja

@PoisonNinja 예. 말 명령을 찾을 수 없습니다 :(
Ankit Jain

/sbin/umount거기 있어야합니다. 어떤 시스템을 사용하고 있습니까?
Matteo
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.