Groups | Search | Server Info | Login | Register


Groups > comp.mobile.android > #148746

Re: What optional processes are running in background.

From Marion <marion@facts.com>
Newsgroups comp.mobile.android
Subject Re: What optional processes are running in background.
Date 2025-06-09 23:22 +0000
Organization BWH Usenet Archive (https://usenet.blueworldhosting.com)
Message-ID <1027qb2$17br$1@nnrp.usenet.blueworldhosting.com> (permalink)
References <4v094kpu8qpg9ahdcsgp1i1lib1nv61kt1@4ax.com> <10221k7$37u6u$1@dont-email.me> <brpc4kpbk57sub661e4e7t2qdm6ckbfjqv@4ax.com> <1026n7o$1jno$1@nnrp.usenet.blueworldhosting.com> <1027h5v$oihi$1@dont-email.me>

Show all headers | View raw


On Mon, 9 Jun 2025 13:45:50 -0700, David Oseas wrote :


>> Settings > Developer Options > Running Services > Background Processes
>>   This will show active background processes, their RAM usage,
>>   and it will allow you to stop background processes, if desired.
>> 
> 
> A good start, but on my Galaxy S23, it is far from a complete picture of 
> everything running in the background.  Even when "Cached processes" is 
> selected, it only shows about 25% of the processes revealed by Simple 
> System Monitor.

Good point. Thanks for adding additional value. You're correct.

I just compared this output to that of bg processes & yes, it's different.
 C:\> adb shell top
 C:\> adb shell ps -A
 C:\> adb shell ps -e 
 C:\> adb shell dumpsys activity services
 C:\> adb shell dumpsys meminfo

For the most comprehensive list of all processes, 'adb shell ps -A' seems
top be the best bet. If we want to understand what services those processes
are running, 'adb shell dumpsys activity services' helps a lot. And for
memory consumption, 'adb shell dumpsys meminfo' seems to be a key command.

Back to comp.mobile.android | Previous | NextPrevious in thread | Find similar


Thread

What optional processes are running in background. micky <NONONOmisc07@fmguy.com> - 2025-06-07 14:27 -0400
  Re: What optional processes are running in background. David Oseas <doseas{nospam}@usa.net> - 2025-06-07 11:49 -0700
    Re: What optional processes are running in background. micky <NONONOmisc07@fmguy.com> - 2025-06-09 00:47 -0400
      Re: What optional processes are running in background. Marion <marion@facts.com> - 2025-06-09 13:23 +0000
        Re: What optional processes are running in background. David Oseas <doseas{nospam}@usa.net> - 2025-06-09 13:45 -0700
          Re: What optional processes are running in background. Marion <marion@facts.com> - 2025-06-09 23:22 +0000

csiph-web