Raspberry Pi에서 실행되는 Linux를 사용하여 Windows 부팅 가능 USB 플래시 드라이브를 만들 수 있습니까?

Raspberry Pi에서 실행되는 Linux를 사용하여 Windows 부팅 가능 USB 플래시 드라이브를 만들 수 있습니까?

나는 내 노트북에 Linux Mint를 설치하려고 했고, 그것이 내 노트북에 필요한 용도에 적합할 것이라고 생각했습니다. 처음에 Linux에 관해서는 그다지 똑똑하지 않았기 때문에 그렇지 않았습니다.

다시 Windows 10용 노트북에 부팅 가능한 USB를 만들려고 했는데 뭔가 잘못됐고 이제 Linux도 내 노트북에 있으므로 더 이상 OS가 없습니다.

이제 남은 것은 라즈베리파이4 뿐입니다.

이제 내 질문은 Raspberry Pi에 Kali Linux가 있다는 것입니다. 이 Raspberry Pi를 사용하여 Windows용 부팅 가능한 USB 플래시 드라이브를 만들 수 있습니까? 아니면 막혔습니까?

답변1

사용WoeUSB-ng

A Linux program to create a Windows USB stick installer from a real Windows DVD or image.

This package contains two programs:

woeusb: A command-line utility that enables you to create your own bootable Windows installation USB storage device from an existing Windows Installation disc or disk image
woeusbgui: Graphic version of woeusb
Supported images:

Windows Vista, Windows 7, Window 8.x, Windows 10. All languages and any version (home, pro...) and Windows PE are supported.

Supported bootmodes:

Legacy/MBR-style/IBM PC compatible bootmode
Native UEFI booting is supported for Windows 7 and later images (limited to the FAT filesystem as the target)

WoeUSB-ng의 종속성 설치

우분투

sudo apt install git p7zip-full python3-pip python3-wxgtk4.0 

Fedora(테스트 대상: Fedora Workstation 33)

sudo dnf install git p7zip p7zip-plugins python3-pip python3-wxpython4

WoeUSB-ng 설치

sudo pip3 install WoeUSB-ng

소스 코드에서 설치

WoeUSB-ng의 빌드 종속성 설치

우분투

sudo apt install git p7zip-full python3-pip python3-wxgtk4.0 

아치

sudo pacman -Suy p7zip python-pip python-wxpython

Fedora(테스트 대상: Fedora Workstation 33)

sudo dnf install git p7zip p7zip-plugins python3-pip python3-wxpython4

WoeUSB-ng 설치

git clone https://github.com/WoeUSB/WoeUSB-ng.git

cd WoeUSB-ng

sudo pip3 install .

로컬 또는 가상 환경에서 소스 코드로 설치

git clone https://github.com/WoeUSB/WoeUSB-ng.git

cd WoeUSB-ng

git apply development.patch

sudo pip3 install -e .

메뉴 바로가기가 생성되지 않으며 정책을 조정해야 할 수도 있으므로 GUI를 두 번 실행해야 할 수도 있습니다.

제거 중

WoeUSB-ng를 완전히 제거하려면 실행하세요(소스 코드에서 설치를 사용하는 경우에만 필요함):

sudo pip3 uninstall WoeUSB-ng
sudo rm /usr/share/icons/WoeUSB-ng/icon.ico \
    /usr/share/applications/WoeUSB-ng.desktop \
    /usr/local/bin/woeusbgui
sudo rmdir /usr/share/icons/WoeUSB-ng/

다른 방법

ppa 사용

sudo add-apt-repository ppa:nilarimogard/webupd8

sudo apt update

sudo apt install woeusb

답변2

DVD, ISO 파일 또는 USB 스틱에 Windows 설치 미디어를 만드는 일반적인 방법은 Microsoft에서 제공하는 미디어 생성 도구를 사용하는 것입니다.https://www.microsoft.com/en-us/software-download/windows10

그러면 사용 가능한 최신 버전이 설치되며 모든 Windows 설치 요구 사항의 90%에 적합합니다.

관련 정보