갤럭시탭에서 리눅스 돌리면 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”
'컴퓨터' 카테고리의 다른 글
티스토리 시작 2주 만에 애드고시 한번에 승인 후기 (16) | 2022.12.28 |
---|---|
다재다능한 강력한 인공지능 챗봇 chatgpt (17) | 2022.12.27 |
현명한 사람은 돈으로 시간을 산다 <책 읽어 드립니다> (16) | 2022.12.24 |
US 미국 키보드 제거방법 한영키먹통 윈도우키 스페이스 (26) | 2022.12.20 |
구글드라이브 영구 삭제된 파일 복구방법 휴지통삭제 (1) | 2022.12.17 |