sickcodes
sickcodes
I'm pretty sure it can do done. However, I just add my UDID to my developer account, use https://dantheman827.github.io/ios-app-signer/ and then make a manifest plist and I'm good to go....
It can be done, checkra1n can do it https://downthecrop.xyz/blog/checkra1n-on-pc-linux-via-qemu-macos-virtualization/
Great notes @mikob & @reinismu, I'll try adding the iPhone passthrough from your links & code. Aiming for seamlessly using an environment variable. Just fixing up iMessage as we speak!
iPhone passthrough has been solved here: https://github.com/sickcodes/Docker-OSX/issues/133#issuecomment-836855901 I am yet to try it but it is confirmed working.
https://github.com/sickcodes/Docker-OSX#share-folder-with-docker-osx-qemu-macos There are other options such as NFS which might be substantially easier: https://github.com/sickcodes/Docker-OSX#share-linux-nfs-drive-into-macos
The easiest way is using sshfs over the network; you get read write to the whole disk
``` DISK_TWO=/fullpath/to/disk FORMAT=qcow2 -v "${DISK_TWO}:/disktwo" \ -e EXTRA="-device ide-hd,bus=sata.5,drive=DISKTWO -drive id=DISKTWO,if=none,file=/disktwo,format=${FORMAT}" \ ``` Also try sata.4 sata.5 Depending if you have other disks Any existing EXTRA stuff, just keep adding
I think it's finished, reset the image
Try this style of USB passthrough: ` -e EXTRA='-device usb-host,hostbus=1,hostaddr=4' \`
This is excellent, thank you for posting all these, I'll remove the offending flag in about 20 minutes 😁