anduin / Multitenant MoongladePure
1 likes
0 forks
1 files
Last active
Implement multitenant moonglade pure
1 | # Runs on each web machine. |
2 | #!/bin/bash |
3 | sudo apt install jq dotnet7 -y |
4 | |
5 | echo "Cleaning up..." |
6 | rm -rf /home/anduin/build |
7 | mkdir -p /home/anduin/build |
8 | |
9 | echo "Downloading source code..." |
10 | wget https://gitlab.aiursoft.cn/aiursoft/moongladepure/-/archive/master/moongladepure-master.tar.gz -O /home/anduin/build/moongladepure-master.tar.gz |
aimerneige / Remove Pre-Install
0 likes
0 forks
3 files
Last active
remove pre-install apps for Redmi Note 9T
1 | # Remove SoftBank |
2 | for package in $(adb shell pm list packages | awk -F ':' '{print $2}' | grep softbank); do adb shell pm uninstall --user 0 $package; done |
3 | # Remove Yahoo |
4 | for package in $(adb shell pm list packages | awk -F ':' '{print $2}' | grep yahoo); do adb shell pm uninstall --user 0 $package; done |
5 | # Remove JP |
6 | for package in $(adb shell pm list packages | awk -F ':' '{print $2}' | grep jp); do adb shell pm uninstall --user 0 $package; done |
7 | # You need to manually disable the device manager to uninstall this app |
8 | adb shell pm uninstall --user 0 jp.softbank.mb.tdrl |
9 | # Some other app |
10 | adb shell pm uninstall --user 0 com.mcafee.vsm_android_sbm |