最近需要安装一款Linux, 由于使用的计算机系统为 fedora 28, 所以只能在linux 制作U盘
使用 df 或者 fdisk -l 查看 U盘文件:
Disk /dev/sdb: 14.5 GiB, 15597568000 bytes, 30464000 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: dos Disk identifier: 0xcad4ebea Device Boot Start End Sectors Size Id Type /dev/sdb4 * 256 30463999 30463744 14.5G c W95 FAT32 (LBA)
使用 umount /dev/sdb4 进行卸载 文件系统
使用 mkfs.fat /dev/sdb -I 格式化文件系统为 FAT
使用 dd 命令进行 写镜像文件到 U盘之中, 并执行sync,同步缓存中的数据至U盘
➜ ~ sudo dd if=/home/xuyaowen/Downloads/镜像文件/Qubes-R4.0-x86_64.iso of=/dev/sdb bs=1048576 && sync
完成之后 输出:
➜ ~ sudo dd if=Downloads/镜像文件/Qubes-R4.0-x86_64.iso of=/dev/sdb 8947712+0 records in 8947712+0 records out 4581228544 bytes (4.6 GB, 4.3 GiB) copied, 658.01 s, 7.0 MB/s
2018.9
[root@yaoxu US]# dd if=ovirt-node-ng-installer-ovirt-4.1-2018012411.iso of=/dev/sdb bs=1048576 && sync 1090+0 records in 1090+0 records out 1142947840 bytes (1.1 GB, 1.1 GiB) copied, 145.124 s, 7.9 MB/s
注意,为了保证U盘顺利启动,请在命令后面加上 sync 命令同步数据到物理存储当中。
保持更新,转载请注明出处。