대량 저장 모드에서 파티션을 생성하지 마십시오(ABL이 이름에 공백/공백으로 인해 중단되므로)
모두 Android 데이터가 삭제됩니다.
우리는 귀하의 휴대폰으로 인한 손상에 대해 책임을 지지 않습니다. 이 튜토리얼을 따르면 귀하는 귀하의 행동에 대해 전적인 책임을 지는 데 동의하게 됩니다. 몇 가지 테스트를 수행했지만 이는 초기 미리보기이므로 문제가 발생할 수 있습니다.
256GB 기기에서는 테스트되지 않았습니다. 이 튜토리얼은 128GB 장치에만 적용됩니다.
시작하기 전에 전체 튜토리얼을 읽고 이해했는지 확인하세요.
Duo에서 Android와 Windows를 모두 사용하게 됩니다. Android와 Windows 모두 128GB RAM(64GB 및 64GB)을 분할합니다.
Android는 정상적으로 부팅됩니다. 필요한 경우 PC를 사용하여 Windows를 부팅해야 합니다.
Duo가 Android로 부팅되고 PC에 연결되어 있다고 가정합니다.
adb reboot bootloader
fastboot flashing unlock
fastboot boot twrp.img
adb push /sdcard/adb shell "cp /sdcard/parted /sbin/ && chmod 755 /sbin/parted"adb shell
parted /dev/block/sdaprint
rm 6mkpart esp fat32 51.9MB 180MBmkpart win ntfs 180MB 57344MBmkpart userdata ext4 57344MB 112GBset 6 esp onquit
이렇게 하면 이별을 극복할 수 있습니다.
6번째 파티션인 Android userdata 파티션을 삭제하고 3개의 파티션을 만들었습니다. Windows 부팅 파일이 포함된 esp 파티션, Windows가 포함된 win 파티션, 그리고 마지막 파티션은 Android용 새 userdata 파티션으로, 조금 더 작습니다. 이제 실제로 사용할 수 있게 만들어 보겠습니다.
mkfs.fat -F32 -s1 /dev/block/sda6mkfs.ntfs -f /dev/block/sda7mke2fs -t ext4 /dev/block/sda8mkdir /sdcard/espmnt && mount /dev/block/sda6 /sdcard/espmnt/quit
adb push /sdcard/adb shell "tar -xf /sdcard/DuoBoot.tar -C /sdcard/espmnt"adb shell "mv /sdcard/espmnt/Windows/System32/Boot/ffuloader.efi /sdcard/espmnt/Windows/System32/Boot/ffuloader.efi.bak"adb shell "cp /sdcard/espmnt/Windows/System32/Boot/developermenu.efi /sdcard/espmnt/Windows/System32/Boot/ffuloader.efi"adb reboot bootloader
Duo Bootloader로 돌아갑니다.
사용자 지정 UEFI를 부팅해 보겠습니다.
fastboot boot boot.img
Windows를 부팅할 때마다 위 단계를 수행해야 합니다.
개발자 메뉴로 들어가야 합니다.
THESE ARE NOT ALL COMMANDS. DISKPART COMMANDS VARY A LOT, SO THESE ARE SOME ROUGH INSTRUCTIONS. ACTUAL COMMANDS START WITH AN HASHTAG (which you'll need to remove)# list diskFind the Duo Disk, and take note of the number.# select disk # list partitionYou'll be able to recognize the partitions we made earlier by their size. take note of the ESP and WIN partition numbers.# select partition # assign letter=Y:# select partition # assign letter=X:
경고: X:는 Win 파티션이고 Y:는 다음 명령에 대한 ESP 파티션이라고 가정합니다. 올바르게 교체하지 않으면 PC의 데이터가 손실됩니다.
dism /apply-image /ImageFile:"" /index:1 /ApplyDir:X:\
시간이 좀 걸립니다.
bcdboot X:\Windows /s Y: /f UEFI
이제 Windows가 설치되었지만 드라이버가 없습니다.
dism /image:X:\ /add-driver /driver:"" /recurse
출시 준비가 완료되었습니다!
명령 프롬프트에서:
fastboot boot boot.img
모든 작업을 올바르게 수행했다면 이제 Windows가 부팅됩니다! 즐기다!
X:가 마운트된 Duo Windows 파티션이라고 가정합니다.
reg load RTS X:\Windows\System32\config\SYSTEM
이제 regedit.exe를 열고 다음 레지스트리 키를 편집합니다.
HKEY_LOCAL_MACHINE\RTS\ControlSet001\Control\USBOsDefaultRoleSwitchMode
키를 값 1로 설정하면 작업이 완료됩니다.
위 내용은 Surface Duo(128GB)(소프트웨어 포함)에 Windows 11을 설치하는 방법 및 자습서의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!