# set http proxy
export http_proxy=http://PROXYHOST:PROXYPORT
# set http proxy with user and password
export http_proxy=http://USERNAME:PASSWORD@PROXYHOST:PROXYPORT
# set http proxy with user and password (with special characters)- Open Apple Configurator 2 and plug in your iPhone or iPad
- Click
Add, login to the App Store and select the application you want to install - Open up
~/Library/Group\ Containers/K36BKF7T3D.group.com.apple.configurator/Library/Caches/Assetsand wait until theTemporaryItemsdirectory appears - Copy the application from the newly created temporary directory, but do note that it will disappear once Apple Configurator is done installing
- Double click the
.ipaon your Apple Silicon (M1) device and install it - Fix permissions on the installed application by running
sudo xattr -rd com.apple.quarantine /Applications/<your_app>.app(if you skip this step, you're unable to start the application)
Note that it's easier if you already have the application installed, as Apple Configurator will prompt you about overwriting the existing installation, at which point the temporary file (the .ipa) will still exist, until you choose an action in the prompt.
- If Termux is closed in the background by Android, the cron service will stop updating your repository and you must open Termux again. Refer to instructions for your device model to disable the killing of certain background applications.
- This may negatively affect your devices battery life. I'm not entirely sure yet.
- Install Termux – Apps on Google Play
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # enable automatic i386/ARM/M68K/MIPS/SPARC/PPC/s390/HPPA/Xtensa/microblaze | |
| # program execution by the kernel | |
| qemu_target_list="i386 i486 alpha arm armeb sparc32plus ppc ppc64 ppc64le m68k \ | |
| mips mipsel mipsn32 mipsn32el mips64 mips64el \ | |
| sh4 sh4eb s390x aarch64 aarch64_be hppa riscv32 riscv64 xtensa xtensaeb microblaze microblazeel" | |
| i386_magic='\x7fELF\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x03\x00' | |
| i386_mask='\xff\xff\xff\xff\xff\xfe\xfe\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff' |
OlderNewer