我们都知道如何在windows下创建linux的启动盘(unetbootin),很少有人介绍如何在linux下制作windows的启动盘。
博客内容引自:http://superuser.com/questions/729087/fedora-create-windows-8-1-bootable-usb
Mount the ISO:
sudo mount -t udf -o loop,ro,unhide /path/to/file.iso /mntInsert the USB drive.
Run
fdiskand specify the device name of the USB drive; for example:sudo fdisk /dev/sdcDelete any existing partition table and create a new one.
Create a new partition of at least 4.5 GB. Mark it bootable and set its type to 7 (HPFS/NTFS/ExFAT).
Write changes and exit
fdisk.Create a FAT-32 file system in the new partition; for example:
sudo mkfs.vfat -F 32 /dev/sdc1Mount this partition to an existing subdirectory; for example:
sudo mount /dev/sdc1 /media/usbstickCopy all of the files from the mounted ISO into this directory:
sudo cp -rv /mnt/* /media/usbstickSync the file systems just to be sure:
sudo syncUnmount both items previously mounted:
sudo umount /media/usbstick sudo umount /mnt
Linux下制作Windows启动盘
本文详细介绍如何在Linux环境下使用一系列命令行工具创建一个可引导的Windows安装U盘。包括挂载ISO文件、分区USB设备、创建文件系统及复制安装文件等步骤。
982

被折叠的 条评论
为什么被折叠?



