[MODULE][Terminal] App Systemizer v17.3.1

Search This thread

Arealhooman

Senior Member
Im going to be nice and help you out because when you google almost nothing comes up. Theres a certain lucky yellow app that can convert apps to system app with magisk and it worked easy.
This is better, as it is systemless.


P.S. Most people still have no idea what you are referring to. It’s a very lucky app for patching
 

gcubaloma

Member
Jul 4, 2018
6
0
HELP PLEASE. I CANT USE IT. :(
 

Attachments

  • Screenshot_2023-03-12-22-05-14-986_com.termux-edit.jpg
    Screenshot_2023-03-12-22-05-14-986_com.termux-edit.jpg
    62.5 KB · Views: 99

Arealhooman

Senior Member
Do you have latest version? Did you restart after installing? Download latest version below.
Oh, I see. Well I incorporated your changes and pushed another commit: https://github.com/KreAch3R/terminal_systemizer/commit/bdcae1ea200f579cfe75999d76158da05216a7ad

I tried systemizing an installed app manually to trigger that part of the code and it worked. I uploaded the new version again.

HELP PLEASE. I CANT USE IT. :(
 

KreAch3R

Inactive Recognized Developer
Nov 15, 2010
1,080
2,018
I could download the file. Thanks!
But still not working :(

su
:/data/data/com.termux/files/home # Systemize
/system/bin/sh: systemize: inaccessible or not found
This looks like the module isn't even installed correctly.

I don't have a rooted device anymore, so I can't help if the current version doesn't work for you.

(Also, it could be a miui incompatibility with magisk modules, check that out)
 

Zyklo!

Member
Dec 20, 2012
27
8
43
Madrid
I have used Systemizer last version 17.4.1, it works and moves the app to system... but I have noticed that the NFC functions of the phone rom disappear... The NFC activation button does nothing and the NFC submenu in ROM settings has disappeared... It is as if the system detects that the ROM has been modified by putting the app in System and disables the NFC functions for security. If I de-sytemize the app, the NFC works again.

I use Android 13, Miui 14, Stock rooted ROM

Any idea to solve it?
 

jhnl33

Senior Member
Jan 30, 2012
79
22
This looks like the module isn't even installed correctly.

I don't have a rooted device anymore, so I can't help if the current version doesn't work for you.

(Also, it could be a miui incompatibility with magisk modules, check that out)
I also have the same exact issue. Pixel 6A, stock android 13 on march 2023 update. Installed 17.3.1 first before installing 17.4.1. Both behave as if it's not installed at all.
 

marzuqiomar

Member
Mar 28, 2023
6
2
Hi, anyone here has a problem when using systemizer+Magisk denylist+Multiple User?
I do have a lot of user in android multiple user. When i try to use app that has root restriction , seems like the app is not completely hide from magisk. (The app was systemized). I got no issue when using the app in my main user.

Is there any way i can systemize magisk app so i can set denylist for each user? It's possible :/ ...
Or magisk already has built-in setting for this? So far i tried magisk setting for Multi User > Independent mode but it didnt work.

Also in my main user, i open magisk denylist to tick the app that i want to hide that installed in another user using systemizer but it didnt appear.

Seems hard to explain but basically i have trouble to hide root detection in magisk denylist for the app that has been systemized and the app is in another user , not main user.
 

northmendo

Senior Member
Dec 4, 2007
357
156
California
Is this module dead? I tried to download it from fox magisk repo and it won't install. The weird sourceforge link on here doesn't seem to list it as a download. I finally got it installed. Same issue as others though "inaccessible or not found"
 
Last edited:

Arealhooman

Senior Member

bj00rn

Member
Mar 10, 2023
27
7
EDIT: Seems i missed the part of replacing update-binary with the latest module installer (https://topjohnwu.github.io/Magisk/guides.html#magisk-module-installer)

I can't get this module to install. Using Magisk 25.2. What am I doing wrong here?

I downloaded from the repo (https://github.com/KreAch3R/terminal_systemizer) and repacked the files into a zip using the zip tool from ubuntu.

$ zip -v Copyright (c) 1990-2008 Info-ZIP - Type 'zip "-L"' for software license. This is Zip 3.0 (July 5th 2008), by Info-ZIP.
See attached zipped.zip.

Magisk fails to install the module.

All I get in the magisk install log is:

- Copying zip to temp directory - Installing zipped.zip ! Installation failed
 

Attachments

  • terminal_systemizer.zip
    534.9 KB · Views: 41
Last edited:

Top Liked Posts

  • There are no posts matching your filters.
  • 111
    [Terminal] App Systemizer

    Terminal App Systemizer systemizes Apps systemlessly! This is inspired by App Systemizer​ by stangri. I then decided to make a script/UI in Terminal emulator for it to make 'app systemizing' easier.

    How to use:
    • Install from recovery
    • Type su and
      Code:
      systemize
      in Terminal emulator or adb shell (use -nc, -a, -d, refer below)
    • Systemize Chosen App/APK!
    • And reboot to apply changes

    OPTIONS:
    ** If you don't want those colors, use -nc.
    Code:
    systemize -nc
    ** To directly systemize (without ui) a given package name/s, use -a
    Code:
    systemize -a com.oasisfeng.greenify org.adaway
    ** To directly systemize (without ui) a given apk/s, use -d
    Code:
    systemize -d /sdcard/example.apk /sdcard/example2.apk

    ** Uploading logs
    Go to the menu and type `logs`, this will upload the log files of this module and will generate a link. Send that :)
    Alternatively, Send `/cache/terminal_debloater-verbose.log` here. I'll examine it for problems and will try to fix it.

    Dowloads are here!
    Github
    Telegram Channel
    Notification Channel

    DONATE? If you want to (ノ・ω・)ノ゙
    35
    Sorry wrong line numbers, should be 315 and 559.
    It's basically the same path fix as you did before, I just hardcoded it without if-clause for my personal use.
    I have no time to publish it at the moment, otherwise I had done it already. (and I rarely use my github account at the moment).

    Line 315 can be replaced with:
    Code:
      [ $API -lt 30 ] && systemize /system/$installdir /data/app/${apklabel}-*/base.apk
      [ $API -ge 30 ] && systemize /system/$installdir /data/app/*/${apklabel}-*/base.apk
    and line 559 with:
    Code:
          [ $API -lt 30 ] && app_path="/data/app/${i}-*/base.apk"
          [ $API -ge 30 ] && app_path="/data/app/*/${i}-*/base.apk"
          [ -d $SYSTEM/priv-app ] && systemize /system/priv-app "${app_path}" || systemize /system/app "${app_path}" "$i"

    This is not tested, but it should work.

    Oh, I see. Well I incorporated your changes and pushed another commit: https://github.com/KreAch3R/terminal_systemizer/commit/bdcae1ea200f579cfe75999d76158da05216a7ad

    I tried systemizing an installed app manually to trigger that part of the code and it worked. I uploaded the new version again.

    @Anurag1994, great, thanks!
    21
    HERE'S A LITTLE VIDEO ON HOW TO USE IT:

    17
    F.A.Q

    Q. Why do I need to systemize apps?
    A. Some apps provide extra functionality as a system app (like Greenify, Launchers, etc). And if you just want an app to be a system app for no reason :).

    Q. Is A/B Devices (Pixel, Essential, MI A1 etc.) supported?
    A. YES

    Q. What's the advantage of using this over the other systemizers?
    A. This one is very light weight (since it's just a script). And it's also very versatile and supports almost all devices.

    Q. Something's not right??
    A. Report in this thread...
    14
    When a systemizied app is updated, how do you re-systemize it? Do you just rerun the terminal UI and choose the updated app and reboot? After reboot, does the updated app replace the old one?
    No, it's like when you update a system app from play store, it stays as a system app. ;)
    No need to do anything if it's updated :good: