本文介绍在 Linux 下安装 Etcher 的方法及使用 Etcher 来创建可启动盘,即创建一个可引导的 USB 盘或 SD 卡。同时它还能在 Windows、MacOS 上使用,Etcher Linux 版提供 .deb、.rpm、.tar.gz 等安装包,完全可以使用在各大 Linux 发行版上。
注:在 Linux 系统下高级用户也可以使用 dd 在命令行上创建媒体,详情请看 Linux系统下使用dd命令创建 Live USB 一文。不过这种方法太高级了,新手很难进行操作,所以使用 Etcher 是最好的了,而且它还支持跨平台。
安装Etcher的方法 一、相关说明 1.你也可以参考 Ubuntu下载安装Etcher-开源USB写入工具一文,本文还提醒在 Fedora、Red Hat Enterprise Linux 上安装的注意点。 2.Etcher.io 是一个很棒的开源项目,可以在 Linux、Windows 或 MacOS 系统上轻松、简单地创建媒体。Etcher.io 已成为我为 Linux 创建可启动媒体的“首选”程序。我可以轻松下载 ISO 或 IMG 文件并将其刻录到闪存和 SD 卡。这是一个 Apache 2.0 许可证下的开源项目,源代码可在 GitHub 上获得。 3.进入 Etcher.io 网站,然后单击适用于你的操作系统:32 位或 64 位 Linux、32 位或 64 位 Windows 或 MacOS 的下载链接。
二、在Linux下安装Etcher Etcher 在 GitHub 仓库中提供了很好的指导,可以将 Etcher 添加到你的 Linux 实用程序集合中。 如果你使用的是 Debian 或 Ubuntu,请添加 Etcher Debian 仓库: $echo "deb https://dl.bintray.com/resin-io/debian stable etcher" | sudo tee /etc/apt/sources.list.d/etcher.list 信任 Bintray.com GPG 密钥 $ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 379CE192D401AB61 然后更新你的系统并安装: $ sudo apt-get update $ sudo apt-get install etcher-electron 如果你使用的是 Fedora 或 Red Hat Enterprise Linux,请添加 Etcher RPM 仓库: $ sudo wget https://bintray.com/resin-io/redhat/rpm -O /etc/yum.repos.d/bintray-resin-io-redhat.repo 使用以下任一方式更新和安装: $ sudo yum install -y etcher-electron 或者: $ sudo dnf install -y etcher-electron
使用Etcher创建可启动盘的方法 除了为 Ubuntu、EndlessOS 和其他版本的 Linux 创建可启动镜像之外,我还使用 Etcher 创建 SD 卡镜像用于树莓派。以下是如何创建可启动媒体。 首先,将要使用的 ISO 或镜像下载到计算机。然后,启动 Etcher 并将 USB 或 SD 卡插入计算机。
单击 “Select Image”。在本例中,我想创建一个可启动的 USB 盘,以便在新计算机上安装 Ubermix。在我选择了我的 Ubermix 镜像文件并将我的 USB 盘插入计算机,Etcher.io “看到”了驱动器,我就可以开始在 USB 上安装 Ubermix 了。
在我点击 “Flash” 后,安装就开始了。所需时间取决于镜像的大小。在驱动器上安装镜像后,软件会验证安装。最后,一条提示宣布我的媒体创建已经完成。流程大致是这样,可见,使用 Etcher 远比使用 dd 命令简单多了,非常适合对 Linux 掌握不高的新手。
附:Etcher项目提供的关于Linux上的安装方法(英文) 1.Debian and Ubuntu based Package Repository (GNU/Linux x86/x64) Add Etcher debian repository: echo "deb https://dl.bintray.com/resin-io/debian stable etcher" | sudo tee /etc/apt/sources.list.d/etcher.list Trust Bintray.com's GPG key: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 379CE192D401AB61 Update and install: sudo apt-get update sudo apt-get install etcher-electron Uninstall sudo apt-get remove etcher-electron sudo rm /etc/apt/sources.list.d/etcher.list sudo apt-get update 2.Redhat (RHEL) and Fedora based Package Repository (GNU/Linux x86/x64) Add Etcher rpm repository: sudo wget https://bintray.com/resin-io/redhat/rpm -O /etc/yum.repos.d/bintray-resin-io-redhat.repo Update and install: sudo yum install -y etcher-electron or sudo dnf install -y etcher-electron Uninstall sudo yum remove -y etcher-electron sudo rm /etc/yum.repos.d/bintray-resin-io-redhat.repo sudo yum clean all sudo yum makecache fast or sudo dnf remove -y etcher-electron sudo rm /etc/yum.repos.d/bintray-resin-io-redhat.repo sudo dnf clean all sudo dnf makecache Solus (GNU/Linux x64) sudo eopkg it etcher Uninstall +sudo eopkg rm etcher
相关主题 |