Here is easy steps to try Windows 10 on ARM or Ubuntu for ARM64 on your Apple Silicon Mac. Enjoy!
NOTE: that this is current, 10/1/2021 state.
- Install Xcode from App Store or install Command Line Tools on your Mac
| #!/bin/bash | |
| for z in $(aws route53 list-hosted-zones| jq '.HostedZones[] | select(.Config.PrivateZone == true)' |jq ' .Id' | sed 's!/hostedzone/!!' | sed 's/"//g'); do | |
| echo $z; | |
| aws route53 list-resource-record-sets --hosted-zone-id $z | jq ".ResourceRecordSets | .[]" | jq --slurp -r 'map(select(.Type == "A" or .Type == "AAAA")) | .[].Name' >> records; | |
| done |
Here is easy steps to try Windows 10 on ARM or Ubuntu for ARM64 on your Apple Silicon Mac. Enjoy!
NOTE: that this is current, 10/1/2021 state.