I got it.
I think I was getting 'device busy' error message because I was in the USB on a terminal.
I did not take notes as well as I should have, but here is what I did. Obviously, the device names, and so on, may be different on your box.
1. Download Windows File
- Go to the Microsoft Software Download Website.
- <
https://www.microsoft.com/en-us/software-download/windows11>
- Under Download Windows 11 Disk Image (ISO), select Windows 11 (multi-edition ISO)
- This is supposed to create a bootable USB, but it did not
- I am guessing that I should have created a FAT32 partition to boot from, with the rest of the files in a NTFS partition
2. Prepare USB
- format USB with NTFS
- FAT32 would not work because some of the files are over 4GB
- find USB and unmount
- mount
- unmount /media/da0s1
- format
- install fusefs-ntfs
- find unmounted USB drive
- gpart show
- remove old filesystem
- gpart destroy -F /dev/da0
- create NTFS file system
- gpart create -s mbr /dev/da0
- gpart add -t ntfs /dev/da0
- mkntfs /dev/da0s1
3. Create Live USB with p7zip
- dd might also work
- pkg install p7zip
- 7z x Win11_25H2_English_x64_v2.iso -o/media/da0
4. Install Windows from USB
- does not boot from USB, although it is supposed to.
- it did seem to access the USB
- I was able to reset windows 11
- although I lost all non-windows applications
- I should have able to keep the apps
- did not lose personal files
If there is anything I left out, that you would like to know about, please let me know.