×

如何创建可引导的 ESXi USB 安装介质 (macOS, Linux, Windows) 如何制作 ESXi USB 启动盘

hqy hqy 发表于2024-12-03 16:23:55 浏览6 评论0

抢沙发发表评论

如何创建可引导的 ESXi USB 安装介质 (macOS, Linux, Windows)

如何制作 ESXi USB 启动盘



以下 USB 存储设备可以是 U 盘/SD 卡,当然 USB SSD 更佳。

macOS-3" style="box-sizing: border-box; font-family: -apple-system, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", STHeiti, "Microsoft YaHei", 微软雅黑, "Microsoft JhengHei", "Source Han Sans SC", "Noto Sans CJK SC", "Source Han Sans CN", "Noto Sans SC", "Source Han Sans TC", "Noto Sans CJK TC", "WenQuanYi Micro Hei", SimSun, sans-serif; line-height: 1.1; color: rgb(64, 64, 64); margin: 30px 0px 10px; font-size: 30px; -webkit-font-smoothing: antialiased; text-wrap: wrap; background-color: rgb(255, 255, 255);">macOS

macOS 使用终端自带命令即可完成操作。

  1. 查看 USB 存储设备的 MountPoint 或者路径。

    diskutil list

    显示结果(通常只有一块内置磁盘,外接第一块 USB 存储设备为 /dev/disk2):

    1
    2
    3
    4
    /dev/disk0 (internal, physical) #内置物理磁盘
    ......
    ......
    /dev/disk2 (external, physical) #本例中的外置磁盘,以下命令都要使用
  2. 格式化 USB 存储设备。

    命令格式:

    diskutil eraseDisk format name [APM[Format]|MBR[Format]|GPT[Format]] MountPoint|DiskIdentifier|DeviceNode

    本例:

    diskutil eraseDisk MS-DOS "ESXI" MBR /dev/disk2

    注意:name “ESXI” 需全部为大写字母,或包含数字。

    此步骤可以使用 “磁盘工具” 图形界面操作,不再赘述。

  3. 设置 USB 存储设备分区为 active(活动分区)。

    卸载分区:

    diskutil unmountDisk /dev/disk2

    使用 fdisk:

    1
    2
    3
    4
    5
    6
    7
    8
    sudo fdisk -e /dev/disk2
    fdisk: could not open MBR file /usr/standalone/i386/boot0: No such file or directory
    Enter 'help' for information
    fdisk: 1> f 1 #设置活动分区:flag <partition number>
    Partition 1 marked active.
    fdisk:*1> write #保存
    Writing MBR at offset 0.
    fdisk: 1> exit #退出

    挂载分区:

    1
    2
    3
    diskutil mount /dev/disk2s1
    # 输出如下:
    Volume ESXI on /dev/disk2s1 mounted

    示例输出如下:

    fdisk-active-macosmportant;"/>

  4. 写入 ISO 文件到 USB 存储设备。

    挂载 ESXi iso 文件:

    1
    2
    hdiutil mount ~/Desktop/ESXi-8.0U1-21495797-SYSIN.iso
    # 或者在 Finder 中直接双击 iso 文件自动挂载

    复制文件:

    1
    2
    cp -R /Volumes/ESXI-8.0U1-21495797-SYSIN/* /Volumes/ESXI/
    # 或者直接在 Finder 中复制文件
  5. 修改 USB 存储设备中的 ISOLINUX.CFG

    此为可选步骤,可以忽略。

    将 APPEND -c boot.cfg 修改为 APPEND -c boot.cfg -p 1,另外部分 VMware 专家表示将 ISOLINUX.CFG 文件重命名为 SYSLINUX.CFG,实测 ESXi 7.0 和 ESXi 8.0 都无需上述设置。如果您的硬件无法启动,可以尝试上述配置 (sysin)。

    1
    2
    3
    4
    5
    6
    cd /Volumes/ESXI/
    cat ISOLINUX.CFG | grep APPEND
     APPEND -c boot.cfg
    sed -i "" 's/APPEND -c boot.cfg/APPEND -c boot.cfg -p 1/g' ISOLINUX.CFG
    cat ISOLINUX.CFG | grep APPEND
     APPEND -c boot.cfg -p 1
  6. 推出 USB 存储设备。

    hdiutil detach /dev/disk2

Linux

Linux 与 macOS 的操作是类似的,只是具体命令或参数有所差异。

  1. root 或者具有 sudo (root) 权限用户登录。

  2. 识别 USB 存储的设备路径,本例中为 /dev/sdb。

    插入 USB 存储设备,通过如下命令查看:

    1
    2
    3
    sudo dmesg | grep removable
    # 输出如下:
    [    5.240965] sd 33:0:0:0: [sdb] Attached SCSI removable disk

    或者通过 fdisk 命令查看:

    1
    sudo fdisk -l

    示例输出如下:

    fdisk-l-<a href=linux" style="box-sizing: border-box; border: 0px; vertical-align: middle; display: block; max-width: 100%; height: auto; margin: 1.5em auto 1.6em; box-shadow: var(--img-shadow-color) !important;"/>

  3. 格式化 USB 存储设备并设置为活动分区(active)。

    使用 fdisk 创建一个分区。 这将调出交互式工具。

    sudo fdisk /dev/sdb

    按 d 删除现有分区
    按 n 表示新分区,然后按 p 表示主分区
    按 ENTER 3 次,以使用默认设置
    按 t 切换文件系统类型
    按 c 将文件系统类型设置为 FAT32
    按 a 激活分区
    按 w 将更改写入磁盘

    现在格式化 USB 存储设备。

    /sbin/mkfs.vfat -F 32 -n ESXI /dev/sdb1

  4. 复制文件。

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    # 创建 mountpoint 并挂载 USB 存储设备
    mkdir /usb
    mount /dev/sdb1 /usb

    # 创建 mountpoint 并挂载 ESXi iso 文件
    mkdir /esxi
    mount -o loop /home/sysin/ESXi-8.0U1-21495797-SYSIN.iso /esxi

    # 复制 iso 镜像中的文件到 USB 存储设备
    cp -r /esxi/* /usb/

    # 经测此步骤可以忽略 (sysin)
    # 编辑 USB 存储设备中的 isolinux.cfg 文件,将 APPEND -c boot.cfg 修改为 APPEND -c boot.cfg -p 1
    sed -i 's/APPEND -c boot.cfg/APPEND -c boot.cfg -p 1/g' /usb/isolinux.cfg

    # 卸载 mountpoint
    umount /usb
    umount /esxi

    # 删除 mountpoint 文件夹
    rm -r /usb
    rm -r /esxi
  5. 弹出 USB 驱动器。

    1
    sudo eject /dev/sdb

Windows

Windows 使用内置工具操作如下,实际上与 macOS、Linux 同理:

  1. 格式化 USB 存储设备为 FAT32 格式

    在磁盘管理或者资源管理器中都可以格式化,如图:

    esxi-usb-win-format

  2. 将 USB 存储设备分区设置活动分区(Active):

    打开 “磁盘管理” 可以看到上述格式化操作已将 USB 存储设备分区设置为 Active,如果未显示 Active,点击该分区右键 “将分区标记为活动分区” 即可 (sysin)。

    esxi-usb-win-active

  3. 复制文件

    双击挂载 ESXi iso 文件,将其根目录下的所有文件和文件夹复制到 USB 存储设备的根目录下即可。

Windows 使用第三方工具,如 Rufus、unetbootin,操作步骤如下。

  1. 选择 USB 存储设备和 iso 文件,点击 “START”

    rufus-01

  2. 按 No 即可

    rufus-02

  3. 按 OK 确认

    rufus-03

  4. 写入成功

    rufus-04



打赏

本文链接:https://www.kinber.cn/post/4008.html 转载需授权!

分享到:


推荐本站淘宝优惠价购买喜欢的宝贝:

image.png

 您阅读本篇文章共花了: 

群贤毕至

访客