DataScience
728x90

갤럭시탭에서 리눅스 돌리면 Termux가 자꾸 죽는다 그래서 강제 종료됩니다.

Phantom Process Killer가 백그라운드 프로세스의 수를 제한하기 때문입니다. 백그라운드에서 계속 프로세스를 돌려야 하는 Termux에겐 좋지 않은 명령입니다.

팬텀 프로세스 킬러를 해제하기 위해서는 pc에 adb를 설치하고 탭을 pc와 usb디버깅모드로 연결하고 아래 명령어들을 cmd에 차례대로 쳐주면 됩니다.

 

……………………………………
Disable Phantom Processes
……………………………………
adb shell "/system/bin/device_config set_sync_disabled_for_tests persistent”

adb shell "/system/bin/device_config put activity_manager max_phantom_processes 2147483647”

adb shell settings put global settings_enable_monitor_phantom_procs false 

Note: The third command may show some error after executing on an android device running the custom Skin like MIUI, ONE UI etc. Don’t worry its normal. 

……………………………………
Check If Phantom Process is  disabled or not
……………………………………

adb shell "/system/bin/dumpsys activity settings | grep max_phantom_processes”

adb shell "/system/bin/device_config get activity_manager max_phantom_processes”

profile

DataScience

@Ninestar

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!