모든 Linux 배포에서 Windows 10 2018 년 10 월 릴리스 UEFI 부팅 가능한 USB 드라이브를 준비하는 안내서
2018 년 10 월 10 일 릴리스에는 sources/install.wim
최대 FAT32
파일 크기 보다 큰 설치 파일이 있으므로 USB 드라이브를로 포맷합니다 NTFS
. Windows 설치 프로그램은 EFI 파티션 (code ef00
) 과도 작동하지 않으므로 Microsoft basic data
파티션 유형 (code)을 사용 합니다.0700
)을 .
이름으로 USB 드라이브를 만드는 단계 /dev/sdc
( 모든 명령을 장치 이름으로 바꾸십시오! ) :
- USB 드라이브를 컴퓨터에 삽입하고 마운트 해제되어 있는지 확인하십시오. 일부 배포판은 USB 드라이브를 자동 마운트하는 것을 좋아하므로 마운트 해제해야합니다. 마운트 된 파티션은로 찾은
mount -l | grep '/dev/sdc'
다음sudo umount /dev/sdcX
(X는 파티션 번호) .
- 을 사용하여 USB 블록 장치를 열고 파티션을
gdisk /dev/sdc
구성하고 (코드 ) GPT
생성 한 다음 변경 사항을 작성하고 종료하십시오 ( 다음 단계는 USB 드라이브의 파티션 테이블을 제거합니다 !!! ).Microsoft basic data
0700
sudo gdisk /dev/sdc
o
> This option deletes all partitions and creates a new protective MBR.
> Proceed? (Y/N): y
n
> Partition number ... > hit Enter
> First sector ... : > hit Enter
> Last sector ... : > hit Enter
> Current type is 'Linux filesystem'
> Hex code or GUID (L to show codes, Enter = 8300): 0700
p
> Should print something like:
> Disk /dev/sdc: 15646720 sectors, 7.5 GiB
> Model: DataTraveler 160
> Sector size (logical/physical): 512/512 bytes
> Disk identifier (GUID): ...
> Partition table holds up to 128 entries
> Main partition table begins at sector 2 and ends at sector 33
> First usable sector is 34, last usable sector is 15646686
> Partitions will be aligned on 2048-sector boundaries
> Total free space is 2014 sectors (1007.0 KiB)
> Number Start (sector) End (sector) Size Code Name
> 1 2048 15646686 7.5 GiB 0700 Microsoft basic data
w
> Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING PARTITIONS!!
> Do you want to proceed? (Y/N): y
q
- 새 파티션을 NTFS로 포맷하십시오.
sudo mkfs.ntfs /dev/sdc1
- 새 USB 파티션을 집의 임시 디렉토리에 마운트하십시오.
mkdir ~/tmp-win10-usb-drive
sudo mount /dev/sdc1 ~/tmp-win10-usb-drive
- Windows 설치 ISO를 다운로드하여 가정에 새 임시 디렉토리를 작성하여 마운트하십시오.
mkdir ~/tmp-win10-iso-mnt
sudo mount Win10_1809Oct_English_x64.iso ~/tmp-win10-iso-mnt
- 마운트 된 ISO에서 USB 드라이브로 모든 파일을 복사합니다 (
rsync
진행을 볼 수 있습니다 ).
sudo cp -rT ~/tmp-win10-iso-mnt/ ~/tmp-win10-usb-drive/
- Windows ISO 및 USB 드라이브를 마운트 해제하고 임시 디렉토리를 제거하십시오.
sudo umount ~/tmp-win10-iso-mnt/ ~/tmp-win10-usb-drive/
rmdir ~/tmp-win10-iso-mnt/ ~/tmp-win10-usb-drive/
- 새 컴퓨터에 USB 드라이브를 넣고 부팅하십시오.