linux (fedora 28) 制作启动U盘,启动盘

最近需要安装一款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盘之中

➜  ~ sudo dd if=Downloads/镜像文件/Qubes-R4.0-x86_64.iso of=/dev/sdb

完成之后 输出:

➜  ~ 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

保持更新,转载请注明出处。

猜你喜欢

转载自www.cnblogs.com/xuyaowen/p/linux_make_USB_boot.html
今日推荐