在 OS X Yosemite (v10.11.5) 上工作时,我无法安装 Debian 安装程序 ISO(debian-8.5.0-amd64-CD-1.isoDebian 下载页面)。我收到这个错误...
$ hdiutil mount debian-8.5.0-amd64-CD-1.iso
hdiutil: mount failed - no mountable file systems
作为解决方法,我可以按照以下步骤中的“创建映像副本”步骤将 CD 安装在 Linux VM 中:Debian 安装程序文档。
是否可以直接从 Mac 读取文件内容,而无需借助 Linux VM?最终,我想做的是编写一个脚本,可以下载最新的稳定 ISO,使用预先查看的数据编辑 ISO,然后在虚拟机上自动安装 Debian。这主要用于学习目的,但将来可能有用。
答案1
搞清楚了。这是一个两步过程。
步骤 1. 作为块设备附加
# the '-nomount' option avoids the 'mount failed' error
$ hdiutil attach -nomount debian-8.5.0-amd64-CD-1.iso
/dev/disk2 Apple_partition_scheme
/dev/disk2s1 Apple_partition_map
/dev/disk2s2 Apple_HFS
# verify disk is a block device (indicated by 'b' at line start)
$ ls -l /dev/disk2
br--r----- 1 amorphid staff 1, 5 Jul 27 19:41 /dev/disk2
步骤 1b。 (Big Sur) 加载 CD9660 内核扩展
# Load the kext module
sudo kmutil load -p /System/Library/Extensions/cd9660.kext
步骤 2. 使用 cd9660(又名 ISO9660)文件系统挂载磁盘
# create mount point
$ mkdir -p /tmp/debian-installer
# mount the disk
$ mount -t cd9660 /dev/disk2 /tmp/debian-installer
# see da filez!
$ ls -l /tmp/debian-installer
total 2296
-r--r--r-- 1 root wheel 9468 Jun 4 09:24 README.html
-r--r--r-- 1 root wheel 185525 Jun 1 00:52 README.mirrors.html
-r--r--r-- 1 root wheel 100349 Jun 1 00:52 README.mirrors.txt
-r--r--r-- 1 root wheel 461 Jun 4 08:37 README.source
-r--r--r-- 1 root wheel 6000 Jun 4 09:24 README.txt
-r--r--r-- 1 root wheel 146 Jun 4 08:37 autorun.inf
dr-xr-xr-x 1 root wheel 2048 Jun 4 08:37 boot
dr-xr-xr-x 1 root wheel 2048 Jun 4 08:37 css
lr-xr-xr-x 1 root wheel 1 Jun 4 08:37 debian -> .
dr-xr-xr-x 1 root wheel 2048 Jun 4 08:37 dists
dr-xr-xr-x 1 root wheel 4096 Jun 4 08:37 doc
dr-xr-xr-x 1 root wheel 2048 Jun 4 08:37 efi
dr-xr-xr-x 1 root wheel 2048 Jun 4 08:37 firmware
-r--r--r-- 1 root wheel 180335 Jun 2 03:18 g2ldr
-r--r--r-- 1 root wheel 8192 Jun 2 03:18 g2ldr.mbr
dr-xr-xr-x 1 root wheel 2048 Jun 4 08:37 install
dr-xr-xr-x 1 root wheel 2048 Jun 4 08:37 install.amd
dr-xr-xr-x 1 root wheel 4096 Jun 4 08:37 isolinux
-r--r--r-- 1 root wheel 275432 Jun 4 09:24 md5sum.txt
dr-xr-xr-x 1 root wheel 4096 Jun 4 08:37 pics
dr-xr-xr-x 1 root wheel 2048 Jun 4 08:37 pool
-r--r--r-- 1 root wheel 368480 Jun 2 03:18 setup.exe
dr-xr-xr-x 1 root wheel 2048 Jun 4 08:37 tools
-r--r--r-- 1 root wheel 233 Jun 4 08:37 win32-loader.ini
步骤 3. 卸载磁盘
# this will fail if the disk is being used
$ umount /dev/disk2
步骤 4. 分离磁盘
$ hdiutil detach /dev/disk2
"disk2" unmounted.
"disk2" ejected.
答案2
我认为你需要先将 iso 转换为 dmg:
hdiutil convert -format UDRW -o debianConverted debian-8.5.0-amd64-CD-1.iso
open debianConverted.dmg
diskutil list (to see your mount number)
hdiutil mount /dev/diskN (where N is the number for debianConverted)
类似于你会做的在 macOS 上创建可启动 USB